FUSED-Wake is a collection of wind farm flow models.
- Free software: MIT
- Documentation: https://fused-wake.readthedocs.org/en/master/.
This package is in development, everything is in alpha mode. Expect dragons.
Currently FUSED-Wake has the following models implemented:
- G.C. Larsen model [Larsen_2009]_ (Python, Fortran)
- N.O. Jensen model [Jensen1983]_ (Fortran)
- Bastankhah & Porte-Agel model [Bastankhah_Porte-Agel_2014]_ (Fortran)
The following models are planned to be added to this library:
- FarmFlow interface (Python)
- Stand-alone Dynamic Wake Meandering model [Keck_2015]_ (Python)
- Stationary G.C. Larsen [Larsen_2009]_ (Matlab)
- N.O. Jensen [NOJensen_1983]_ (Python, Matlab)
- Ainslie [Ainslie_1988]_ (Python, Fortran)
- Bastankhah & Porte-Agel model [Bastankhah_Porte-Agel_2014]_ (Python)
- Stand-alone Dynamic Wake Meandering model [Keck_2015]_ (Matlab)
- EllipSys3D Actuator Disk [Rethore_2013]_ (through REST-API)
- FUGA [Ott_2011]_ (through the Colonel module)
This package has the following dependencies * [windIO](https://github.com/rethore/windIO) * numpy & scipy * plotly (optional) * jupyter (optional) * pandas (optional)
Documentation is available online at https://fused-wake.readthedocs.org
You can build your own docs locally using the command
$ make docs
See CONTRIBUTING
FUSED-Wake contains Fortran extensions that require a correctly configured Fortran compiler.
Install Intel Fortran compiler, and activate as follows:
$ "C:\Program Files (x86)\Intel\Composer XE\bin\ifortvars.bat" intel64
or
MinGW (instruction derived from here)
Install numpy
Install mingw-64 to
c:\mingw with x86_64
, choseposix
,seh
optionsAdd MinGW bin folder (
C:\mingw\mingw64\bin
) to path variableVerify you can use gcc by typing gcc into Anaconda prompt
Update your distutils configuration file to indicate you are using MinGW:
[build] compiler=mingw32
into either one of the following configuration files:
c:\Anaconda\Lib\distutils\distutils.cfg
<user_folder>\AppData\Local\Continuum\Miniconda3\Lib\distutils\distutils.cfg
Avoid conda and pip taking over packages from each other at random moments:
conda install numpy scipy pandas jupyter plotly conda install -c conda-forge utm --no-deps pip install sphinx-fortran --no-deps
And the windIO dependency:
git clone https://github.com/rethore/windIO.git cd windIO pip install -e ./ --no-deps
Finally, build and install FUSED-Wake:
git clone https://github.com/FUSED-Wind/FUSED-Wake.git cd FUSED-Wake pip install -e ./ --no-deps
pip install numpy scipy pandas jupyter plotly utm sphinx-fortran
And the windIO dependency:
git clone https://github.com/rethore/windIO.git cd windIO pip install -e ./
Finally, build and install FUSED-Wake:
git clone https://github.com/FUSED-Wind/FUSED-Wake.git cd FUSED-Wake pip install -e ./
You can run the tests for your python environment using
$ make tests
You can run all the tests for all the suported python versions
$ make all-tests
You can test if there are some flake8 issues
$ make lint
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.