Commit fa4568a 1 parent 918f346 commit fa4568a Copy full SHA for fa4568a
File tree 4 files changed +30
-21
lines changed
4 files changed +30
-21
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,6 @@ jobname=ConMon_DE_${CONMON_SUFFIX}
106
106
echo " C_TANKDIR = ${C_TANKDIR} "
107
107
echo " C_LOGDIR = ${C_LOGDIR} "
108
108
echo " C_IMGNDIR = ${C_IMGNDIR} "
109
- echo " MON_USH = $MON_USH "
110
109
111
110
if [[ ! -d ${C_TANKDIR} ]]; then
112
111
mkdir -p ${C_TANKDIR}
@@ -141,8 +140,6 @@ if [[ ${#cnvstat_location} -le 0 ]]; then
141
140
export cnvstat_location=${COMROOT} /gfs/${gfs_ver}
142
141
fi
143
142
export CNVSTAT_LOCATION=${cnvstat_location}
144
- echo " CNVSTAT_LOCATION = $CNVSTAT_LOCATION "
145
-
146
143
export COMPONENT=${COMPONENT:- atmos}
147
144
148
145
export C_DATDIR=${C_DATDIR:- ${CNVSTAT_LOCATION} / ${RUN} .${PDY} / ${CYC} / ${COMPONENT} }
@@ -181,10 +178,6 @@ if [[ ! -s ${pgrbf06} ]]; then
181
178
export pgrbf06=" ${C_GDATDIR} /gdas.t${GCYC} z.pgrb2.1p00.f006"
182
179
fi
183
180
184
- echo " cnvstat = $cnvstat "
185
- echo " pgrbf00 = $pgrbf00 "
186
- echo " pgrbf06 = $pgrbf06 "
187
-
188
181
189
182
# ---------------------------------------------
190
183
# override the default convinfo definition
Original file line number Diff line number Diff line change 7
7
# ----------------------------------------------------------------------------------------
8
8
echo " --> plot_horz.sh"
9
9
10
- hh_tankdir=${C_TANKDIR} /${RUN} .${PDY} /${CYC} /conmon/horz_hist
10
+ hh_tankdir=` $MON_USH /get_stats_path.sh --run $RUN --pdate ${PDATE} \
11
+ --net ${CONMON_SUFFIX} --tank ${TANKDIR} --mon conmon`
12
+ hh_tankdir=${hh_tankdir} /horz_hist
11
13
12
14
export xsize=x800
13
15
export ysize=y600
23
25
# ----------------------------------------------------------------------
24
26
# link in the analysis and guess data files
25
27
# ----------------------------------------------------------------------
26
- ${UNCOMPRESS} ${ hh_tankdir} /anl/anal.${PDATE} . ${Z }
27
- ${UNCOMPRESS} ${ hh_tankdir} /ges/guess.${PDATE} . ${Z }
28
+ anl_file= ${ hh_tankdir} /anl/anal.${PDATE}
29
+ ges_file= ${ hh_tankdir} /ges/guess.${PDATE}
28
30
29
- ln -s ${hh_tankdir} /anl/anal.${PDATE} anal.${PDATE}
30
- ln -s ${hh_tankdir} /ges/guess.${PDATE} guess.${PDATE}
31
+ if [[ -e ${anl_file} .gz ]]; then
32
+ ${UNCOMPRESS} ${anl_file} .gz
33
+ fi
34
+ if [[ -e ${ges_file} .gz ]]; then
35
+ ${UNCOMPRESS} ${ges_file} .gz
36
+ fi
37
+
38
+ ln -s ${anl_file} anal.${PDATE}
39
+ ln -s ${ges_file} guess.${PDATE}
31
40
32
41
33
42
# ----------------------------------------------------------------------
Original file line number Diff line number Diff line change 7
7
# ---------------------------------------------------------------------
8
8
echo " --> plot_horz_uv.sh"
9
9
10
- hh_tankdir=${C_TANKDIR} /${RUN} .${PDY} /${CYC} /conmon/horz_hist
10
+ hh_tankdir=` $MON_USH /get_stats_path.sh --run $RUN --pdate ${PDATE} \
11
+ --net ${CONMON_SUFFIX} --tank ${TANKDIR} --mon conmon`
12
+ hh_tankdir=${hh_tankdir} /horz_hist
11
13
12
14
workdir=${C_PLOT_WORKDIR} /plothorz_uv
13
15
if [[ -d ${workdir} ]]; then
22
24
# ----------------------------------------------------------------------
23
25
# Link in the analysis and guess data files
24
26
# ----------------------------------------------------------------------
25
- ${UNCOMPRESS} ${ hh_tankdir} /anl/anal.${PDATE} .gz
26
- ${UNCOMPRESS} ${ hh_tankdir} /ges/guess.${PDATE} .gz
27
+ anl_file= ${ hh_tankdir} /anl/anal.${PDATE}
28
+ ges_file= ${ hh_tankdir} /ges/guess.${PDATE}
27
29
28
- ln -s ${hh_tankdir} /anl/anal.${PDATE} anal.${PDATE}
29
- ln -s ${hh_tankdir} /ges/guess.${PDATE} guess.${PDATE}
30
+ if [[ -e ${anl_file} .gz ]]; then
31
+ ${UNCOMPRESS} ${anl_file} .gz
32
+ fi
33
+ if [[ -e ${ges_file} .gz ]]; then
34
+ ${UNCOMPRESS} ${ges_file} .gz
35
+ fi
36
+
37
+ ln -s ${anl_file} anal.${PDATE}
38
+ ln -s ${ges_file} guess.${PDATE}
30
39
31
40
32
41
# ----------------------------------------------------------------------
Original file line number Diff line number Diff line change 25
25
# ---------------------------------------------------
26
26
27
27
${NCP} ${C_IG_GSCRIPTS} /plotstas_time_count_ps.gs .
28
- ${NCP} ${C_IG_GSCRIPTS} /plotstas_time_bias_ps .gs .
28
+ ${NCP} ${C_IG_GSCRIPTS} /plotstas_time_bias2_ps .gs .
29
29
30
30
# ---------------------------------------------------
31
31
# Link in the data files.
93
93
94
94
grads -bpc " run ./plotstas_time_count_ps.gs"
95
95
96
- grads -bpc " run ./plotstas_time_bias_ps.gs"
97
-
98
- # grads -bpc "run ./plotstas_time_bias2_ps.gs"
96
+ grads -bpc " run ./plotstas_time_bias2_ps.gs"
99
97
100
98
img_files=` ls * .png`
101
99
for imgf in ${img_files} ; do
You can’t perform that action at this time.
0 commit comments