-
Notifications
You must be signed in to change notification settings - Fork 180
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 jgdas atmos verfozn and verfrad with COMIN/COMOUT prefix instead of COM #3342
base: develop
Are you sure you want to change the base?
Update jgdas atmos verfozn and verfrad with COMIN/COMOUT prefix instead of COM #3342
Conversation
|
||
export oznstat="${COM_ATMOS_ANALYSIS}/gdas.t${cyc}z.oznstat" | ||
export TANKverf_ozn=${TANKverf_ozn:-${COM_ATMOS_OZNMON}} | ||
export oznstat="${COMOUT_ATMOS_ANALYSIS}/gdas.t${cyc}z.oznstat" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
COMOUT_ATMOS_ANALYSIS
should be a COMIN
. This is setting the path of an input file (oznstat) for the GSI monitoring package.
if [[ ! -d ${TANKverf_rad} ]]; then mkdir -p -m 775 ${TANKverf_rad} ; fi | ||
if [[ ! -d ${TANKverf_radM1} ]]; then mkdir -p -m 775 ${TANKverf_radM1} ; fi | ||
YMD=${PDY} HH=${cyc} declare_from_tmpl -rx \ | ||
COMOUT_ATMOS_ANALYSIS:COM_ATMOS_ANALYSIS_TMPL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as other comment, COMOUT_ATMOS_ANALYSIS
should be a COMIN
.
YMD=${PDY} HH=${cyc} declare_from_tmpl -rx \ | ||
COMOUT_ATMOS_RADMON:COM_ATMOS_RADMON_TMPL | ||
YMD=${gPDY} HH=${gcyc} declare_from_tmpl -rx \ | ||
COMOUT_ATMOS_RADMON_PREV:COM_ATMOS_RADMON_TMPL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
COMOUT_ATMOS_RADMON_PREV
is a PREV
COM variable. Double check if this should be a COMIN
or COMOUT
.
if [[ ! -d ${TANKverf_ozn} ]]; then mkdir -p -m 775 ${TANKverf_ozn} ; fi | ||
if [[ ! -d ${TANKverf_ozn} ]]; then mkdir -p ${TANKverf_ozn} ; fi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was it requested to remove the -m 775
from the mkdir commands in the two scripts in this PR?
Description
NCO has requested that each COM variable specify whether it is an input or an output. This completes that process for the global JGDAS_ATMOS_VERFOZN and JGDAS_ATMOS_VERFRAD jobs and associated bash and python scripts
Refs #2451
Type of change
Change characteristics
How has this been tested?
Checklist