-
Notifications
You must be signed in to change notification settings - Fork 217
Follow-up modifications for GFS post process #2467
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
Changes from 5 commits
4e4c108
49760d2
9d23951
4c7f570
8f0367e
afd97d1
e92e404
9d6b6b8
c0c9541
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 | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -479,8 +479,8 @@ EOF | |||||||||
| ${NLN} "${COM_ATMOS_HISTORY}/${RUN}.t${cyc}z.sfcf${FH3}.nc" "sfcf${FH3}.nc" | ||||||||||
| ${NLN} "${COM_ATMOS_HISTORY}/${RUN}.t${cyc}z.atm.logf${FH3}.txt" "log.atm.f${FH3}" | ||||||||||
| if [[ ${WRITE_DOPOST} = ".true." ]]; then | ||||||||||
| ${NLN} "${COM_ATMOS_MASTER}/${RUN}.t${cyc}z.master.grb2f${FH3}" "GFSPRS.GrbF${FH2}" | ||||||||||
| ${NLN} "${COM_ATMOS_MASTER}/${RUN}.t${cyc}z.sfluxgrbf${FH3}.grib2" "GFSFLX.GrbF${FH2}" | ||||||||||
| ${NLN} "${COM_ATMOS_MASTER}/${RUN}.t${cyc}z.masterf${FH3}.grb2" "GFSPRS.GrbF${FH2}" | ||||||||||
| ${NLN} "${COM_ATMOS_MASTER}/${RUN}.t${cyc}z.sfluxf${FH3}.grb2" "GFSFLX.GrbF${FH2}" | ||||||||||
|
Contributor
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
|
||||||||||
| fi | ||||||||||
| done | ||||||||||
| else # TODO: Is this even valid anymore? | ||||||||||
|
|
||||||||||
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -168,8 +168,8 @@ if [[ ${type} = "gfs" ]]; then | |||||||||
| fhr=$(printf %03i "${fh}") | ||||||||||
| if [[ ${ARCH_GAUSSIAN} = "YES" ]]; then | ||||||||||
| { | ||||||||||
| echo "${COM_ATMOS_MASTER/${ROTDIR}\//}/${head}sfluxgrbf${fhr}.grib2" | ||||||||||
| echo "${COM_ATMOS_MASTER/${ROTDIR}\//}/${head}sfluxgrbf${fhr}.grib2.idx" | ||||||||||
| echo "${COM_ATMOS_MASTER/${ROTDIR}\//}/${head}sfluxf${fhr}.grb2" | ||||||||||
| echo "${COM_ATMOS_MASTER/${ROTDIR}\//}/${head}sfluxf${fhr}.grb2.idx" | ||||||||||
|
Contributor
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
|
||||||||||
| } >> "${DATA}/gfs_flux.txt" | ||||||||||
|
|
||||||||||
| { | ||||||||||
|
|
@@ -395,8 +395,8 @@ if [[ ${type} == "gdas" ]]; then | |||||||||
| fh=0 | ||||||||||
| while [[ ${fh} -le 9 ]]; do | ||||||||||
| fhr=$(printf %03i "${fh}") | ||||||||||
| echo "${COM_ATMOS_MASTER/${ROTDIR}\//}/${head}sfluxgrbf${fhr}.grib2" | ||||||||||
| echo "${COM_ATMOS_MASTER/${ROTDIR}\//}/${head}sfluxgrbf${fhr}.grib2.idx" | ||||||||||
| echo "${COM_ATMOS_MASTER/${ROTDIR}\//}/${head}sfluxf${fhr}.grb2" | ||||||||||
| echo "${COM_ATMOS_MASTER/${ROTDIR}\//}/${head}sfluxf${fhr}.grb2.idx" | ||||||||||
|
Contributor
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
|
||||||||||
| echo "${COM_ATMOS_GRIB_0p25/${ROTDIR}\//}/${head}pgrb2.0p25.f${fhr}" | ||||||||||
| echo "${COM_ATMOS_GRIB_0p25/${ROTDIR}\//}/${head}pgrb2.0p25.f${fhr}.idx" | ||||||||||
| echo "${COM_ATMOS_GRIB_1p00/${ROTDIR}\//}/${head}pgrb2.1p00.f${fhr}" | ||||||||||
|
|
@@ -408,7 +408,7 @@ if [[ ${type} == "gdas" ]]; then | |||||||||
| done | ||||||||||
| flist="001 002 004 005 007 008" | ||||||||||
| for fhr in ${flist}; do | ||||||||||
| file="${COM_ATMOS_MASTER/${ROTDIR}\//}/${head}sfluxgrbf${fhr}.grib2" | ||||||||||
| file="${COM_ATMOS_MASTER/${ROTDIR}\//}/${head}sfluxf${fhr}.grb2" | ||||||||||
|
Contributor
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
Contributor
Author
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 Updated. |
||||||||||
| if [[ -s "${file}" ]]; then | ||||||||||
| echo "${file}" | ||||||||||
| echo "${file}.idx" | ||||||||||
|
|
||||||||||
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.
@WenMeng-NOAA
The workflow looks for the master file to kick off the products generation job.
Please update this line to:
The analysis products job trigger also needs to be updated. Please update this line to:
Finally, the offline UPP for analysis needs to write out the updated filename to
COM. Please update these lines with: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.
Note more updates will be needed in the
hpssarch_gen.shfor these changes in analysis filenames.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.
I will work on that.
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.
@WenMeng-NOAA
I just looked at the EE2 implementation standards and the correct extension for grib2 files is
grib2. We should replacegrb2withgrib2.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 Just confirm with you that updates will be in all master/flux/goes/pgrb2/pgrb2b.
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 Updated.