Skip to content

Commit fed7f01

Browse files
authored
Add log lines of update history in the scripts for WAFS processing enhancement (#330)
* 1. By updating GTG tag, modify the GTG source code: when there is a high wind (>500 m/s), send out a warning WITHOUT error message and let GTG computation continue; 2. modify the script so the WAFS failure will not affect generation of GFS * Add log lines of update history in the scripts for the fix: modify the script so the WAFS failure will not affect generation of GFS * Insert the comments from Lin to the history log of exglobal_atmos_pmgr.sh: Ensure loganl.txt file created by atmos_analysis_calc before release atmos_post_anl job * Drop the fix of post_anl job trigger for reliability for GFS operation concern
1 parent 85f5058 commit fed7f01

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

scripts/exgfs_atmos_nceppost.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ echo " and reading sigio model outputs."
2626
echo " Aug 20 - Meng - Remove .ecf extentsion per EE2 review."
2727
echo " Sep 20 - Meng - Update clean up files per EE2 review."
2828
echo " Dec 20 - Meng - Add alert for special data file."
29+
echo " Jun 21 - Mao - Instead of err_chk, catch err and print out"
30+
echo " WAFS failure warnings to avoid job crashing"
2931
echo "-----------------------------------------------------"
3032
#####################################################################
3133

scripts/exglobal_atmos_pmgr.sh

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -49,17 +49,13 @@ do
4949
then
5050
if [ $fhr -eq 0 ]
5151
then
52-
if [ -s ${COMIN}/${RUN}.${cycle}.loganl.txt ]
53-
then
54-
ecflow_client --event release_postanl
55-
ecflow_client --event release_post000
56-
postjobs=`echo $postjobs | sed "s/00//"`
57-
fi
58-
else
59-
ecflow_client --event release_post${fhr3}
60-
# Remove current fhr from list
61-
postjobs=`echo $postjobs | sed "s/${fhr}//"`
62-
fi
52+
#### ecflow_client --event release_${RUN}_postanl
53+
ecflow_client --event release_postanl
54+
fi
55+
#### ecflow_client --event release_${RUN}_post${fhr}
56+
ecflow_client --event release_post${fhr3}
57+
# Remove current fhr from list
58+
postjobs=`echo $postjobs | sed "s/${fhr}//"`
6359
fi
6460
done
6561

ush/gfs_nceppost.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
# Remove legacy setting for reading non-nemsio model output
2424
# and generating grib1 data
2525
# 2019-06-02 Wen Meng: Remove the links of gfs fix files.
26+
# 2021-06-11 Yali Mao: Instead of err_chk, 'exit $err' for wafsfile
27+
# if POSTGPEXEC fails
2628
#
2729
# Usage: global_postgp.sh SIGINP FLXINP FLXIOUT PGBOUT PGIOUT IGEN
2830
#

0 commit comments

Comments
 (0)