Skip to content

Commit

Permalink
Create new rocoto job scripts for GSI monitor jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
KateFriedman-NOAA committed Oct 18, 2023
1 parent 566b59b commit 5ef2d15
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 0 deletions.
22 changes: 22 additions & 0 deletions jobs/rocoto/verfozn.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#! /usr/bin/env bash

source "${HOMEgfs}/ush/preamble.sh"

###############################################################
# Source FV3GFS workflow modules
source "${HOMEgfs}/ush/load_fv3gfs_modules.sh"
status=$?
(( status != 0 )) && exit "${status}"

export job="verfozn"
export jobid="${job}.$$"

###############################################################
# Execute the JJOB
echo
echo "=============== START TO RUN OZMON DATA EXTRACTION ==============="

${HOMEgfs}/jobs/JGDAS_ATMOS_VERFOZN
status=$?

exit "${status}"
22 changes: 22 additions & 0 deletions jobs/rocoto/verfrad.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#! /usr/bin/env bash

source "${HOMEgfs}/ush/preamble.sh"

###############################################################
# Source FV3GFS workflow modules
source "${HOMEgfs}/ush/load_fv3gfs_modules.sh"
status=$?
(( status != 0 )) && exit "${status}"

export job="verfrad"
export jobid="${job}.$$"

###############################################################
# Execute the JJOB
echo
echo "=============== START TO RUN RADMON DATA EXTRACTION ==============="

${HOMEgfs}/jobs/JGDAS_ATMOS_VERFRAD
status=$?

exit "${status}"
22 changes: 22 additions & 0 deletions jobs/rocoto/vminmon.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#! /usr/bin/env bash

source "${HOMEgfs}/ush/preamble.sh"

###############################################################
# Source FV3GFS workflow modules
source "${HOMEgfs}/ush/load_fv3gfs_modules.sh"
status=$?
(( status != 0 )) && exit "${status}"

export job="vminmon"
export jobid="${job}.$$"

###############################################################
# Execute the JJOB
echo
echo "=============== START TO RUN MINMON ==============="

${HOMEgfs}/jobs/J${RUN^^}_ATMOS_VMINMON
status=$?

exit "${status}"

0 comments on commit 5ef2d15

Please sign in to comment.