Is your feature request related to a problem? Please describe.get_farm_power() is used many times throughout the library when AEP Calculations happen
However, turbulence correction via use_turbulence_correction is never passed as a parameter from the calling method, and therefore all AEP calculations default to ignoring turbulence effects (use_turbulence_correction=False)
Describe the solution you'd like
I wonder what the reason for this default value is, since as a user I want to utilize the maximum simulation accuracy when calculating the AEP - for example for layout optimization.
Describe alternatives you've considered
Set the default value to true, or at least give the user of functions such as get_farm_AEP or _AEP_loop_wd the transparency that turbulence influence is ignored here.
Is your feature request related to a problem? Please describe.
get_farm_power()
is used many times throughout the library when AEP Calculations happen However, turbulence correction viause_turbulence_correction
is never passed as a parameter from the calling method, and therefore all AEP calculations default to ignoring turbulence effects (use_turbulence_correction=False
)Describe the solution you'd like I wonder what the reason for this default value is, since as a user I want to utilize the maximum simulation accuracy when calculating the AEP - for example for layout optimization.
Describe alternatives you've considered Set the default value to true, or at least give the user of functions such as
get_farm_AEP
or_AEP_loop_wd
the transparency that turbulence influence is ignored here.