Question about the calculation of speed loss #948
-
I saw in the solver.py file that velocity_deficit is first calculated when calculating the wake loss for each wind turbine. For the wake model, velocity_deficit should be the velocity of the downstream affected by this wind turbine divided by the inflow velocity of this wind turbine. In floris, it is directly multiplied by flow_field.u_initial_sorted, which is the inflow velocity not affected by the wake. Is this reasonable? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @jiangshengkai1999 , Taking the This is the way that most papers presenting analytical wake models compute the combined effects of multiple wakes. |
Beta Was this translation helpful? Give feedback.
Hi @jiangshengkai1999 ,
Taking the
sequential_solver()
as an example, thevelocity_deficit
is, as you say, the speeds in the wake of turbinei
normalized by the free stream velocity. These are then combined with other wakes in thewake_field
. That is, the wake velocities are recovered using the free stream velocity [flow_field.u_initial_sorted
], and then combined with the other wakes to compute the combined effects of multiple wakes. The resultingwake_field
(which is a velocity deficit in absolute values, i.e. in m/s) is then subtracted from the freestream wind field to computeflow_field.u_sorted
, which is used as the inflow to downstream turbines for computing their thrust coefficient …