diff --git a/WTC_toolbox/turbine.py b/WTC_toolbox/turbine.py index ca48d1009..afc232f59 100644 --- a/WTC_toolbox/turbine.py +++ b/WTC_toolbox/turbine.py @@ -186,8 +186,8 @@ def load_from_ccblade(self,fast): # Mesh the grid and flatten the arrays fixed_rpm = self.RRspeed*RadSec2rpm # RPM - TSR_initial = np.arange(0.5,15,0.5) - pitch_initial = np.arange(-1,25,0.5) + TSR_initial = np.arange(0.5,15,0.2) + pitch_initial = np.arange(-1,25,0.2) pitch_initial_rad = pitch_initial * deg2rad ws_array = (fixed_rpm * rpm2RadSec * self.TipRad) / TSR_initial ws_mesh, pitch_mesh = np.meshgrid(ws_array, pitch_initial)