Benjamin Winkel

Results 60 comments of Benjamin Winkel

Well, that's interesting, because it usually works on my Windows machine. In any case, installing from source on Windows is not fun, because you need to install a compiler; see...

This is a well-known problem (without a good solution, unfortunately), see e.g. https://github.com/gprMax/gprMax/issues/134. You could try their approach and change in the file `pycraf/pathprof/setup_package.py`: ```python 'extra_link_args': ['-fopenmp', '-lgomp'], ``` to...

According to this [thread](https://github.com/openai/mujoco-py/issues/74) it could also be related to using Python 3.6.

Glad to hear that.

Hi, the calculation was very likely correct, you only made a small mistake when printing the result: ```python tot_loss = pathprof.loss_complete(pprop, G_t, G_r) print( 'L_bfsg: {:5.2f} - Free-space loss\n' 'L_bd:...

As I wrote earlier, I didn't change the pathprof module itself, but made another [Tutorial Notebook](https://github.com/bwinkel/pycraf/blob/p.1812/notebooks/03f_pre%2Bpostprocessing.ipynb), which demonstrates how to do the calculations based on pycraf's P.452 implementation. Please have...

No idea what's going on. Could you please run ```python import pycraf print(pycraf.__version__) ```

The underscores are important.

Thanks, @gigjozsa. I'll have a look and try to improve the docs.

> It will be interesting to see if we can enable multiprocessing without breaking the project’s ability to build on some platforms. (Like: what if folks are using clang instead...