Skip to content

Commit

Permalink
Remove AFAeroMod
Browse files Browse the repository at this point in the history
  • Loading branch information
dzalkind committed Aug 2, 2024
1 parent 97f3fd3 commit 099bcf2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions weis/aeroelasticse/openmdao_openfast.py
Original file line number Diff line number Diff line change
Expand Up @@ -1777,7 +1777,7 @@ def run_FAST(self, inputs, discrete_inputs, fst_vt):
mean_wind_speed = np.zeros(dlc_generator.n_cases)
yaw_misalignment = np.zeros(dlc_generator.n_cases)
DT = np.full(dlc_generator.n_cases, fill_value = fst_vt['Fst']['DT'])
aero_mod = np.full(dlc_generator.n_cases, fill_value = fst_vt['AeroDyn15']['AFAeroMod'])
# aero_mod = np.full(dlc_generator.n_cases, fill_value = fst_vt['AeroDyn15']['AFAeroMod'])
wake_mod = np.full(dlc_generator.n_cases, fill_value = fst_vt['AeroDyn15']['WakeMod'])
tau1_const = np.zeros(dlc_generator.n_cases)
dt_fvw = np.zeros(dlc_generator.n_cases)
Expand Down Expand Up @@ -1895,7 +1895,7 @@ def run_FAST(self, inputs, discrete_inputs, fst_vt):
rot_speed_initial[i_case] = 0.
pitch_initial[i_case] = 90.
shutdown_time[i_case] = 0
aero_mod[i_case] = 1
# aero_mod[i_case] = 1
wake_mod[i_case] = 0
tau1_const[i_case] = 0.

Expand Down Expand Up @@ -1954,7 +1954,7 @@ def run_FAST(self, inputs, discrete_inputs, fst_vt):
case_inputs[("ServoDyn","TPitManS3")] = {'vals':shutdown_time, 'group':1}

# Inputs to AeroDyn (parking)
case_inputs[("AeroDyn15","AFAeroMod")] = {'vals':aero_mod, 'group':1}
# case_inputs[("AeroDyn15","AFAeroMod")] = {'vals':aero_mod, 'group':1}
case_inputs[("AeroDyn15","WakeMod")] = {'vals':wake_mod, 'group':1}
case_inputs[("AeroDyn15","tau1_const")] = {'vals':tau1_const, 'group':1}

Expand Down

0 comments on commit 099bcf2

Please sign in to comment.