Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dev/jobs/JGDAS_AERO_ANALYSIS_GENERATE_BMATRIX
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ EXSCRIPT=${GDASAEROBMATPY:-${SCRgfs}/exgdas_aero_analysis_generate_bmatrix.py}
${EXSCRIPT} && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate bmatrix for aerosol analysis"
fi

##############################################
Expand All @@ -61,7 +61,7 @@ fi
cd "${DATAROOT}" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to change directory to ${DATAROOT}"
fi
if [[ "${KEEPDATA}" == "NO" ]]; then
rm -rf "${DATA}"
Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGDAS_ATMOS_CHGRES_FORENKF
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ declare -rx COMIN_ATMOS_HISTORY_MEM="${ROTDIR}/${RUN}.${PDY}/${cyc}/mem001/model
${CHGRESFCSTSH:-${SCRgfs}/exgdas_atmos_chgres_forenkf.sh} && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to run chgres for the ensemble"
fi

##############################################
Expand Down
4 changes: 2 additions & 2 deletions dev/jobs/JGDAS_ATMOS_GEMPAK
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ done

export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate AWIPS products at 1 degree resolution for forecast hour ${FHR3}"
fi

########################################################
Expand All @@ -53,7 +53,7 @@ fi

export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate AWIPS products at 0.25 degree resolution for forecast hour ${FHR3}"
fi

############################################
Expand Down
6 changes: 3 additions & 3 deletions dev/jobs/JGDAS_ATMOS_GEMPAK_META_NCDC
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ export pgmout=OUTPUT.$$
"${HOMEgfs}/gempak/ush/gdas_meta_na.sh" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate North American meta gempak products"
fi

"${HOMEgfs}/gempak/ush/gdas_meta_loop.sh" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate looped image meta gempak products"
fi

########################################################
Expand All @@ -85,7 +85,7 @@ if ((cyc % 12 == 0)); then
fi
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate NCDC GIFs from GDAS GEMPAK products"
fi
########################################################

Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGDAS_ATMOS_VERFOZN
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if [[ ! -d ${TANKverf_ozn} ]]; then mkdir -p "${TANKverf_ozn}"; fi
"${SCRgfs}/exgdas_atmos_verfozn.sh" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate ozone monitor products"
fi

################################
Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGDAS_ATMOS_VERFRAD
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ if [[ ! -d ${TANKverf_rad} ]]; then mkdir -p "${TANKverf_rad}"; fi
"${SCRgfs}/exgdas_atmos_verfrad.sh" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate radiance monitor products"
fi

################################
Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGDAS_ENKF_POST
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export LEVS=$((LEVS - 1))
${ENKFPOSTSH:-${SCRgfs}/exgdas_enkf_post.sh} && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to run ensemble post processing"
fi

##############################################
Expand Down
4 changes: 2 additions & 2 deletions dev/jobs/JGDAS_FIT2OBS
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ if [[ ${CDATE} -gt ${SDATE} ]]; then

# Un-export SHELLOPTS before going into the Fit2Obs package (let that package handle logging/errors)
export -n SHELLOPTS
"${SCRIPTSfit2obs}/excfs_gdas_vrfyfits.sh"
"${SCRIPTSfit2obs}/excfs_gdas_vrfyfits.sh" && true
err=$?
if [[ ${err} -ne 0 ]]; then
exit "${err}"
err_exit "Failed to run Fit2Obs verification"
fi

##############################################
Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGFS_ATMOS_AWIPS_20KM_1P0DEG
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export pgmout=OUTPUT.$$
"${SCRgfs}/exgfs_atmos_awips_20km_1p0deg.sh" "${fcsthr}" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate AWIPS products at 20km resolution for forecast hour ${fcsthr}"
fi
########################################################

Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGFS_ATMOS_CYCLONE_GENESIS
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ source "${USHgfs}/unset_strict.sh"
export err=$?
source "${USHgfs}/set_strict.sh"
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to run the tropical cyclone genesis script"
fi

