forked from NOAA-EMC/global-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#! /usr/bin/env bash | ||
|
||
########## config.verfozn ########## | ||
echo "BEGIN: config.verfozn" | ||
|
||
# Get task specific resources | ||
. "${EXPDIR}/config.resources" verfozn | ||
|
||
CDATEm1c=$(${NDATE} -06 "${PDY}${cyc}") | ||
PDYm1c=${CDATEm1c:0:8} | ||
pcyc=${CDATEm1c:8:2} | ||
|
||
export HOMEgfs_ozn="${HOMEgfs}" | ||
export OZNMON_SUFFIX=${PSLOT} | ||
|
||
export TANKverf="${NOSCRUB}/monitor/oznmon" | ||
export TANKverf_ozn="${TANKverf}/stats/${PSLOT}/${RUN}.${PDY}/${cyc}" | ||
export TANKverf_oznM1="${TANKverf}/stats/${PSLOT}/${RUN}.${PDYm1c}/${pcyc}" | ||
|
||
echo "END: config.verfozn" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#! /usr/bin/env bash | ||
|
||
########## config.verfrad ########## | ||
echo "BEGIN: config.verfrad" | ||
|
||
# Get task specific resources | ||
. "${EXPDIR}/config.resources" verfrad | ||
|
||
CDATEm1c=$(${NDATE} -06 "${PDY}${cyc}") | ||
PDYm1c=${CDATEm1c:0:8} | ||
pcyc=${CDATEm1c:8:2} | ||
|
||
export RADMON_SUFFIX=${PSLOT} | ||
|
||
export TANKverf="${NOSCRUB}/monitor/radmon" | ||
export TANKverf_rad="${TANKverf}/stats/${PSLOT}/${RUN}.${PDY}/${cyc}" | ||
export TANKverf_radM1="${TANKverf}/stats/${PSLOT}/${RUN}.${PDYm1c}/${pcyc}" | ||
|
||
echo "END: config.verfrad" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#! /usr/bin/env bash | ||
|
||
########## config.vminmon ########## | ||
echo "BEGIN: config.vminmon" | ||
|
||
# Get task specific resources | ||
. "${EXPDIR}/config.resources" vminmon | ||
|
||
CDATEm1c=$(${NDATE} -06 "${PDY}${cyc}") | ||
PDYm1c=${CDATEm1c:0:8} | ||
pcyc=${CDATEm1c:8:2} | ||
|
||
export MINMON_SUFFIX="${PSLOT}" | ||
|
||
export TANKverf="${NOSCRUB}/monitor/minmon" | ||
export M_TANKverf="${TANKverf}/stats/${PSLOT}/${RUN}.${PDY}/${cyc}" | ||
export M_TANKverfM0="${TANKverf}/stats/${PSLOT}/${RUN}.${PDY}/${cyc}" | ||
export M_TANKverfM1="${TANKverf}/stats/${PSLOT}/${RUN}.${PDYm1c}/${pcyc}" | ||
|
||
echo "END: config.vminmon" |