Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ush/config.sh.RRFS_CONUS_3km
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ if [[ $MACHINE == "hera" ]] ; then
PARTITION_DEFAULT=""
PARTITION_FCST=""
QUEUE_ANALYSIS="batch"
QUEUE_WGRIB2="batch"
QUEUE_GRAPHICS="batch"
fi

if [[ $MACHINE == "orion" ]] ; then
Expand Down
8 changes: 5 additions & 3 deletions ush/get_extrn_mdl_file_dir_info.sh
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,8 @@ fi
if [ "${MACHINE}" = "JET" ] || [ "${MACHINE}" = "ORION" ]; then
fns_on_disk=( "${yy}${ddd}${hh}0${fcst_mn}0${fcst_hh}" )
elif [ "${MACHINE}" = "HERA" ] ; then
fns_on_disk=( "gfs.t${hh}z.pgrb2.0p25.f0${fcst_hh}" )
#fns_on_disk=( "gfs.t${hh}z.pgrb2.0p25.f0${fcst_hh}" )
fns_on_disk=( "${yy}${ddd}${hh}0${fcst_mn}0${fcst_hh}" )
Comment thread
chunhuazhou marked this conversation as resolved.
else
fns_on_disk=( "gfs.t${hh}z.pgrb2.0p25.f0${fcst_hh}" "gfs.t${hh}z.sfcf0${fcst_hh}.nc") # use netcdf
fi
Expand Down Expand Up @@ -503,7 +504,7 @@ and analysis or forecast (anl_or_fcst):

fcst_hhh=( $( printf "%03d " "${lbc_spec_fhrs[@]}" ) )

if [ "${MACHINE}" = "JET" ] || [ "${MACHINE}" = "ORION" ]; then
if [ "${MACHINE}" = "JET" ] || [ "${MACHINE}" = "ORION" ] || [ "${MACHINE}" = "HERA" ]; then
prefix=( "${yy}${ddd}${hh}${fcst_mn}0" )
fns_on_disk=( "${fcst_hhh[@]/#/$prefix}" )
else
Expand Down Expand Up @@ -662,7 +663,8 @@ has not been specified for this external model and machine combination:
sysdir="$sysbasedir/gfs.${yyyymmdd}/${hh}/atmos"
;;
"HERA")
sysdir="$sysbasedir/gfs.${yyyymmdd}/${hh}/atmos"
sysdir="$sysbasedir"
Comment thread
chunhuazhou marked this conversation as resolved.
#sysdir="$sysbasedir/gfs.${yyyymmdd}/${hh}/atmos"
;;
"ORION")
sysdir="$sysbasedir/gdas.${yyyymmdd}/${hh}/atmos"
Expand Down
2 changes: 2 additions & 0 deletions ush/set_rrfs_config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ if [[ $DO_RETRO == "TRUE" ]] ; then
ENKF_FCST=/scratch2/BMC/zrtrr/rli/data/enkf/atm
AIRCRAFT_REJECT="/scratch2/BMC/zrtrr/rli/data/amdar_reject_lists"
SFCOBS_USELIST="/scratch2/BMC/zrtrr/rli/data/mesonet_uselists"
SST_ROOT="/scratch2/BMC/zrtrr/rli/data/highres_sst"
GVF_ROOT="/scratch2/BMC/zrtrr/rli/data/gvf/grib2"
fi
if [[ $MACHINE == "orion" ]] ; then
EXTRN_MDL_SOURCE_BASEDIR_ICS=/work/noaa/wrfruc/mhu/rrfs/data/gfs
Expand Down
4 changes: 2 additions & 2 deletions ush/templates/FV3LAM_wflow.xml
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ MODULES_RUN_TASK_FP script.
{%- if machine in ["JET"] %}
<datadep age="00:00:05:00"><cyclestr offset="-{{ extrn_mdl_ics_offset_hrs }}:00:00">{{ extrn_mdl_sysbasedir_ics }}/@y@j@H000{{ "%03d" % extrn_mdl_ics_offset_hrs }}</cyclestr></datadep>
{%- elif machine in ["HERA"] %}
<datadep age="00:00:05:00"><cyclestr offset="-{{ extrn_mdl_ics_offset_hrs }}:00:00">{{ extrn_mdl_sysbasedir_ics }}/gfs.@Y@m@d/@H/atmos/gfs.t@Hz.pgrb2.0p25.f{{ "%03d" % extrn_mdl_ics_offset_hrs }}</cyclestr></datadep>
<datadep age="00:00:05:00"><cyclestr offset="-{{ extrn_mdl_ics_offset_hrs }}:00:00">{{ extrn_mdl_sysbasedir_ics }}/@y@j@H000{{ "%03d" % extrn_mdl_ics_offset_hrs }}</cyclestr></datadep>
Comment thread
chunhuazhou marked this conversation as resolved.
{%- endif %}
{%- endif %}
{%- endif %}
Expand Down Expand Up @@ -436,7 +436,7 @@ MODULES_RUN_TASK_FP script.
{%- if machine in ["JET"] %}
<datadep age="00:00:05:00"><cyclestr offset="-{{ extrn_mdl_lbcs_offset_hrs }}:00:00">{{ extrn_mdl_sysbasedir_lbcs }}/@y@j@H000{{ "%03d" % h }}</cyclestr></datadep>
{%- elif machine in ["HERA"] %}
<datadep age="00:00:05:00"><cyclestr offset="-{{ extrn_mdl_lbcs_offset_hrs }}:00:00">{{ extrn_mdl_sysbasedir_lbcs }}/gfs.@Y@m@d/@H/atmos/gfs.t@Hz.pgrb2.0p25.f{{ "%03d" % h }}</cyclestr></datadep>
<datadep age="00:00:05:00"><cyclestr offset="-{{ extrn_mdl_lbcs_offset_hrs }}:00:00">{{ extrn_mdl_sysbasedir_lbcs }}/@y@j@H000{{ "%03d" % h }}</cyclestr></datadep>
{%- endif %}
{%- endif %}
{%- endif %}
Expand Down