forked from NOAA-GSL/UPP
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update code for RRFS_A v0.3.8 on wocss2: 1. Use ens_mean_recenter_P2DIO.exe for receneter and ensmean (parallel IO through levels) 2. change clean hours: save 5 days of the prodcut but purgen run directory in 12-h 3. Use 6 nodes to run ensemble DA: it take about 10 mintues to finish 4. Turn on SPP in ensembnle forecast 5. Use "FV3LAM_wflow_enkf.log" for ensemble DA and forecast 6. remov "-l" from launch_FV3LAM_wflow.sh * Update code for rrfs_b on JET: 1) add HPSS_ACCOUNT 2) add configure for RRFS_B real-time run --------- Co-authored-by: ming hu <[email protected]>
- Loading branch information
Showing
10 changed files
with
196 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
MACHINE="jet" | ||
version="v0.3.6" | ||
ACCOUNT="nrtrr" | ||
RESERVATION="rrfsdet" | ||
EXPT_BASEDIR="/home/rtrr/RRFS/rrfs.${version}" | ||
EXPT_SUBDIR="RRFS_CONUS_3km" | ||
|
||
PREDEF_GRID_NAME=RRFS_CONUS_3km | ||
. set_rrfs_config_general.sh | ||
|
||
DO_DACYCLE="TRUE" | ||
DO_SURFACE_CYCLE="TRUE" | ||
DO_SPINUP="TRUE" | ||
DO_POST_SPINUP="FALSE" | ||
DO_POST_PROD="TRUE" | ||
DO_RETRO="FALSE" | ||
DO_NONVAR_CLDANAL="TRUE" | ||
DO_ENVAR_RADAR_REF="FALSE" | ||
DO_SMOKE_DUST="TRUE" | ||
DO_REFL2TTEN="FALSE" | ||
RADARREFL_TIMELEVEL=(0) | ||
FH_DFI_RADAR="0.0,0.25,0.5" | ||
DO_SOIL_ADJUST="TRUE" | ||
DO_RADDA="TRUE" | ||
DO_BUFRSND="FALSE" | ||
|
||
EXTRN_MDL_ICS_OFFSET_HRS="3" | ||
LBC_SPEC_INTVL_HRS="1" | ||
EXTRN_MDL_LBCS_OFFSET_HRS="6" | ||
BOUNDARY_LEN_HRS="18" | ||
BOUNDARY_PROC_GROUP_NUM="3" | ||
|
||
# avaialble retro period: | ||
# 20210511-20210531; 20210718-20210801 | ||
DATE_FIRST_CYCL="20230201" | ||
DATE_LAST_CYCL="20230331" | ||
CYCL_HRS=( "00" "12" ) | ||
CYCL_HRS_SPINSTART=("03" "15") | ||
CYCL_HRS_PRODSTART=("09" "21") | ||
CYCLEMONTH="02,03" | ||
CYCLEDAY="*" | ||
|
||
STARTYEAR=${DATE_FIRST_CYCL:0:4} | ||
STARTMONTH=${DATE_FIRST_CYCL:4:2} | ||
STARTDAY=${DATE_FIRST_CYCL:6:2} | ||
STARTHOUR="00" | ||
ENDYEAR=${DATE_LAST_CYCL:0:4} | ||
ENDMONTH=${DATE_LAST_CYCL:4:2} | ||
ENDDAY=${DATE_LAST_CYCL:6:2} | ||
ENDHOUR="23" | ||
|
||
PREEXISTING_DIR_METHOD="upgrade" # "rename" | ||
INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 12:00:00" | ||
BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" | ||
PROD_CYCLEDEF="00 01-11,13-23 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" | ||
PRODLONG_CYCLEDEF="00 00,12 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" | ||
ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}1400 ${DATE_LAST_CYCL}2300 24:00:00" | ||
if [[ $DO_SPINUP == "TRUE" ]] ; then | ||
SPINUP_CYCLEDEF="00 03-08,15-20 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" | ||
fi | ||
|
||
FCST_LEN_HRS="3" | ||
FCST_LEN_HRS_SPINUP="1" | ||
POSTPROC_LEN_HRS="3" | ||
POSTPROC_LONG_LEN_HRS="12" | ||
#FCST_LEN_HRS_CYCLES=(48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18) | ||
for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=3; done | ||
for i in {0..23..12}; do FCST_LEN_HRS_CYCLES[$i]=12; done | ||
DA_CYCLE_INTERV="1" | ||
RESTART_INTERVAL="1 2 3" | ||
RESTART_INTERVAL_LONG="1 2 3 4" | ||
|
||
USE_RRFSE_ENS="FALSE" | ||
CYCL_HRS_HYB_FV3LAM_ENS=("19" "20" "21" "22" "23" "00") | ||
|
||
SST_update_hour=01 | ||
GVF_update_hour=04 | ||
SNOWICE_update_hour=00 | ||
netcdf_diag=.true. | ||
binary_diag=.false. | ||
|
||
regional_ensemble_option=1 | ||
|
||
WTIME_RUN_FCST="00:45:00" | ||
WTIME_RUN_FCST_LONG="03:45:00" | ||
WTIME_MAKE_LBCS="02:00:00" | ||
WTIME_RUN_ANAL="00:50:00" | ||
WTIME_RUN_PREPSTART="00:20:00" | ||
|
||
EXTRN_MDL_NAME_ICS="FV3GFS" | ||
EXTRN_MDL_NAME_LBCS="FV3GFS" | ||
|
||
NET="RRFS_CONUS" | ||
TAG="RRFS_CONUS_3km" | ||
|
||
ARCHIVEDIR="/1year/BMC/wrfruc/rrfs_b" | ||
NCL_REGION="conus" | ||
MODEL="RRFS_B" | ||
|
||
RUN="RRFS_conus_3km" | ||
|
||
. set_rrfs_config.sh | ||
|
||
STMP="/lfs4/BMC/nrtrr/NCO_dirs/${version}/stmp" # Path to directory STMP that mostly contains input files. | ||
PTMP="/lfs4/BMC/nrtrr/NCO_dirs/${version}/com" # Path to directory STMP that mostly contains input files. | ||
NWGES="/lfs4/BMC/nrtrr/NCO_dirs/${version}/nwges/${envir}/${NET}" # Path to directory NWGES that save boundary, cold initial, restart files | ||
if [[ ${regional_ensemble_option} == "5" ]]; then | ||
RRFSE_NWGES="/lfs4/BMC/wrfruc/RRFSE/NCO_dirs/${version}" # Path to RRFSE directory NWGES that mostly contains ensemble restart files for GSI hybrid. | ||
NUM_ENS_MEMBERS=30 # FV3LAM ensemble size for GSI hybrid analysis | ||
CYCL_HRS_PRODSTART_ENS=( "07" "19" ) | ||
DO_ENVAR_RADAR_REF="TRUE" | ||
fi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash -l | ||
#!/bin/bash | ||
|
||
# | ||
#----------------------------------------------------------------------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.