Skip to content

Commit

Permalink
Correct fbwind (#2161)
Browse files Browse the repository at this point in the history
  • Loading branch information
aerorahul authored Dec 14, 2023
1 parent f3f3e05 commit c5ca82f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions jobs/rocoto/fbwinds.sh → jobs/rocoto/fbwind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ source "${HOMEgfs}/ush/preamble.sh"
status=$?
if (( status != 0 )); then exit "${status}"; fi

export job="fbwinds"
export job="fbwind"
export jobid="${job}.$$"

# Execute the JJOB
"${HOMEgfs}/jobs/JGFS_ATMOS_FBWINDS"
"${HOMEgfs}/jobs/JGFS_ATMOS_FBWIND"

status=$?
exit "${status}"
2 changes: 1 addition & 1 deletion workflow/applications/gfs_cycled.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def get_task_names(self):
gfs_tasks += ['gempakpgrb2spec']

if self.do_awips:
gfs_tasks += ['awips_20km_1p0deg', 'awips_g2', 'fbwinds']
gfs_tasks += ['awips_20km_1p0deg', 'awips_g2', 'fbwind']

if self.do_mos:
gfs_tasks += ['mos_stn_prep', 'mos_grd_prep', 'mos_ext_stn_prep', 'mos_ext_grd_prep',
Expand Down
2 changes: 1 addition & 1 deletion workflow/applications/gfs_forecast_only.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def get_task_names(self):
tasks += ['gempak', 'gempakmeta', 'gempakncdcupapgif', 'gempakpgrb2spec']

if self.do_awips:
tasks += ['awips_20km_1p0deg', 'awips_g2', 'fbwinds']
tasks += ['awips_20km_1p0deg', 'awips_g2', 'fbwind']

if self.do_ocean or self.do_ice:
tasks += ['ocnpost']
Expand Down
4 changes: 2 additions & 2 deletions workflow/rocoto/gfs_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ def postsnd(self):

return task

def fbwinds(self):
def fbwind(self):

atmos_prod_path = self._template_to_rocoto_cycstring(self._base["COM_ATMOS_GRIB_GRID_TMPL"], {'RUN': self.cdump, 'GRID': '0p25'})
deps = []
Expand All @@ -834,7 +834,7 @@ def fbwinds(self):
# prematurely starting with partial files. Unfortunately, the
# ability to "group" post would make this more convoluted than
# it should be and not worth the complexity.
task = create_wf_task('fbwinds', resources, cdump=self.cdump, envar=self.envars, dependency=dependencies)
task = create_wf_task('fbwind', resources, cdump=self.cdump, envar=self.envars, dependency=dependencies)

return task

Expand Down
2 changes: 1 addition & 1 deletion workflow/rocoto/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Tasks:
'verfozn', 'verfrad', 'vminmon',
'metp',
'tracker', 'genesis', 'genesis_fsu',
'postsnd', 'awips_g2', 'awips_20km_1p0deg', 'fbwinds',
'postsnd', 'awips_g2', 'awips_20km_1p0deg', 'fbwind',
'gempak', 'gempakmeta', 'gempakmetancdc', 'gempakncdcupapgif', 'gempakpgrb2spec', 'npoess_pgrb2_0p5deg'
'waveawipsbulls', 'waveawipsgridded', 'wavegempak', 'waveinit',
'wavepostbndpnt', 'wavepostbndpntbll', 'wavepostpnt', 'wavepostsbs', 'waveprep',
Expand Down

0 comments on commit c5ca82f

Please sign in to comment.