##############################################
Expand Down
4 changes: 2 additions & 2 deletions dev/jobs/JGFS_ATMOS_CYCLONE_TRACKER
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ export loopnum=1
"${USHens_tracker}/data_check_gfs.sh"
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Data check failed for GFS input data. Cannot run the tracker script."
fi
#------------------------------------------------

"${USHens_tracker}/extrkr_gfs.sh" "${loopnum}" "${cmodel}" "${PDY}${cyc}" "${pert}" "${DATA}"
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Tropical cyclone tracking failed"
fi

# cat ${DATA}/trak.avnx.atcfunix.${PDY}${cyc} | \
Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGFS_ATMOS_FBWIND
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fi
"${SCRgfs}/exgfs_atmos_fbwind.sh" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate Pacific WMO wind products"
fi
########################################################

Expand Down
22 changes: 11 additions & 11 deletions dev/jobs/JGFS_ATMOS_GEMPAK
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ if [[ "${fhr}" -ge "${fhmin}" ]] && [[ "${fhr}" -le "${fhmax}" ]]; then
"${SCRgfs}/exgfs_atmos_nawips.sh" "1p00" "${FHR3}" "GFS_GEMPAK" "${COMOUT_ATMOS_GEMPAK_1p00}" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate 1 degree GEMPAK products for forecast hour ${FHR3}"
fi
fi
fi
Expand All @@ -68,7 +68,7 @@ if [[ "${fhr}" -ge "${fhmin}" ]] && [[ "${fhr}" -le "${fhmax}" ]]; then
"${SCRgfs}/exgfs_atmos_nawips.sh" "1p00" "${FHR3}" "GFS_GEMPAK" "${COMOUT_ATMOS_GEMPAK_1p00}" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate 1 degree GEMPAK products for forecast hour ${FHR3}"
fi
fi
fi
Expand All @@ -83,7 +83,7 @@ if [[ "${fhr}" -ge "${fhmin}" ]] && [[ "${fhr}" -le "${fhmax}" ]]; then
"${SCRgfs}/exgfs_atmos_nawips.sh" "0p50" "${FHR3}" "GFS_GEMPAK" "${COMOUT_ATMOS_GEMPAK_0p50}" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate 0.5 degree GEMPAK products for forecast hour ${FHR3}"
fi
fi
fi
Expand All @@ -95,7 +95,7 @@ if [[ "${fhr}" -ge "${fhmin}" ]] && [[ "${fhr}" -le "${fhmax}" ]]; then
"${SCRgfs}/exgfs_atmos_nawips.sh" "0p50" "${FHR3}" "GFS_GEMPAK" "${COMOUT_ATMOS_GEMPAK_0p50}" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate 0.5 degree GEMPAK products for forecast hour ${FHR3}"
fi
fi
fi
Expand All @@ -107,7 +107,7 @@ if [[ "${fhr}" -ge "${fhmin}" ]] && [[ "${fhr}" -le "${fhmax}" ]]; then
"${SCRgfs}/exgfs_atmos_nawips.sh" "0p50" "${FHR3}" "GFS_GEMPAK" "${COMOUT_ATMOS_GEMPAK_0p50}" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate 0.5 degree GEMPAK products for forecast hour ${FHR3}"
fi
fi
fi
Expand All @@ -122,7 +122,7 @@ if [[ "${fhr}" -ge "${fhmin}" ]] && [[ "${fhr}" -le "${fhmax}" ]]; then
"${SCRgfs}/exgfs_atmos_nawips.sh" "0p25" "${FHR3}" "GFS_GEMPAK" "${COMOUT_ATMOS_GEMPAK_0p25}" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate 0.25 degree GEMPAK products for forecast hour ${FHR3}"
fi
fi
fi
Expand All @@ -134,7 +134,7 @@ if [[ "${fhr}" -ge "${fhmin}" ]] && [[ "${fhr}" -le "${fhmax}" ]]; then
"${SCRgfs}/exgfs_atmos_nawips.sh" "0p25" "${FHR3}" "GFS_GEMPAK" "${COMOUT_ATMOS_GEMPAK_0p25}" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate 0.25 degree GEMPAK products for forecast hour ${FHR3}"
fi
fi
fi
Expand All @@ -146,7 +146,7 @@ if [[ "${fhr}" -ge "${fhmin}" ]] && [[ "${fhr}" -le "${fhmax}" ]]; then
"${SCRgfs}/exgfs_atmos_nawips.sh" "0p25" "${FHR3}" "GFS_GEMPAK" "${COMOUT_ATMOS_GEMPAK_0p25}" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate 0.25 degree GEMPAK products for forecast hour ${FHR3}"
fi
fi
fi
Expand All @@ -161,19 +161,19 @@ if [[ "${fhr}" -ge "${fhmin}" ]] && [[ "${fhr}" -le "${fhmax}" ]]; then
"${SCRgfs}/exgfs_atmos_nawips.sh" "35km_pac" "${FHR3}" "GFS_GEMPAK_WWB" "${COMOUT_ATMOS_GEMPAK_35km_pac}" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate Pacific 35km GEMPAK products for forecast hour ${FHR3}"
fi

