Published May 8, 2024
| Version v0.7
Software
Open
FOXES: Farm Optimization and eXtended yield Evaluation Software
Description
- Python versions:
- Now supporting Python 3.12
- Documentation:
- New page
Models
, summarizing and explaining the foxes model choices.
- New page
- Core:
- Speed-up in comparison with version 0.6.x, by internally handling all turbine data in downwind order, and then translating it back to farm order once computations are complete.
- Internally, all point evaluation data is now translated into so called "target" data, where each target is understood as being composed of a certain number of target points. During wake computations, these are the points per rotor (as defined by partial wakes models). For computations at user given points, the points are interpreted as targets with a single target point each. Final point output data is then given to the user again with point index coodinates, i.e., in the same format as in previous versions.
- New data classes:
MData
,FData
,TData
, all derived from the foxesData
class. These specialize model, farm and target data, respectively, during model calculations.
- Algorithms:
- All algorithm constructors now take
farm, states, wake_models
as the first three arguments. If no model book is given, the defaultModelBook()
will be used. - Partial wakes are now chosen either
- by a dictionary, which maps wake model names to model choices (or default choices, if not found),
- or by a list, where the mapping to the wake models is in order of appearance,
- or by a string, in which case all models are either mapped to the given model, or, if that fails with
TypeError
, to their defaults, - or by
None
, which means all models are mapped to the default choice.
- All algorithm constructors now take
- Partial wakes:
- New
PartialSegregated
abstract model, from which thePartialGrid
model is derived. Segregated models now average background results and wake deltas separatly, and then add the results. Notice that with the choice ofRotorPoints
partial wakes, the mathematically correct average over a discretized rotor is calculated. This is more accurate, but it may be slower than some models (e.g. forPartialAxiWake
models) or not applicable for some rotor choices (e.g. theLevelRotor
, where a wake average makes no sense).
- New
- Outputs:
- New output
RotorPointPlot
, creating rotor point plots.
- New output
- Notebooks:
- New notebook
rotor_models.ipynb
, visualizing rotor points. - New notebook
partial_wakes.ipynb
, verifying partial wakes models.
- New notebook
- Bug fixes:
- Various fixes here and there.
Full Changelog: https://github.com/FraunhoferIWES/foxes/commits/v0.7
Notes
Files
FraunhoferIWES/foxes-v0.7.zip
Files
(16.3 MB)
Name | Size | Download all |
---|---|---|
md5:87c985462bad817eb09bed6ec7d9dbb2
|
16.3 MB | Preview Download |
Additional details
Related works
- Is supplement to
- Software: https://github.com/FraunhoferIWES/foxes/tree/v0.7 (URL)