FLORIDyn
Introduction
A dynamic wind farm simulation software, translated from https://github.com/TUDelft-DataDrivenControl/FLORIDyn_Matlab, which was written by Marcus Becker.
His code uses one engineering model from the quasi static wind farm simulation software FLORIS, developed by NREL.
Status: WORK-IN-PROGRESS
You cannot use this package yet, if you need a version of FLORIDyn that works now, use the Matlab or Python version instead. The Python version is available at https://github.com/TUDelft-DataDrivenControl/OFF .
Installation
Install Julia 1.10 or later, if you haven't already.
Before installing this software it is suggested to create a new project, for example like this:
mkdir test
cd test
julia --project="."
Then add FLORIDyn from Julia's package manager, by typing:
using Pkg
pkg"add https://github.com/ufechner7/FLORIDyn.jl"
at the Julia prompt. You can run the unit tests with the command:
pkg"test FLORIDyn"
References
Citation of the FLORIDyn model: FLORIDyn - A dynamic and flexible framework for real-time wind farm control, M. Becker, D. Allaerts, J.W. van Wingerden, 2022, http://doi.org/10.1088/1742-6596/2265/3/032103
Used FLORIS model: Experimental and theoretical study of wind turbine wakes in yawed conditions, M. Bastankhah, F. Porté-Agel, 2020, http://doi.org/10.1017/jfm.2016.595
Additional references for smaller subcomponents can be found in the code or in the related publications.