Skip to content

Commit

Permalink
Create new rocoto job script for fit2obs job
Browse files Browse the repository at this point in the history
- Create fit2obs.sh.
- Script will run new jobs/JGDAS_FIT2OBS script.

Refs NOAA-EMC#1405, NOAA-EMC#1232
  • Loading branch information
KateFriedman-NOAA committed Mar 24, 2023
1 parent 2a70883 commit 5653ef2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions jobs/rocoto/fit2obs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#! /usr/bin/env bash

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

###############################################################
echo
echo "=============== START TO SOURCE FV3GFS WORKFLOW MODULES ==============="
. ${HOMEgfs}/ush/load_fv3gfs_modules.sh
status=$?
[[ ${status} -ne 0 ]] && exit ${status}

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

###############################################################
echo
echo "=============== START TO RUN FIT2OBS ==============="
# Execute the JJOB
${HOMEgfs}/jobs/JGDAS_FIT2OBS
status=$?
[[ ${status} -ne 0 ]] && exit ${status}

exit 0

0 comments on commit 5653ef2

Please sign in to comment.