Skip to content

Commit b6c3ff5

Browse files
committed
FF: revert back from variables that should not have been renamed
1 parent 1298773 commit b6c3ff5

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

openfast_toolbox/fastfarm/FASTFarmCaseCreation.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -562,19 +562,19 @@ def _determine_resolutions_from_dummy_amrwind_grid(self):
562562
buffer_hr = self.extent_high,
563563
mod_wake = self.mod_wake)
564564

565-
print(f' High-resolution: ds: {amr.ds_hr} m, dt: {amr.dt_high} s')
566-
print(f' Low-resolution: ds: {amr.ds_lr} m, dt: {amr.dt_low} s\n')
565+
print(f' High-resolution: ds: {amr.ds_high_les} m, dt: {amr.dt_high_les} s')
566+
print(f' Low-resolution: ds: {amr.ds_low_les} m, dt: {amr.dt_low_les} s\n')
567567
print(f'WARNING: If the above values are too fine or manual tuning is warranted, specify them manually.')
568-
print(f' To do that, specify, e.g., `dt_high = {2*amr.dt_high}` to the call to `FFCaseCreation`.')
569-
print(f' `ds_high = {2*amr.ds_high}`')
570-
print(f' `dt_low = {2*amr.dt_low}`')
571-
print(f' `ds_low = {2*amr.ds_low}`')
568+
print(f' To do that, specify, e.g., `dt_high = {2*amr.dt_high_les}` to the call to `FFCaseCreation`.')
569+
print(f' `ds_high = {2*amr.ds_high_les}`')
570+
print(f' `dt_low = {2*amr.dt_low_les}`')
571+
print(f' `ds_low = {2*amr.ds_low_les}`')
572572
print(f' If the values above are okay, you can safely ignore this warning.\n')
573573

574-
self.dt_high = amr.dt_high
575-
self.ds_high = amr.dt_high
576-
self.dt_low = amr.dt_low
577-
self.ds_low = amr.dt_low
574+
self.dt_high = amr.dt_high_les
575+
self.ds_high = amr.dt_high_les
576+
self.dt_low = amr.dt_low_les
577+
self.ds_low = amr.dt_low_les
578578

579579

580580

0 commit comments

Comments
 (0)