Skip to content

Commit

Permalink
fixed a bug in setting memo. (NOAA-EMC#485)
Browse files Browse the repository at this point in the history
add search in soil surgery to use real-time RAP/HRRR on JET.
check if radiance diag exist before use it for bias correction.
  • Loading branch information
hu5970 authored Feb 16, 2023
1 parent d04d8b3 commit 9aaa0a0
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
4 changes: 3 additions & 1 deletion scripts/exregional_run_analysis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,9 @@ if [ ${DO_RADDA} == "TRUE" ]; then

cp_vrfy ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${SAT_TIME}_satbias ./satbias_in
cp_vrfy ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${SAT_TIME}_satbias_pc ./satbias_pc
cp_vrfy ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${SAT_TIME}_radstat ./radstat.rrfs
if [ -r ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${SAT_TIME}_radstat ]; then
cp_vrfy ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${SAT_TIME}_radstat ./radstat.rrfs
fi

break
fi
Expand Down
9 changes: 9 additions & 0 deletions scripts/exregional_run_prepstart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -859,14 +859,23 @@ if [ ${cycle_type} == "spinup" ]; then
if [ -r ${raphrrr_com}/${YYYYMMDD}/rap.t${HH}z.wrf_inout_smoke ]; then
ln -s ${raphrrr_com}/${YYYYMMDD}/rap.t${HH}z.wrf_inout_smoke sfc_rap
rapfile='sfc_rap'
elif [ -r ${raphrrr_com}/rap/prod/rap.${YYYYMMDD}/rap.t${HH}z.wrf_inout_smoke ]; then
ln -s ${raphrrr_com}/rap/prod/rap.${YYYYMMDD}/rap.t${HH}z.wrf_inout_smoke sfc_rap
rapfile='sfc_rap'
fi
if [ -r ${raphrrr_com}/${YYYYMMDD}/hrrr.t${HH}z.wrf_inout ]; then
ln -s ${raphrrr_com}/${YYYYMMDD}/hrrr.t${HH}z.wrf_inout sfc_hrrr
hrrrfile='sfc_hrrr'
elif [ -r ${raphrrr_com}/hrrr/prod/hrrr.${YYYYMMDD}/conus/hrrr.t${HH}z.wrf_inout ]; then
ln -s ${raphrrr_com}/hrrr/prod/hrrr.${YYYYMMDD}/conus/hrrr.t${HH}z.wrf_inout sfc_hrrr
hrrrfile='sfc_hrrr'
fi
if [ -r ${raphrrr_com}/${YYYYMMDD}/hrrrak.t${HH}z.wrf_inout ]; then
ln -s ${raphrrr_com}/${YYYYMMDD}/hrrr.t${HH}z.wrf_inout sfc_hrrrak
hrrr_akfile='sfc_hrrrak'
elif [ -r ${raphrrr_com}/hrrr/prod/hrrr.${YYYYMMDD}/alaska/hrrrak.t${HH}z.wrf_inout ]; then
ln -s ${raphrrr_com}/hrrr/prod/hrrr.${YYYYMMDD}/alaska/hrrrak.t${HH}z.wrf_inout sfc_hrrrak
hrrr_akfile='sfc_hrrrak'
fi

cat << EOF > use_raphrrr_sfc.namelist
Expand Down
2 changes: 1 addition & 1 deletion ush/config.sh_rrfs_a_enkf_n3
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ DO_SMOKE_DUST="FALSE"

if [[ ${DO_ENSFCST} == "TRUE" ]] ; then
DO_SPINUP="FALSE"
DO_SAVE_DA_OUPUT="FALSE"
DO_SAVE_DA_OUTPUT="FALSE"
DO_NONVAR_CLDANAL="FALSE"
DO_POST_PROD="TRUE"
fi
Expand Down
2 changes: 1 addition & 1 deletion ush/config_defaults.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1822,7 +1822,7 @@ MEMO_RUN_JEDIENVAR_IODA="20G"
MEMO_PREP_CYC="40G"
MEMO_SAVE_RESTART="40G"
MEMO_SAVE_INPUT="40G"
MEMO_PROC_SMOKE="80"
MEMO_PROC_SMOKE="40G"
MEMO_SAVE_DA_OUTPUT="40G"
#
# Maximum number of attempts.
Expand Down
5 changes: 2 additions & 3 deletions ush/set_rrfs_config_general.sh
Original file line number Diff line number Diff line change
Expand Up @@ -390,12 +390,10 @@ if [[ ${PREDEF_GRID_NAME} == "RRFS_NA_3km" ]] ; then
MEMO_RUN_NONVARCLDANL="256G"
MEMO_PROC_SMOKE="256G"
MEMO_RUN_PREPSTART="120G"
MEMO_PREP_CYC="120G"
MEMO_PREP_CYC="40G"
MEMO_SAVE_RESTART="120G"
MEMO_SAVE_INPUT="120G"

WTIME_RUN_FCST="01:45:00"

START_TIME_SPINUP="01:10:00"
START_TIME_PROD="02:20:00"
START_TIME_LATE_ANALYSIS="01:40:00"
Expand All @@ -406,6 +404,7 @@ if [[ ${PREDEF_GRID_NAME} == "RRFS_NA_3km" ]] ; then
FV3GFS_FILE_FMT_LBCS="netcdf"

WTIME_RUN_FCST="02:30:00"
WTIME_RUN_FCST_LONG="04:30:00"
WTIME_MAKE_LBCS="02:30:00"

CLEAN_OLDRUN_HRS="24"
Expand Down

0 comments on commit 9aaa0a0

Please sign in to comment.