-
Looks like
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Hi @vijay092 In v3, we've moved from having a instance of the We don't have a formal example for this yet, but a pattern is included in the regression tests: Does this answer your question? |
Beta Was this translation helpful? Give feedback.
-
In the current implementation, is it possible for every turbine in the farm to have different parameters? |
Beta Was this translation helpful? Give feedback.
Hi @vijay092
In v3, we've moved from having a instance of the
Turbine
class for each turbine in the wind plant to having a turbine definition and using that along with the conditions at the turbine to calculate the performance quantities. You can use the functions in src/floris/simulation/turbine.py for power, Ct, axial induction, and average velocity. Moving these out of the turbine class allows for a much more efficient computation.We don't have a formal example for this yet, but a pattern is included in the regression tests:
https://github.com/NREL/floris/blob/v3/tests/reg_tests/jensen_jimenez_regression_test.py#L111
Does this answer your question?