Skip to content

Commit

Permalink
Add comments describing the wind speeds for gain scheduling.
Browse files Browse the repository at this point in the history
  • Loading branch information
misi9170 committed Nov 25, 2024
1 parent 36e8fca commit 7396fe1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions flasc/utilities/floris_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -562,6 +562,10 @@ def estimate_ws_with_floris(
# Following the gain scheduling approach of `add_ws_est_one_ttype`
# define the gain via four wind speeds, however, more deterministically since
# driven by FLORIS
# ws0 (zero wind speed) is the wind speed at which partial power dependence begins
# ws1 (10% of rated) is the wind speed at which full power dependence begins
# ws2 (90% of rated) is the wind speed at which full power dependence ends
# ws3 (90% of rated + 0.5 m/s) is the wind speed at which partial power dependence ends
ws0 = 0
ws1 = float(np.interp(rated_power * 0.1, pow_pc, ws_pc))
ws2 = float(np.interp(rated_power * 0.9, pow_pc, ws_pc))
Expand Down

0 comments on commit 7396fe1

Please sign in to comment.