Question about calculating power deficit #981
-
How does FLORIS calculate power deficit (e.g. theta)? To provide some context, there have been papers in the literature that have calculated reference power as: Reference Power = Pₘₑₐₛᵤᵣₑ / cos²(θ), and I'm curious how FLORIS calculates θ. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @labbatessa , Yes, this "cosine loss" is the standard loss model in FLORIS when there is a yaw misalignment (when the turbine is not directly aligned with the flow). Here is the FLORIS documentation that describes that. Note that For a brief discussion on why In all of these contexts, You can also see the effects of yawing in examples/examples_control_types as well as examples/examples_turbine/001_check_turbine.py. Cheers, |
Beta Was this translation helpful? Give feedback.
Hi @labbatessa ,
Yes, this "cosine loss" is the standard loss model in FLORIS when there is a yaw misalignment (when the turbine is not directly aligned with the flow). Here is the FLORIS documentation that describes that. Note that$p_P$ is the cosine exponent, which is 2 in your question, but there is some debate in the literature about what the appropriate value for this should be, and FLORIS defaults to $p_P = 1.88$ . However, you can change this by modifying the
cosine_loss_exponent_yaw
key on your turbine model (here is the line to change on the NREL 5MW model).For a brief discussion on why$p_P$ defaults to 1.88 in FLORIS, you could look at Section 2.3 of Annoni et al. (2018).
In a…