-
Hi all, I am attempting to calculate the wake centerline for each turbine in a 3x3 wind farm using the Empirical Gauss deflection model (v3). The arguments of this require the thrust coefficient and the wake-induced mixing term for the ith turbine. The trust coefficient I have managed to get using If anyone has an alternative method of calculating the wake centerline I would also be interested to hear that! Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @JackDI1 , To get the axial induction factors, use the However, you could also use the |
Beta Was this translation helpful? Give feedback.
-
For future reference for anyone looking at this thread, in FLORIS v4, the equivalent methods are: and an example demonstrating the use of |
Beta Was this translation helpful? Give feedback.
Hi @JackDI1 ,
To get the axial induction factors, use the
get_turbine_ais()
method of theFlorisInterface
.However, you could also use the
sample_flow_at_points()
method of theFlorisInterface
, and set thex
,y
,z
array arguments to be locations along the wake centerline, to get the flow velocities without needing to explicitly compute the thrust coefficients and axial induction factors. See also v3 example 28 for example code.