Skip to content

Commit

Permalink
Fix issue with DLC 6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
abhineet-gupta committed Aug 12, 2024
1 parent 750ca5b commit ccac972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion weis/dlc_driver/dlc_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ def generate_6p4(self, dlc_options):
# Include V_ref
if dlc_options['wind_speed'][-1] != self.V_ref:
dlc_options['wind_speed'] = np.append(dlc_options['wind_speed'], self.V_ref)
dlc_options['wind_speed'] = list(dlc_options['wind_speed'])
dlc_options['wind_speed'] = dlc_options['wind_speed'].tolist()

# Set dlc-specific options, like yaw_misalign, initial azimuth
if 'yaw_misalign' in dlc_options:
Expand Down

0 comments on commit ccac972

Please sign in to comment.