Terrain modeling and wake induced turbulence #501
-
I noticed that the coordinates of the layout are only x and y, Is Floris the default that all wind farms are flat terrain?? Because if the altitudes (z) of the two turbines are too different, there may be no wake effects, so considering only x and y will not apply. Also, can Floris calculate added turbulence and wind speed with the wake effect? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @snakefeifei855, Indeed, FLORIS assumes a flat terrain. You can "fake" a complex terrain by assigning turbines a different hub height. You can read more about this in #224, though be aware the example code therein was written for FLORIS v2.4 and the API has changed since then. Also, yes, FLORIS does calculate the added turbulence and the wind speeds in the wake. You can check out example 02 on calculating and visualizing the wind speeds in wakes. The added turbulence is only calculated at turbine rotors, and currently cannot yet be calculated at any arbitrary point in the farm. You can access the turbulence intensity values at Let me know if you have any other questions. Bart |
Beta Was this translation helpful? Give feedback.
Hi @snakefeifei855,
Indeed, FLORIS assumes a flat terrain. You can "fake" a complex terrain by assigning turbines a different hub height. You can read more about this in #224, though be aware the example code therein was written for FLORIS v2.4 and the API has changed since then. Also, yes, FLORIS does calculate the added turbulence and the wind speeds in the wake. You can check out example 02 on calculating and visualizing the wind speeds in wakes. The added turbulence is only calculated at turbine rotors, and currently cannot yet be calculated at any arbitrary point in the farm. You can access the turbulence intensity values at
fi.floris.flow_field.turbulence_intensity_field
. If you wan…