Skip to content

Commit

Permalink
Make pitch control GS points equal to where it's sampled
Browse files Browse the repository at this point in the history
  • Loading branch information
dzalkind committed Feb 9, 2021
1 parent 6c2c37e commit 7d181e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ROSCO_toolbox/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def tune_controller(self, turbine):
self.v = v # Wind speed (m/s)
self.v_below_rated = v_below_rated
self.pitch_op = pitch_op
self.pitch_op_pc = pitch_op[len(v_below_rated):len(v)]
self.pitch_op_pc = pitch_op[-len(v_above_rated)+1:]
self.TSR_op = TSR_op
self.A = A
self.B_beta = B_beta
Expand Down

0 comments on commit 7d181e6

Please sign in to comment.