Skip to content

Commit

Permalink
corrected a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonMFernando-NOAA committed Oct 19, 2024
1 parent f75bbf3 commit b408e75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/exgfs_wave_post_gridded_sbs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ source "${USHgfs}/preamble.sh"
# When executed side-by-side, serial mode (cfp when run after the fcst step)
# Contingency for RERUN=YES
if [ "${RERUN:-NO}" = "YES" ]; then
fhr=$((FHRUN + FHMIN_WAV))
fhr=$((FHRUN + FORECAST_HOUR + FHMIN_WAV))
if [ $FHMAX_HF_WAV -gt 0 ] && [ $FHOUT_HF_WAV -gt 0 ] && [ $fhr -lt $FHMAX_HF_WAV ]; then
FHINCG=$FHOUT_HF_WAV
else
Expand Down
2 changes: 1 addition & 1 deletion workflow/rocoto/gefs_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ def wavepostpnt(self):
def extractvars(self):
deps = []
if self.app_config.do_wave:
dep_dict = {'type': 'metatask', 'name': 'gefs_wave_post_grid_mem#member#'}
dep_dict = {'type': 'metatask', 'name': 'gefs_wave_post_grid_#member#'}
deps.append(rocoto.add_dependency(dep_dict))
if self.app_config.do_ocean:
dep_dict = {'type': 'metatask', 'name': 'gefs_ocean_prod_#member#'}
Expand Down

0 comments on commit b408e75

Please sign in to comment.