Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dbn_alert to job gfs_atmos_wafs_FF_00 #18

Merged
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
51 changes: 26 additions & 25 deletions scripts/exgfs_atmos_wafs_grib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -130,31 +130,32 @@ then
sh $USHgfs/mkwfsgbl.sh ${fcsthrs} x
fi

if test $fcsthrs -le 120
then
set +x
echo " "
echo "####################################################"
echo " Process GFS WAFS GRIB PRODUCTS FOR EIGHT OCTANTS "
echo " FOR FORECAST HOURS 00 - 120 AT 00Z, 06Z, 12Z AND 18Z."
echo " THESE GRID FILES SEND TO TOC."
echo "####################################################"
echo " "
set -x
export parmlist=$FIXgfs/grib_wafsgfs_intdsk
if test $fcsthrs -eq 00
then
export parmlist=$FIXgfs/grib_wafsgfs_intdskf00
sh $USHgfs/wafs_intdsk.sh "00"
elif test $fcsthrs -eq 36
then
sh $USHgfs/wafs_intdsk.sh "36"
export parmlist=$FIXgfs/grib_wafsgfs_intdskf00
sh $USHgfs/wafs_intdsk.sh "03 09 15 21 27 33"
else
sh $USHgfs/wafs_intdsk.sh ${fcsthrs}
fi
fi
# Turning off OCTANTS for ICAO2023 implementation on 20240117
#if test $fcsthrs -le 120
#then
# set +x
# echo " "
# echo "####################################################"
# echo " Process GFS WAFS GRIB PRODUCTS FOR EIGHT OCTANTS "
# echo " FOR FORECAST HOURS 00 - 120 AT 00Z, 06Z, 12Z AND 18Z."
# echo " THESE GRID FILES SEND TO TOC."
# echo "####################################################"
# echo " "
# set -x
# export parmlist=$FIXgfs/grib_wafsgfs_intdsk
# if test $fcsthrs -eq 00
# then
# export parmlist=$FIXgfs/grib_wafsgfs_intdskf00
# sh $USHgfs/wafs_intdsk.sh "00"
# elif test $fcsthrs -eq 36
# then
# sh $USHgfs/wafs_intdsk.sh "36"
# export parmlist=$FIXgfs/grib_wafsgfs_intdskf00
# sh $USHgfs/wafs_intdsk.sh "03 09 15 21 27 33"
# else
# sh $USHgfs/wafs_intdsk.sh ${fcsthrs}
# fi
#fi

################################################################################
# GOOD RUN
Expand Down
24 changes: 12 additions & 12 deletions ush/mkwfsgbl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,18 +121,18 @@ do
if test "$SENDCOM" = 'YES'
then
cp xtrn.wfs${NET}${hour}${sets} $PCOM/xtrn.wfs${NET}${cyc}${hour}${sets}.$jobsuffix
cp com.wafs${hour}${sets} $PCOM/com.wafs${cyc}${hour}${sets}.$jobsuffix

if test "$SENDDBN_NTC" = 'YES'
then
if test "$NET" = 'gfs'
then
$DBNROOT/bin/dbn_alert MODEL GFS_WAFS $job \
$PCOM/com.wafs${cyc}${hour}${sets}.$jobsuffix
$DBNROOT/bin/dbn_alert MODEL GFS_XWAFS $job \
$PCOM/xtrn.wfs${NET}${cyc}${hour}${sets}.$jobsuffix
fi
fi
# cp com.wafs${hour}${sets} $PCOM/com.wafs${cyc}${hour}${sets}.$jobsuffix

# if test "$SENDDBN_NTC" = 'YES'
# then
# if test "$NET" = 'gfs'
# then
# $DBNROOT/bin/dbn_alert MODEL GFS_WAFS $job \
# $PCOM/com.wafs${cyc}${hour}${sets}.$jobsuffix
# $DBNROOT/bin/dbn_alert MODEL GFS_XWAFS $job \
# $PCOM/xtrn.wfs${NET}${cyc}${hour}${sets}.$jobsuffix
# fi
# fi
fi

##############################
Expand Down