Skip to content

Commit

Permalink
Issue #1: HPSS archive and MOS script changes
Browse files Browse the repository at this point in the history
 * replace enkf member atmi*nc with ratmi*nc in HPSS enkf tarballs

 * add ensemble resolution analysis to HPSS gdas tarball

 * allow variable range to be externally set in run_gfsmos_master scripts
  • Loading branch information
RussTreadon-NOAA committed Jun 25, 2020
1 parent e599c36 commit b8192e5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion scripts/run_gfsmos_master.sh.cray
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ else
exit
fi

export range=both
export range=${range:-"both"}
export skipmodel=n
export skipprep=n
export stnonly=Y
Expand Down
2 changes: 1 addition & 1 deletion scripts/run_gfsmos_master.sh.dell
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export prevday=`$NDATE -24 ${PDY}00 | cut -c1-8`
##fi

# ERIC ENGLE 05/30/2018 - PATCH FOR FV3GFS WINTER 17/18 PARALLEL
export range=both
export range=${range:-"both"}

#if [ $cyc -eq 00 -o $cyc -eq 12 ]; then
# if [ $cyc -eq 00 ]; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/run_gfsmos_master.sh.hera
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export prevday=`$NDATE -24 ${PDY}00 | cut -c1-8`
##fi

# ERIC ENGLE 05/30/2018 - PATCH FOR FV3GFS WINTER 17/18 PARALLEL
export range=short
export range=${range:-"both"}

#if [ $cyc -eq 00 -o $cyc -eq 12 ]; then
# if [ $cyc -eq 00 ]; then
Expand Down
17 changes: 13 additions & 4 deletions ush/hpssarch_gen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,15 @@ if [ $type = "gdas" ]; then
echo "${dirname}${head}pgrb2.1p00.anl.idx " >>gdas.txt
echo "${dirname}${head}atmanl${SUFFIX} " >>gdas.txt
echo "${dirname}${head}sfcanl${SUFFIX} " >>gdas.txt
if [ -s $ROTDIR/${dirpath}${head}atmanl.ensres${SUFFIX} ]; then
echo "${dirname}${head}atmanl.ensres${SUFFIX} " >>gdas.txt
fi
if [ -s $ROTDIR/${dirpath}${head}atma003.ensres${SUFFIX} ]; then
echo "${dirname}${head}atma003.ensres${SUFFIX} " >>gdas.txt
fi
if [ -s $ROTDIR/${dirpath}${head}atma009.ensres${SUFFIX} ]; then
echo "${dirname}${head}atma000.ensres${SUFFIX} " >>gdas.txt
fi
if [ -s $ROTDIR/${dirpath}${head}cnvstat ]; then
echo "${dirname}${head}cnvstat " >>gdas.txt
fi
Expand Down Expand Up @@ -380,8 +389,8 @@ if [ $type = "enkfgdas" -o $type = "enkfgfs" ]; then
if [ -s $ROTDIR/${dirpath}${head}atmanl${SUFFIX} ] ; then
echo "${dirname}${head}atmanl${SUFFIX} " >>enkf${CDUMP}_grp${n}.txt
fi
if [ -s $ROTDIR/${dirpath}${head}atminc${SUFFIX} ] ; then
echo "${dirname}${head}atminc${SUFFIX} " >>enkf${CDUMP}_grp${n}.txt
if [ -s $ROTDIR/${dirpath}${head}ratminc${SUFFIX} ] ; then
echo "${dirname}${head}ratminc${SUFFIX} " >>enkf${CDUMP}_grp${n}.txt
fi
fi
if [ -s $ROTDIR/${dirpath}${head}ratminc${SUFFIX} ] ; then
Expand All @@ -393,8 +402,8 @@ if [ $type = "enkfgdas" -o $type = "enkfgfs" ]; then
if [ -s $ROTDIR/${dirpath}${head}atma00${FHR}${SUFFIX} ] ; then
echo "${dirname}${head}atma00${FHR}${SUFFIX} " >>enkf${CDUMP}_grp${n}.txt
fi
if [ -s $ROTDIR/${dirpath}${head}atmi00${FHR}${SUFFIX} ] ; then
echo "${dirname}${head}atmi00${FHR}${SUFFIX} " >>enkf${CDUMP}_grp${n}.txt
if [ -s $ROTDIR/${dirpath}${head}ratmi00${FHR}${SUFFIX} ] ; then
echo "${dirname}${head}ratmi00${FHR}${SUFFIX} " >>enkf${CDUMP}_grp${n}.txt
fi
fi
if [ -s $ROTDIR/${dirpath}${head}ratmi00${FHR}${SUFFIX} ] ; then
Expand Down

0 comments on commit b8192e5

Please sign in to comment.