forked from NOAA-EMC/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 emcsfc_sfc_prep (sfcprep) job to dev mode
Refs NOAA-EMC#2913
- Loading branch information
1 parent
54f3c46
commit 2186a8b
Showing
6 changed files
with
76 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/ksh -x | ||
|
||
############################################################### | ||
# Source FV3GFS workflow modules | ||
. $HOMEgfs/ush/load_fv3gfs_modules.sh | ||
status=$? | ||
[[ $status -ne 0 ]] && exit $status | ||
|
||
############################################################### | ||
# Execute the JJOB | ||
$HOMEgfs/jobs/JGLOBAL_ATMOS_EMCSFC_SFC_PREP | ||
status=$? | ||
exit $status |
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,20 @@ | ||
#!/bin/ksh -x | ||
|
||
########## config.sfcprep ########## | ||
# Prep step specific | ||
|
||
echo "BEGIN: config.sfcprep" | ||
|
||
# Get task specific resources | ||
. $EXPDIR/config.resources sfcprep | ||
|
||
if [[ $RUN_ENVIR == "emc" ]]; then | ||
|
||
export SENDCOM="YES" | ||
export COMOUT=${COMOUTatmos} | ||
export COMINobsproc=${DMPDIR}/${CDUMP}.${PDY}/${cyc}/atmos | ||
export COMIN_m6hrs=${DMPDIR}/${GDUMP}.${gPDY}/${gcyc}/atmos | ||
|
||
fi | ||
|
||
echo "END: config.sfcprep" |
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