-
Notifications
You must be signed in to change notification settings - Fork 172
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 GSI analysis jobs to use COMIN/COMOUT #3092
base: develop
Are you sure you want to change the base?
Changes from 19 commits
fcd075e
c1d9f8c
1ff5591
677b8ca
01216a5
ad1aa96
ebdb0ba
3337cc4
5abb226
f0be27e
4fa5030
7a956aa
ca1829b
4988539
1213950
20917eb
594f983
0303a9c
4d94381
0826c3e
67acf61
fa937ef
18eb1f4
4c05e20
4329a19
bc771e9
df83c7b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -28,16 +28,19 @@ export GPREFIX="${GDUMP}.t${gcyc}z." | |||||
export APREFIX="${RUN}.t${cyc}z." | ||||||
export GPREFIX_ENS="${GDUMP_ENS}.t${gcyc}z." | ||||||
|
||||||
RUN=${rCDUMP} YMD=${PDY} HH=${cyc} declare_from_tmpl -rx COM_OBS | ||||||
RUN=${rCDUMP} YMD=${PDY} HH=${cyc} declare_from_tmpl -rx \ | ||||||
COMIN_OBS:COM_OBS_TMPL | ||||||
|
||||||
YMD=${PDY} HH=${cyc} declare_from_tmpl -rx COM_ATMOS_ANALYSIS COM_ATMOS_RESTART | ||||||
YMD=${PDY} HH=${cyc} declare_from_tmpl -rx | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
This is the fix needed. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @aerorahul There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @aerorahul There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please push them |
||||||
COMOUT_ATMOS_ANALYSIS:COM_ATMOS_ANALYSIS_TMPL \ | ||||||
COMIN_ATMOS_RESTART:COM_ATMOS_RESTART_TMPL | ||||||
|
||||||
RUN=${GDUMP} YMD=${gPDY} HH=${gcyc} declare_from_tmpl -rx \ | ||||||
COM_OBS_PREV:COM_OBS_TMPL \ | ||||||
COM_ATMOS_HISTORY_PREV:COM_ATMOS_HISTORY_TMPL | ||||||
COMIN_OBS_PREV:COM_OBS_TMPL \ | ||||||
COMIN_ATMOS_HISTORY_PREV:COM_ATMOS_HISTORY_TMPL | ||||||
|
||||||
|
||||||
export ATMGES="${COM_ATMOS_HISTORY_PREV}/${GPREFIX}atmf006.nc" | ||||||
export ATMGES="${COMIN_ATMOS_HISTORY_PREV}/${GPREFIX}atmf006.nc" | ||||||
if [ ! -f ${ATMGES} ]; then | ||||||
echo "FATAL ERROR: FILE MISSING: ATMGES = ${ATMGES}" | ||||||
exit 1 | ||||||
|
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.
@mingshichen-noaa
This line is causing the failure. Please fix
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.
@aerorahul
After I checked codes in jobs/JGLOBAL_ATMOS_ANALYSIS_CALC from mingshichen-noaa:feature/jgdas_enkf_select_obs_com_in_out, the codes had been modified as follows:
30
31 RUN=${rCDUMP} YMD=${PDY} HH=${cyc} declare_from_tmpl -rx
32 COMIN_OBS:COM_OBS_TMPL
33
34 YMD=${PDY} HH=${cyc} declare_from_tmpl -rx
35 COMOUT_ATMOS_ANALYSIS:COM_ATMOS_ANALYSIS_TMPL
36 COMIN_ATMOS_RESTART:COM_ATMOS_RESTART_TMPL
37
38 RUN=${GDUMP} YMD=${gPDY} HH=${gcyc} declare_from_tmpl -rx
39 COMIN_OBS_PREV:COM_OBS_TMPL
40 COMIN_ATMOS_HISTORY_PREV:COM_ATMOS_HISTORY_TMPL
41