Help for details on the use of the YawOptimizationSR class (Serial-Refine). #1057
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, We have not clearly separated a single "Refine" step in the code. Actually, you can have as many refine steps as you'd like! For example, you can do
Don't pin me down on the exact values, but you get the gist. In the FLORIS code, the refinement explored space is generated for a single turbine and for a single findex here: And collected in a single variable Put a breakpoint in your code near those lines and try to inspect what values are evaluated. Try it first for a single findex (so a single wind direction/speed/turbulence) to really help that understanding. Hopefully that will clarify the code better for you. Hope this helps! |
Beta Was this translation helpful? Give feedback.
Hi,
We have not clearly separated a single "Refine" step in the code. Actually, you can have as many refine steps as you'd like! For example, you can do
Ny_passes = [3, 4]
but you could also doNy_passes = [3, 4, 4]
. Then the explored spaces are:Don't pin me down on the exact values, but you get the gist.
In the FLORIS code, the refinement explored space is generated for a single turbine and for a single findex here:
floris/floris/optimizatio…