Skip to content

Commit

Permalink
Change Kp_float to interpolate at 5% above rated
Browse files Browse the repository at this point in the history
  • Loading branch information
dzalkind committed Feb 3, 2021
1 parent 29e37cb commit 8309615
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 @@ -304,7 +304,7 @@ def tune_controller(self, turbine):
if self.Fl_Mode == 1: # Floating feedback
Kp_float = (dtau_dv/dtau_dbeta) * turbine.TowerHt * Ng
f_kp = interpolate.interp1d(v,Kp_float)
self.Kp_float = f_kp(turbine.v_rated + 0.5) # get Kp at v_rated + 0.5 m/s
self.Kp_float = f_kp(turbine.v_rated * (1.05)) # get Kp at v_rated + 0.5 m/s
# Turn on the notch filter if floating
self.F_NotchType = 2

Expand Down

0 comments on commit 8309615

Please sign in to comment.