Thrust coefficient correction on yaw misalignment and tilt #1055
-
Hi! I would like to better understand the differences in the way FLORIS computes the power and the thrust coefficient, when using the "cosine-loss" turbine operation model. By seeing the code, the power is computed firstly applying the air density correction, as well as the yaw and tilt ones, and then it goes to the look-up table and interpolates it to give the power.
For the thrust coefficient, instead, it doesn't account for the air density correction, it computes the average velocity at the rotor plane and goes directly to the look-up table to take a thrust coefficient value. With it, it applies the yaw and tilt correction just by multiplying the interpolated value by the cosine of the respect angles, without any cosine loss exponent.
Why is that? Shouldn't the yaw and tilt corrections for the thrust coefficient also consider a cosine loss exponent each? Shouldn't it be computed as the power, by first computing the rotor effective velocity accounting for all the corrections and then going to the look-up table to take the final value? Could you help me with that, please? Thank you in advance for your attention to this matter! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @luccasportiolli , Thank you for the question. The answer is a little bit complicated, but I'll take a first pass at it, and I'll let others chime in if they have any extra thoughts. Let's first consider the power. For power, as you noticed, we first compute a rotor-averaged velocity; then apply an air density correction; then account for a reduction in the inflow wind speed due to yaw and tilt misalignment. The result is an effective wind speed that the turbine would operate at---we query the power curve at that wind speed to compute the power. Note that in Now, moving to your question on why we don't follow the same process for the thrust coefficient. The thrust coefficient is more difficult to measure than the power in field campaigns, so we mostly still rely on actuator disk theory when it comes to thrust. Actuator disk theory tells us that the turbine's thrust depends on the inflow velocity squared. When operating in yaw/tilt misalignment, the correction to the actuator disk theory is The computation of the Neither of these is included simply as a change to the flow velocity, after which the thrust coefficient is found from the lookup table using an "effective" velocity, because it's not entirely clear how that should be handled. Turbine controllers are usually based on power, and will either try to maximize power capture for a given wind speed (below rated) or produce rated power (above rated), which is what the method for computing power conveys. However, that does not necessarily mean that their thrust coefficient will follow along nicely, and without clear data for how the thrust coefficient will behave once we move away from aligned conditions, we have kept with the standard "cosine squared reduction" that the actuator disk model implies. It is possible that an air density correction may be made that could be similar to that used in computing power, but now, we would need to use a I'll finally note that in FLORIS the thrust is essentially an intermediate variable used when computing the wake deficits, whereas the power is a final output. All engineering wake models are empirical/based on simplifications, and the thrust computed part-way through the calculations may not perfectly represent the actual aerodynamic thrust imparted on the flow. As such, the I hope that this helps! |
Beta Was this translation helpful? Give feedback.
Hi @luccasportiolli ,
Thank you for the question. The answer is a little bit complicated, but I'll take a first pass at it, and I'll let others chime in if they have any extra thoughts.
Let's first consider the power. For power, as you noticed, we first compute a rotor-averaged velocity; then apply an air density correction; then account for a reduction in the inflow wind speed due to yaw and tilt misalignment. The result is an effective wind speed that the turbine would operate at---we query the power curve at that wind speed to compute the power.
Note that in
rotor_velocity_air_density_correction
, there is a term**(1/3)
---this corrects the velocity for power, because according to actua…