Skip to content

Commit

Permalink
Convert verification to solely use METplus configuration files (featu…
Browse files Browse the repository at this point in the history
…re/ens_design_RRFS) (#695)

* Create feature/ens_design_RRFS branch and move original MET and METplua files to hold dirs.

* Updated METplus conf files to remove dependency on project-based MET configs.

* Updates to METplus conf files and run scripts for transitioning away from user-provided MET config files.

* Removed MET configuration files; changed envar ACCUM back to acc in several GridStat conf files.

* Removed old METplus conf files and removed OBS PROB info from Grid-Stat METplus conf files.
  • Loading branch information
michelleharrold committed Mar 22, 2022
1 parent 4398f89 commit 6bbecfb
Show file tree
Hide file tree
Showing 62 changed files with 7,182 additions and 5,341 deletions.
4 changes: 2 additions & 2 deletions scripts/exregional_run_ensgridvx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,11 @@ export LOG_SUFFIX
#
if [ ${VAR} == "APCP" ]; then
acc="${ACCUM}h" # for stats output prefix in EnsembleStatConfig
${METPLUS_PATH}/ush/master_metplus.py \
${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/EnsembleStat_${VAR}${acc}.conf
else
${METPLUS_PATH}/ush/master_metplus.py \
${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/EnsembleStat_${VAR}.conf
fi
Expand Down
4 changes: 2 additions & 2 deletions scripts/exregional_run_ensgridvx_mean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,11 @@ export LOG_SUFFIX
#
if [ ${VAR} == "APCP" ]; then
export acc="${ACCUM}h"
${METPLUS_PATH}/ush/master_metplus.py \
${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/GridStat_${VAR}${acc}_mean.conf
else
${METPLUS_PATH}/ush/master_metplus.py \
${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/GridStat_${VAR}_mean.conf
fi
Expand Down
4 changes: 2 additions & 2 deletions scripts/exregional_run_ensgridvx_prob.sh
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,11 @@ export LOG_SUFFIX
#
if [ ${VAR} == "APCP" ]; then
export acc="${ACCUM}h"
${METPLUS_PATH}/ush/master_metplus.py \
${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/GridStat_${VAR}${acc}_prob.conf
else
${METPLUS_PATH}/ush/master_metplus.py \
${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/GridStat_${VAR}_prob.conf
fi
Expand Down
4 changes: 2 additions & 2 deletions scripts/exregional_run_enspointvx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,11 @@ export MODEL
export NET
export NUM_ENS_MEMBERS

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

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

Expand Down
4 changes: 2 additions & 2 deletions scripts/exregional_run_enspointvx_mean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,11 @@ export MET_CONFIG
export MODEL
export NET

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

${METPLUS_PATH}/ush/master_metplus.py \
${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/PointStat_upper_air_mean.conf
#
Expand Down
4 changes: 2 additions & 2 deletions scripts/exregional_run_enspointvx_prob.sh
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,11 @@ export MET_CONFIG
export MODEL
export NET

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

${METPLUS_PATH}/ush/master_metplus.py \
${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/PointStat_upper_air_prob.conf
#
Expand Down
8 changes: 4 additions & 4 deletions scripts/exregional_run_gridstatvx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -160,13 +160,13 @@ export NET
#
if [ ${VAR} == "APCP" ]; then
export acc="${ACCUM}h" # for stats output prefix in GridStatConfig
${METPLUS_PATH}/ush/master_metplus.py \
${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/${VAR}_${acc}.conf
-c ${METPLUS_CONF}/GridStat_${VAR}${acc}.conf
else
${METPLUS_PATH}/ush/master_metplus.py \
${METPLUS_PATH}/ush/run_metplus.py \
-c ${METPLUS_CONF}/common.conf \
-c ${METPLUS_CONF}/${VAR}.conf
-c ${METPLUS_CONF}/GridStat_${VAR}.conf
fi

#
Expand Down
4 changes: 2 additions & 2 deletions scripts/exregional_run_pointstatvx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,11 @@ export MET_CONFIG
export MODEL
export NET

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

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

Expand Down
Loading

0 comments on commit 6bbecfb

Please sign in to comment.