Skip to content

Commit

Permalink
Point to hourly GEFS data for the ensemble LBCs (NOAA-EMC#422)
Browse files Browse the repository at this point in the history
* Point to hourly GEFS data for the ensemble LBCs

* Update set_extrn_mdl_params.sh

Remove the hardcoded hourly GEFS data location in the previous commit and add the capability of user-defined EXTRN_MDL_SOURCE_BASEDIR_ICS and EXTRN_MDL_SOURCE_BASEDIR_LBCS for GEFS data on Jet, which can be defined in config.sh

* Update config.sh.RRFS_CONUS_3km_ens.2022HWT.CYCL

Define the location of the hourly GEFS data for the LBCs
  • Loading branch information
chunhuazhou authored Sep 16, 2022
1 parent e072e1b commit 6f247ae
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions ush/config.sh.RRFS_CONUS_3km_ens.2022HWT.CYCL
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ BOUNDARY_LEN_HRS="6"

# avaialble retro period:
# 20210511-20210531; 20210718-20210801
DATE_FIRST_CYCL="20220620"
DATE_LAST_CYCL="20220830"
DATE_FIRST_CYCL="20220901"
DATE_LAST_CYCL="20221031"
CYCL_HRS=( "00" "12" )
CYCL_HRS=( "18" )
CYCL_HRS_SPINSTART=("03" "15")
Expand All @@ -96,9 +96,9 @@ INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}1800 ${DATE_LAST_CYCL}2300 24:00:00"
BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}1800 ${DATE_LAST_CYCL}2300 24:00:00"
#PROD_CYCLEDEF="${DATE_FIRST_CYCL}2100 ${DATE_LAST_CYCL}2300 01:00:00"
#POSTPROC_CYCLEDEF="${DATE_FIRST_CYCL}2100 ${DATE_LAST_CYCL}2300 01:00:00"
PROD_CYCLEDEF="00 18-23 * 6-8 2022 *"
RECENTER_CYCLEDEF="00 19 * 6-8 2022 *"
POSTPROC_CYCLEDEF="00 18-23 * 6-8 2022 *"
PROD_CYCLEDEF="00 18-23 * 9-10 2022 *"
RECENTER_CYCLEDEF="00 19 * 9-10 2022 *"
POSTPROC_CYCLEDEF="00 18-23 * 9-10 2022 *"
#POSTPROC_LONG_CYCLEDEF="${DATE_FIRST_CYCL}0900 ${DATE_LAST_CYCL}2300 03:00:00"
ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}1500 ${DATE_LAST_CYCL}2300 24:00:00"
if [[ $DO_SPINUP == "TRUE" ]] ; then
Expand Down Expand Up @@ -159,7 +159,8 @@ WTIME_RUN_FCST="00:30:00"
WTIME_MAKE_LBCS="02:00:00"

EXTRN_MDL_NAME_ICS="GEFS"
EXTRN_MDL_NAME_LBCS="FV3GFS"
EXTRN_MDL_NAME_LBCS="GEFS"
EXTRN_MDL_SOURCE_BASEDIR_LBCS="/mnt/lfs4/BMC/wrfruc/RRFSE/data/gens"

FV3GFS_FILE_FMT_ICS="grib2"
FV3GFS_FILE_FMT_LBCS="grib2"
Expand Down
4 changes: 2 additions & 2 deletions ush/set_extrn_mdl_params.sh
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ else
EXTRN_MDL_SYSBASEDIR_ICS=""
;;
"JET")
EXTRN_MDL_SYSBASEDIR_ICS="/mnt/lfs4/BMC/public/data/grids/gens/pgrb2b"
EXTRN_MDL_SYSBASEDIR_ICS="${EXTRN_MDL_SOURCE_BASEDIR_ICS:-/mnt/lfs4/BMC/public/data/grids/gens/pgrb2b}"
;;
esac
;;
Expand Down Expand Up @@ -325,7 +325,7 @@ else
"GEFS")
case "$MACHINE" in
"JET")
EXTRN_MDL_SYSBASEDIR_LBCS="/mnt/lfs4/BMC/public/data/grids/gens/pgrb2b"
EXTRN_MDL_SYSBASEDIR_LBCS="${EXTRN_MDL_SOURCE_BASEDIR_LBCS:-/mnt/lfs4/BMC/public/data/grids/gens/pgrb2b}"
;;
esac
;;
Expand Down

0 comments on commit 6f247ae

Please sign in to comment.