forked from NOAA-GSL/global-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add wave post jobs to GEFS (NOAA-EMC#2292)
Adds the wave post jobs for gridded and points to GEFS. Boundary point jobs are added even though the current GEFS buoy file does not contain any (tested by manually subbing in the GFS buoy file). Resolves NOAA-EMC#827
- Loading branch information
1 parent
842adf3
commit 3f99f70
Showing
13 changed files
with
284 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#! /usr/bin/env bash | ||
|
||
########## config.wavepostbndpnt ########## | ||
# Wave steps specific | ||
|
||
echo "BEGIN: config.wavepostbndpnt" | ||
|
||
# Get task specific resources | ||
source "${EXPDIR}/config.resources" wavepostbndpnt | ||
|
||
echo "END: config.wavepostbndpnt" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#! /usr/bin/env bash | ||
|
||
########## config.wavepostbndpntbll ########## | ||
# Wave steps specific | ||
|
||
echo "BEGIN: config.wavepostbndpntbll" | ||
|
||
# Get task specific resources | ||
source "${EXPDIR}/config.resources" wavepostbndpntbll | ||
|
||
echo "END: config.wavepostbndpntbll" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#! /usr/bin/env bash | ||
|
||
########## config.wavepostpnt ########## | ||
# Wave steps specific | ||
|
||
echo "BEGIN: config.wavepostpnt" | ||
|
||
# Get task specific resources | ||
source "${EXPDIR}/config.resources" wavepostpnt | ||
|
||
echo "END: config.wavepostpnt" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#! /usr/bin/env bash | ||
|
||
########## config.wavepostsbs ########## | ||
# Wave steps specific | ||
|
||
echo "BEGIN: config.wavepostsbs" | ||
|
||
# Get task specific resources | ||
source "${EXPDIR}/config.resources" wavepostsbs | ||
|
||
# Subgrid info for grib2 encoding | ||
export WAV_SUBGRBSRC="" | ||
export WAV_SUBGRB="" | ||
|
||
# Options for point output (switch on/off boundary point output) | ||
export DOIBP_WAV='NO' # Input boundary points | ||
export DOFLD_WAV='YES' # Field data | ||
export DOPNT_WAV='YES' # Station data | ||
export DOGRB_WAV='YES' # Create grib2 files | ||
if [[ -n "${waveinterpGRD}" ]]; then | ||
export DOGRI_WAV='YES' # Create interpolated grids | ||
else | ||
export DOGRI_WAV='NO' # Do not create interpolated grids | ||
fi | ||
export DOSPC_WAV='YES' # Spectral post | ||
export DOBLL_WAV='YES' # Bulletin post | ||
|
||
echo "END: config.wavepostsbs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.