Skip to content

Commit

Permalink
Merge branch 'develop' into feature/ocnanalecenworkflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewEichmann-NOAA committed Apr 10, 2024
2 parents bf4d69d + 6d40dbf commit d7b348f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion parm/config/gfs/config.base
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ export imp_physics=8
export DO_JEDIATMVAR="@DO_JEDIATMVAR@"
export DO_JEDIATMENS="@DO_JEDIATMENS@"
export DO_JEDIOCNVAR="@DO_JEDIOCNVAR@"
export DO_JEDILANDDA="@DO_JEDILANDDA@"
export DO_JEDISNOWDA="@DO_JEDISNOWDA@"
export DO_MERGENSST="@DO_MERGENSST@"

# Hybrid related
Expand Down
12 changes: 6 additions & 6 deletions ush/forecast_postdet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ EOF
increment_file="${COM_ATMOS_ANALYSIS}/${RUN}.t${cyc}z.${PREFIX_ATMINC}atmi${incfhr}.nc"
fi
if [[ ! -f ${increment_file} ]]; then
echo "ERROR: DOIAU = ${DOIAU}, but missing increment file for fhr ${incfhr} at ${increment_file}"
echo "FATAL ERROR: DOIAU = ${DOIAU}, but missing increment file for fhr ${incfhr} at ${increment_file}"
echo "Abort!"
exit 1
fi
Expand Down Expand Up @@ -148,7 +148,7 @@ EOF

_suite_file="${HOMEgfs}/sorc/ufs_model.fd/FV3/ccpp/suites/suite_${CCPP_SUITE}.xml"
if [[ ! -f ${_suite_file} ]]; then
echo "FATAL: CCPP Suite file ${_suite_file} does not exist!"
echo "FATAL ERROR: CCPP Suite file ${_suite_file} does not exist!"
exit 2
fi

Expand Down Expand Up @@ -569,7 +569,7 @@ WW3_postdet() {
if [[ ${RERUN} = "NO" ]]; then
echo "WARNING: NON-FATAL ERROR wave IC is missing, will start from rest"
else
echo "ERROR: Wave IC is missing in RERUN, exiting."
echo "FATAL ERROR: Wave IC ${waverstfile} is missing in RERUN, exiting."
exit 1
fi
else
Expand All @@ -592,7 +592,7 @@ WW3_postdet() {
if [[ "${WW3ICEINP}" = "YES" ]]; then
local wavicefile="${COM_WAVE_PREP}/${RUNwave}.${WAVEICE_FID}.${cycle}.ice"
if [[ ! -f ${wavicefile} ]]; then
echo "ERROR: WW3ICEINP = ${WW3ICEINP}, but missing ice file"
echo "FATAL ERROR: WW3ICEINP = ${WW3ICEINP}, but missing ice file ${wavicefile}"
echo "Abort!"
exit 1
fi
Expand All @@ -602,7 +602,7 @@ WW3_postdet() {
if [[ "${WW3CURINP}" = "YES" ]]; then
local wavcurfile="${COM_WAVE_PREP}/${RUNwave}.${WAVECUR_FID}.${cycle}.cur"
if [[ ! -f ${wavcurfile} ]]; then
echo "ERROR: WW3CURINP = ${WW3CURINP}, but missing current file"
echo "FATAL ERROR: WW3CURINP = ${WW3CURINP}, but missing current file ${wavcurfile}"
echo "Abort!"
exit 1
fi
Expand Down Expand Up @@ -697,7 +697,7 @@ MOM6_postdet() {
# Link increment
if [[ "${DO_JEDIOCNVAR:-NO}" = "YES" ]]; then
if [[ ! -f "${COM_OCEAN_ANALYSIS}/${RUN}.t${cyc}z.ocninc.nc" ]]; then
echo "FATAL ERROR: Ocean increment not found, ABORT!"
echo "FATAL ERROR: Ocean increment ${COM_OCEAN_ANALYSIS}/${RUN}.t${cyc}z.ocninc.nc not found, ABORT!"
exit 111
fi
${NLN} "${COM_OCEAN_ANALYSIS}/${RUN}.t${cyc}z.ocninc.nc" "${DATA}/INPUT/mom6_increment.nc"
Expand Down
14 changes: 8 additions & 6 deletions ush/hpssarch_gen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -506,12 +506,14 @@ if [[ ${type} == "gdas" ]]; then

[[ -s "${COM_CONF}/${head}letkfoi.yaml" ]] && echo "${COM_CONF/${ROTDIR}\//}/${head}letkfoi.yaml"

echo "${COM_SNOW_ANALYSIS/${ROTDIR}\//}/*0000.sfc_data.tile1.nc"
echo "${COM_SNOW_ANALYSIS/${ROTDIR}\//}/*0000.sfc_data.tile2.nc"
echo "${COM_SNOW_ANALYSIS/${ROTDIR}\//}/*0000.sfc_data.tile3.nc"
echo "${COM_SNOW_ANALYSIS/${ROTDIR}\//}/*0000.sfc_data.tile4.nc"
echo "${COM_SNOW_ANALYSIS/${ROTDIR}\//}/*0000.sfc_data.tile5.nc"
echo "${COM_SNOW_ANALYSIS/${ROTDIR}\//}/*0000.sfc_data.tile6.nc"
if [[ "${DO_JEDISNOWDA:-}" == "YES" ]]; then
echo "${COM_SNOW_ANALYSIS/${ROTDIR}\//}/*0000.sfc_data.tile1.nc"
echo "${COM_SNOW_ANALYSIS/${ROTDIR}\//}/*0000.sfc_data.tile2.nc"
echo "${COM_SNOW_ANALYSIS/${ROTDIR}\//}/*0000.sfc_data.tile3.nc"
echo "${COM_SNOW_ANALYSIS/${ROTDIR}\//}/*0000.sfc_data.tile4.nc"
echo "${COM_SNOW_ANALYSIS/${ROTDIR}\//}/*0000.sfc_data.tile5.nc"
echo "${COM_SNOW_ANALYSIS/${ROTDIR}\//}/*0000.sfc_data.tile6.nc"
fi
} >> "${DATA}/gdas_restarta.txt"

#..................
Expand Down

0 comments on commit d7b348f

Please sign in to comment.