"${SCRgfs}/exgfs_atmos_nawips.sh" "35km_atl" "${FHR3}" "GFS_GEMPAK_WWB" "${COMOUT_ATMOS_GEMPAK_35km_atl}" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate Atlantic 35km GEMPAK products for forecast hour ${FHR3}"
fi

"${SCRgfs}/exgfs_atmos_nawips.sh" "40km" "${FHR3}" "GFS_GEMPAK_WWB" "${COMOUT_ATMOS_GEMPAK_40km}" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate 40km GEMPAK products for forecast hour ${FHR3}"
fi
fi
fi
Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGFS_ATMOS_GEMPAK_META
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ mkdir -m 775 -p "${COMOUT_ATMOS_GEMPAK_META}"
"${SCRgfs}/exgfs_atmos_gempak_meta.sh" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate at least one GFS GEMPAK meta product"
fi
########################################################

Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGFS_ATMOS_GEMPAK_NCDC_UPAPGIF
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export pgmout=OUTPUT.$$
"${SCRgfs}/exgfs_atmos_gempak_gif_ncdc_skew_t.sh"
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate NCDC skew-T GIFs from GFS GEMPAK products"
fi
########################################################

Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGFS_ATMOS_GEMPAK_PGRB2_SPEC
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export EXT=".grd221"

export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to simulate GOES data from GFS GEMPAK products for forecast hour ${FHR3}"
fi

cd "${DATA}" || exit 1
Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGFS_ATMOS_PGRB2_SPEC_NPOESS
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ mkdir -m 775 -p "${COMOUT_ATMOS_GOES}"
"${SCRgfs}/exgfs_atmos_grib2_special_npoess.sh" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to simulate NPOESS data from GFS GRIB2 products"
fi
#############################################################

Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGFS_ATMOS_POSTSND
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fi
"${SCRgfs}/exgfs_atmos_postsnd.sh" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate GFS BUFR soundings and/or associated WMO products"
fi

##############################################
Expand Down
4 changes: 2 additions & 2 deletions dev/jobs/JGLOBAL_AERO_ANALYSIS_FINALIZE
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ EXSCRIPT=${GDASAEROFINALPY:-${SCRgfs}/exglobal_aero_analysis_finalize.py}
${EXSCRIPT} && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
Comment thread
DavidNew-NOAA marked this conversation as resolved.
err_exit "Failed to finalize the aerosol analysis"
fi

