Skip to content
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

[ens_design_RRFS] Verification changes to split into gen-ens-prod and ensemble-stat #739

42 changes: 31 additions & 11 deletions scripts/exregional_run_ensgridvx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ NUM_PAD=${NDIGITS_ENSMEM_NAMES}
#

if [ ${VAR} == "APCP" ]; then
LOG_SUFFIX=ensgrid_${CDATE}_${VAR}_${ACCUM}h
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am sure there is a good reason, but just curious whey the ensgrid went away here and two lines below?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good question -- since we run gen-ens-prod and ensemble-stat via exregional_run_ensgridvx.sh, I changed the log suffix logic. Now in the gen-ens-prod METplus conf files, I added gep_ to the LOG_SUFFIX and in ensmeble-stat, I added es_ to the LOG_SUFFIX in gen-ens-prod.

LOG_SUFFIX=${CDATE}_${VAR}_${ACCUM}h
else
LOG_SUFFIX=ensgrid_${CDATE}_${VAR}
LOG_SUFFIX=${CDATE}_${VAR}
fi

#
Expand Down Expand Up @@ -144,15 +144,35 @@ export LOG_SUFFIX
#
#-----------------------------------------------------------------------
#
if [ ${VAR} == "APCP" ]; then
acc="${ACCUM}h" # for stats output prefix in EnsembleStatConfig
${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/EnsembleStat_${VAR}${acc}.conf
else
${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/EnsembleStat_${VAR}.conf

if [ "${RUN_GEN_ENS_PROD}" = "TRUE" ]; then

if [ ${VAR} == "APCP" ]; then
acc="${ACCUM}h"
${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/GenEnsProd_${VAR}${acc}.conf
else
${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/GenEnsProd_${VAR}.conf
fi

fi

if [ "${RUN_ENSEMBLE_STAT}" = "TRUE" ]; then

if [ ${VAR} == "APCP" ]; then
acc="${ACCUM}h" # for stats output prefix in EnsembleStatConfig
${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/EnsembleStat_${VAR}${acc}.conf
else
${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/EnsembleStat_${VAR}.conf
fi

fi

#
Expand Down
2 changes: 1 addition & 1 deletion scripts/exregional_run_ensgridvx_mean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export fhr_list
#
#-----------------------------------------------------------------------
#
INPUT_BASE=${EXPTDIR}/${CDATE}/metprd/ensemble_stat
INPUT_BASE=${EXPTDIR}/${CDATE}/metprd/gen_ens_prod

if [ ${VAR} == "APCP" ]; then
LOG_SUFFIX=ensgrid_mean_${CDATE}_${VAR}_${ACCUM}h
Expand Down
2 changes: 1 addition & 1 deletion scripts/exregional_run_ensgridvx_prob.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export fhr_list
#
#-----------------------------------------------------------------------
#
INPUT_BASE=${EXPTDIR}/${CDATE}/metprd/ensemble_stat
INPUT_BASE=${EXPTDIR}/${CDATE}/metprd/gen_ens_prod

if [ ${VAR} == "APCP" ]; then
LOG_SUFFIX=ensgrid_prob_${CDATE}_${VAR}_${ACCUM}h
Expand Down
30 changes: 23 additions & 7 deletions scripts/exregional_run_enspointvx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export fhr_list
#
#-----------------------------------------------------------------------
#
LOG_SUFFIX=enspoint_${CDATE}
LOG_SUFFIX=${CDATE}

#
#-----------------------------------------------------------------------
Expand Down Expand Up @@ -137,13 +137,29 @@ export MODEL
export NET
export NUM_ENS_MEMBERS

${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/EnsembleStat_conus_sfc.conf
if [ "${RUN_GEN_ENS_PROD}" = "TRUE" ]; then

${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/EnsembleStat_upper_air.conf
${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/GenEnsProd_conus_sfc.conf

${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/GenEnsProd_upper_air.conf

fi

if [ "${RUN_ENSEMBLE_STAT}" = "TRUE" ]; then

${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/EnsembleStat_conus_sfc.conf

${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/EnsembleStat_upper_air.conf

fi

#
#-----------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion scripts/exregional_run_enspointvx_mean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export fhr_list
#
#-----------------------------------------------------------------------
#
INPUT_BASE=${EXPTDIR}/${CDATE}/metprd/ensemble_stat
INPUT_BASE=${EXPTDIR}/${CDATE}/metprd/gen_ens_prod
LOG_SUFFIX=enspoint_mean_${CDATE}

#
Expand Down
2 changes: 1 addition & 1 deletion scripts/exregional_run_enspointvx_prob.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export fhr_list
#
#-----------------------------------------------------------------------
#
INPUT_BASE=${EXPTDIR}/${CDATE}/metprd/ensemble_stat
INPUT_BASE=${EXPTDIR}/${CDATE}/metprd/gen_ens_prod
LOG_SUFFIX=enspoint_prob_${CDATE}

#
Expand Down
12 changes: 11 additions & 1 deletion ush/config_defaults.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1337,13 +1337,20 @@ VX_ENSPOINT_PROB_TN="run_enspointvx_prob"
#
# RUN_TASK_VX_ENSGRID:
# Flag that determines whether the ensemble-stat verification for gridded
# data task is to be run.
# data task is to be run.
#
# RUN_TASK_VX_ENSPOINT:
# Flag that determines whether the ensemble point verification task is
# to be run. If this flag is set, both ensemble-stat point verification
# and point verification of ensemble-stat output is computed.
#
# RUN_GEN_ENS_PROD:
# Flag that determines whether the gen-ens-prod verification subtask is
# to be run in the VX_ENSGRID and VX_ENSPOINT tasks.
#
# RUN_ENSEMBLE_STAT:
# Flag that determines whether the ensemble-stat verification subtask is
# to be run in the VX_ENSGRID and VX_ENSPOINT tasks.
#-----------------------------------------------------------------------
#
RUN_TASK_MAKE_GRID="TRUE"
Expand All @@ -1369,6 +1376,9 @@ RUN_TASK_VX_GRIDSTAT="FALSE"
RUN_TASK_VX_POINTSTAT="FALSE"
RUN_TASK_VX_ENSGRID="FALSE"
RUN_TASK_VX_ENSPOINT="FALSE"

RUN_GEN_ENS_PROD="FALSE"
RUN_ENSEMBLE_STAT="FALSE"
#
#-----------------------------------------------------------------------
#
Expand Down
2 changes: 2 additions & 0 deletions ush/generate_FV3LAM_wflow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,8 @@ file (template_xml_fp):
'run_task_vx_pointstat': ${RUN_TASK_VX_POINTSTAT}
'run_task_vx_ensgrid': ${RUN_TASK_VX_ENSGRID}
'run_task_vx_enspoint': ${RUN_TASK_VX_ENSPOINT}
'run_gen_ens_prod': ${RUN_GEN_ENS_PROD}
'run_ensemble_stat': ${RUN_ENSEMBLE_STAT}
#
# Number of physical cores per node for the current machine.
#
Expand Down
34 changes: 8 additions & 26 deletions ush/templates/parm/metplus/EnsembleStat_APCP01h.conf
Original file line number Diff line number Diff line change
Expand Up @@ -79,17 +79,6 @@ ENSEMBLE_STAT_REGRID_SHAPE = SQUARE
ENSEMBLE_STAT_CENSOR_THRESH =
ENSEMBLE_STAT_CENSOR_VAL =

#ENSEMBLE_STAT_NBRHD_PROB_WIDTH = 5
#ENSEMBLE_STAT_NBRHD_PROB_SHAPE = CIRCLE
#ENSEMBLE_STAT_NBRHD_PROB_VLD_THRESH = 0.0

#ENSEMBLE_STAT_NMEP_SMOOTH_VLD_THRESH = 0.0
#ENSEMBLE_STAT_NMEP_SMOOTH_SHAPE = CIRCLE
#ENSEMBLE_STAT_NMEP_SMOOTH_GAUSSIAN_DX = 81.27
#ENSEMBLE_STAT_NMEP_SMOOTH_GAUSSIAN_RADIUS = 120
#ENSEMBLE_STAT_NMEP_SMOOTH_METHOD = GAUSSIAN
#ENSEMBLE_STAT_NMEP_SMOOTH_WIDTH = 1

ENSEMBLE_STAT_MESSAGE_TYPE =

ENSEMBLE_STAT_DUPLICATE_FLAG = UNIQUE
Expand Down Expand Up @@ -125,7 +114,7 @@ ENSEMBLE_STAT_ENS_PHIST_BIN_SIZE = 0.05

ENSEMBLE_STAT_CLIMO_CDF_BINS = 1
ENSEMBLE_STAT_CLIMO_CDF_CENTER_BINS = False
ENSEMBLE_STAT_CLIMO_CDF_WRITE_BINS = True
ENSEMBLE_STAT_CLIMO_CDF_WRITE_BINS = False

ENSEMBLE_STAT_MASK_GRID =

Expand All @@ -145,28 +134,21 @@ ENSEMBLE_STAT_OUTPUT_FLAG_ORANK = STAT
ENSEMBLE_STAT_OUTPUT_FLAG_SSVAR = STAT
ENSEMBLE_STAT_OUTPUT_FLAG_RELP = STAT

ENSEMBLE_STAT_ENSEMBLE_FLAG_LATLON = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_MEAN = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_STDEV = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_LATLON = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_MEAN = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_STDEV = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_MINUS = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_PLUS = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_MIN = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_MAX = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_RANGE = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_VLD_COUNT = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_FREQUENCY = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_VLD_COUNT = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_FREQUENCY = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_NEP = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_NMEP = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_RANK = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_RANK = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_WEIGHT = FALSE

# Ensemble Variables and levels as specified in the ens field dictionary
# of the MET configuration file. Specify as ENS_VARn_NAME, ENS_VARn_LEVELS,
# (optional) ENS_VARn_OPTION
ENS_VAR1_NAME = APCP
ENS_VAR1_LEVELS = A01
ENS_VAR1_THRESH = gt0.0,ge0.254,ge0.508,ge2.54

# Forecast Variables and levels as specified in the fcst field dictionary
# of the MET configuration file. Specify as FCST_VARn_NAME, FCST_VARn_LEVELS,
# (optional) FCST_VARn_OPTION
Expand Down Expand Up @@ -244,7 +226,7 @@ ENSEMBLE_STAT_CLIMO_STDEV_INPUT_TEMPLATE =
ENSEMBLE_STAT_OUTPUT_TEMPLATE = {init?fmt=%Y%m%d%H}/metprd/ensemble_stat

# Specify the name of the metplus.log file
LOG_METPLUS = {LOG_DIR}/metplus.log.{ENV[LOG_SUFFIX]}
LOG_METPLUS = {LOG_DIR}/metplus.log.es_{ENV[LOG_SUFFIX]}

# Specify where the location and name of the final metplus_final.conf
METPLUS_CONF={OUTPUT_BASE}/{ENV[CDATE]}/metprd/ensemble_stat/metplus_final.ensgrid_APCP_01h.conf
Expand Down
34 changes: 8 additions & 26 deletions ush/templates/parm/metplus/EnsembleStat_APCP03h.conf
Original file line number Diff line number Diff line change
Expand Up @@ -109,17 +109,6 @@ ENSEMBLE_STAT_REGRID_SHAPE = SQUARE
ENSEMBLE_STAT_CENSOR_THRESH =
ENSEMBLE_STAT_CENSOR_VAL =

#ENSEMBLE_STAT_NBRHD_PROB_WIDTH = 5
#ENSEMBLE_STAT_NBRHD_PROB_SHAPE = CIRCLE
#ENSEMBLE_STAT_NBRHD_PROB_VLD_THRESH = 0.0

#ENSEMBLE_STAT_NMEP_SMOOTH_VLD_THRESH = 0.0
#ENSEMBLE_STAT_NMEP_SMOOTH_SHAPE = CIRCLE
#ENSEMBLE_STAT_NMEP_SMOOTH_GAUSSIAN_DX = 81.27
#ENSEMBLE_STAT_NMEP_SMOOTH_GAUSSIAN_RADIUS = 120
#ENSEMBLE_STAT_NMEP_SMOOTH_METHOD = GAUSSIAN
#ENSEMBLE_STAT_NMEP_SMOOTH_WIDTH = 1

ENSEMBLE_STAT_MESSAGE_TYPE =

ENSEMBLE_STAT_DUPLICATE_FLAG = UNIQUE
Expand Down Expand Up @@ -155,7 +144,7 @@ ENSEMBLE_STAT_ENS_PHIST_BIN_SIZE = 0.05

ENSEMBLE_STAT_CLIMO_CDF_BINS = 1
ENSEMBLE_STAT_CLIMO_CDF_CENTER_BINS = False
ENSEMBLE_STAT_CLIMO_CDF_WRITE_BINS = True
ENSEMBLE_STAT_CLIMO_CDF_WRITE_BINS = False

ENSEMBLE_STAT_MASK_GRID =

Expand All @@ -175,28 +164,21 @@ ENSEMBLE_STAT_OUTPUT_FLAG_ORANK = STAT
ENSEMBLE_STAT_OUTPUT_FLAG_SSVAR = STAT
ENSEMBLE_STAT_OUTPUT_FLAG_RELP = STAT

ENSEMBLE_STAT_ENSEMBLE_FLAG_LATLON = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_MEAN = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_STDEV = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_LATLON = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_MEAN = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_STDEV = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_MINUS = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_PLUS = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_MIN = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_MAX = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_RANGE = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_VLD_COUNT = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_FREQUENCY = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_VLD_COUNT = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_FREQUENCY = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_NEP = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_NMEP = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_RANK = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_RANK = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_WEIGHT = FALSE

# Ensemble Variables and levels as specified in the ens field dictionary
# of the MET configuration file. Specify as ENS_VARn_NAME, ENS_VARn_LEVELS,
# (optional) ENS_VARn_OPTION
ENS_VAR1_NAME = APCP
ENS_VAR1_LEVELS = A03
ENS_VAR1_THRESH = gt0.0,ge0.508,ge2.54,ge6.350

# Forecast Variables and levels as specified in the fcst field dictionary
# of the MET configuration file. Specify as FCST_VARn_NAME, FCST_VARn_LEVELS,
# (optional) FCST_VARn_OPTION
Expand Down Expand Up @@ -289,7 +271,7 @@ ENSEMBLE_STAT_CLIMO_STDEV_INPUT_TEMPLATE =
ENSEMBLE_STAT_OUTPUT_TEMPLATE = {init?fmt=%Y%m%d%H}/metprd/ensemble_stat

# Specify the name of the metplus.log file
LOG_METPLUS = {LOG_DIR}/metplus.log.{ENV[LOG_SUFFIX]}
LOG_METPLUS = {LOG_DIR}/metplus.log.es_{ENV[LOG_SUFFIX]}

# Specify where the location and name of the final metplus_final.conf
METPLUS_CONF={OUTPUT_BASE}/{ENV[CDATE]}/metprd/ensemble_stat/metplus_final.ensgrid_APCP_03h.conf
Expand Down
27 changes: 8 additions & 19 deletions ush/templates/parm/metplus/EnsembleStat_APCP06h.conf
Original file line number Diff line number Diff line change
Expand Up @@ -109,17 +109,6 @@ ENSEMBLE_STAT_REGRID_SHAPE = SQUARE
ENSEMBLE_STAT_CENSOR_THRESH =
ENSEMBLE_STAT_CENSOR_VAL =

#ENSEMBLE_STAT_NBRHD_PROB_WIDTH = 5
#ENSEMBLE_STAT_NBRHD_PROB_SHAPE = CIRCLE
#ENSEMBLE_STAT_NBRHD_PROB_VLD_THRESH = 0.0

#ENSEMBLE_STAT_NMEP_SMOOTH_VLD_THRESH = 0.0
#ENSEMBLE_STAT_NMEP_SMOOTH_SHAPE = CIRCLE
#ENSEMBLE_STAT_NMEP_SMOOTH_GAUSSIAN_DX = 81.27
#ENSEMBLE_STAT_NMEP_SMOOTH_GAUSSIAN_RADIUS = 120
#ENSEMBLE_STAT_NMEP_SMOOTH_METHOD = GAUSSIAN
#ENSEMBLE_STAT_NMEP_SMOOTH_WIDTH = 1

ENSEMBLE_STAT_MESSAGE_TYPE =

ENSEMBLE_STAT_DUPLICATE_FLAG = UNIQUE
Expand Down Expand Up @@ -175,19 +164,19 @@ ENSEMBLE_STAT_OUTPUT_FLAG_ORANK = STAT
ENSEMBLE_STAT_OUTPUT_FLAG_SSVAR = STAT
ENSEMBLE_STAT_OUTPUT_FLAG_RELP = STAT

ENSEMBLE_STAT_ENSEMBLE_FLAG_LATLON = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_MEAN = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_STDEV = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_LATLON = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_MEAN = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_STDEV = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_MINUS = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_PLUS = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_MIN = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_MAX = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_RANGE = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_VLD_COUNT = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_FREQUENCY = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_VLD_COUNT = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_FREQUENCY = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_NEP = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_NMEP = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_RANK = TRUE
ENSEMBLE_STAT_ENSEMBLE_FLAG_RANK = FALSE
ENSEMBLE_STAT_ENSEMBLE_FLAG_WEIGHT = FALSE

# Ensemble Variables and levels as specified in the ens field dictionary
Expand Down Expand Up @@ -252,7 +241,7 @@ ENSEMBLE_STAT_OUTPUT_DIR = {OUTPUT_BASE}
LOG_DIR = {OUTPUT_BASE}/log

# directory for staging data
STAGING_DIR = {OUTPUT_BASE}/stage/APCP_01
STAGING_DIR = {OUTPUT_BASE}/stage/APCP_06


[filename_templates]
Expand Down Expand Up @@ -290,7 +279,7 @@ ENSEMBLE_STAT_CLIMO_STDEV_INPUT_TEMPLATE =
ENSEMBLE_STAT_OUTPUT_TEMPLATE = {init?fmt=%Y%m%d%H}/metprd/ensemble_stat

# Specify the name of the metplus.log file
LOG_METPLUS = {LOG_DIR}/metplus.log.{ENV[LOG_SUFFIX]}
LOG_METPLUS = {LOG_DIR}/metplus.log.es_{ENV[LOG_SUFFIX]}

# Specify where the location and name of the final metplus_final.conf
METPLUS_CONF={OUTPUT_BASE}/{ENV[CDATE]}/metprd/ensemble_stat/metplus_final.ensgrid_APCP_06h.conf
Expand Down
Loading