Axial Induction formulation in FLORIS #1010
-
Hello everyone, I am trying to understand what formula is implemented in FLORIS for calculating axial induction. I have investigated the If anyone could provide clarification or guidance on how FLORIS performs this calculation, I would greatly appreciate it. Thank you in advance for your help. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @windexplorer21 , Thanks for the question and for trying to take a look at it yourself! The axial induction calculations are buried fairly far down in the code, on operation_models.py. There, you'll see that there are various different turbine operation models, each of which can implement its own calculation of the axial induction factor in its Cheers, |
Beta Was this translation helpful? Give feedback.
-
Dear @misi9170, Thank you for the quick reply! I appreciate the guidance on where to find the axial induction calculations in operation_models.py. I'm currently working with a CosineLoss turbine and found exactly what I was looking for in the code. Thanks again for your help! Best, |
Beta Was this translation helpful? Give feedback.
Hi @windexplorer21 ,
Thanks for the question and for trying to take a look at it yourself! The axial induction calculations are buried fairly far down in the code, on operation_models.py.
There, you'll see that there are various different turbine operation models, each of which can implement its own calculation of the axial induction factor in its
axial_induction()
method. For example, here is the axial induction calculation for theSimpleTurbine
operation model. You'll see that theaxial_induction()
method first callsthrust_coefficient()
to get the thrust coefficient value, and then computes the axial induction factor from that.Cheers,
Misha