##############################################
Expand All @@ -62,7 +62,7 @@ fi
cd "${DATAROOT}" && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to change directory to ${DATAROOT} to remove temporary working directory"
fi
if [[ "${KEEPDATA}" == "NO" ]]; then
rm -rf "${DATA}"
Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGLOBAL_AERO_ANALYSIS_INITIALIZE
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ EXSCRIPT=${GDASAEROINITPY:-${SCRgfs}/exglobal_aero_analysis_initialize.py}
${EXSCRIPT} && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
Comment thread
DavidNew-NOAA marked this conversation as resolved.
err_exit "Failed to initialize the aerosol analysis"
fi

##############################################
Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGLOBAL_AERO_ANALYSIS_VARIATIONAL
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ EXSCRIPT=${GDASAEROVARSH:-${SCRgfs}/exglobal_aero_analysis_variational.py}
${EXSCRIPT} && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
Comment thread
DavidNew-NOAA marked this conversation as resolved.
err_exit "Failed to calculate the aerosol analysis increment"
fi

##############################################
Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGLOBAL_ANALYSIS_STATS
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ EXSCRIPT=${ANLSTATSPY:-${SCRgfs}/exglobal_analysis_stats.py}
${EXSCRIPT} && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
err_exit "Failed to generate analysis statistics for ${RUN} ${PDY}${cyc}"
fi

##############################################
Expand Down
6 changes: 3 additions & 3 deletions dev/jobs/JGLOBAL_ARCHIVE_VRFY
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ fi
# Run archive script
###############################################################

${GLOBALARCHIVESH:-${SCRgfs}/exglobal_archive_vrfy.py}
err=$?
${GLOBALARCHIVESH:-${SCRgfs}/exglobal_archive_vrfy.py} && true
export err=$?
if [[ ${err} -ne 0 ]]; then
exit "${err}"
err_exit "Failed to archive analysis and forecast files for verification"
fi

##############################################
Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGLOBAL_ATMENS_ANALYSIS_FINALIZE
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ EXSCRIPT=${GDASATMENSFINALPY:-${SCRgfs}/exglobal_atmens_analysis_finalize.py}
${EXSCRIPT} && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
Comment thread
DavidNew-NOAA marked this conversation as resolved.
err_exit "Failed to finalize the ensemble deterministic atmospheric analysis"
fi

##############################################
Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGLOBAL_ATMENS_ANALYSIS_FV3_INCREMENT
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ EXSCRIPT=${GDASATMENSRUNSH:-${SCRgfs}/exglobal_atmens_analysis_fv3_increment.py}
${EXSCRIPT} && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
Comment thread
DavidNew-NOAA marked this conversation as resolved.
err_exit "Failed to calculate the ensemble atmospheric FV3 increments"
fi

##############################################
Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGLOBAL_ATMENS_ANALYSIS_INITIALIZE
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ EXSCRIPT=${GDASATMENSINITPY:-${SCRgfs}/exglobal_atmens_analysis_initialize.py}
${EXSCRIPT} && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
Comment thread
DavidNew-NOAA marked this conversation as resolved.
err_exit "Failed to initialize the ensemble atmospheric analysis"
fi

##############################################
Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGLOBAL_ATMENS_ANALYSIS_LETKF
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ EXSCRIPT=${GDASATMENSRUNSH:-${SCRgfs}/exglobal_atmens_analysis_letkf.py}
${EXSCRIPT} && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
Comment thread
DavidNew-NOAA marked this conversation as resolved.
err_exit "Failed to calculate the ensemble atmospheric analysis increments"
fi

##############################################
Expand Down
2 changes: 1 addition & 1 deletion dev/jobs/JGLOBAL_ATMENS_ANALYSIS_OBS
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ EXSCRIPT=${GDASATMENSOBSSH:-${SCRgfs}/exglobal_atmens_analysis_obs.py}
${EXSCRIPT} && true
export err=$?
if [[ ${err} -ne 0 ]]; then
err_exit
Comment thread
DavidNew-NOAA marked this conversation as resolved.
err_exit "Failed to assimilate observations for the ensemble atmospheric analysis"
fi

##############################################
Expand Down
Loading
Loading