Skip to content

Commit

Permalink
[production/RRFS.v1] Update DA task names in workflow, cleanup module…
Browse files Browse the repository at this point in the history
…files (#424)

* Update task names in workflow
* Fix for DA engineering test
---------
Co-authored-by: benjamin blake <[email protected]>
  • Loading branch information
BenjaminBlake-NOAA authored Jul 30, 2024
1 parent f2f6a9d commit 54a1523
Show file tree
Hide file tree
Showing 69 changed files with 689 additions and 710 deletions.
2 changes: 1 addition & 1 deletion jobs/JRRFS_RUN_ENKF → jobs/JRRFS_ANALYSIS_ENKF
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ cd ${DATA}
export pgmout="${DATA}/OUTPUT.$$"
env

$SCRIPTSdir/exrrfs_run_enkf.sh
$SCRIPTSdir/exrrfs_analysis_enkf.sh
export err=$?; err_chk

if [ -e "$pgmout" ]; then
Expand Down
2 changes: 1 addition & 1 deletion jobs/JRRFS_RUN_ANALYSIS → jobs/JRRFS_ANALYSIS_GSI
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ mkdir -p "${COMOUT}"
export pgmout="${DATA}/OUTPUT.$$"
env

$SCRIPTSdir/exrrfs_run_analysis.sh
$SCRIPTSdir/exrrfs_analysis_gsi.sh
export err=$?; err_chk

if [ -e "$pgmout" ]; then
Expand Down
2 changes: 1 addition & 1 deletion jobs/JRRFS_RUN_GSIDIAG → jobs/JRRFS_ANALYSIS_GSIDIAG
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ mkdir -p "${COMOUT}"
export pgmout="${DATA}/OUTPUT.$$"
env

$SCRIPTSdir/exrrfs_run_gsidiag.sh
$SCRIPTSdir/exrrfs_analysis_gsidiag.sh
export err=$?; err_chk

if [ -e "$pgmout" ]; then
Expand Down
2 changes: 1 addition & 1 deletion jobs/JRRFS_NONVARCLDANL → jobs/JRRFS_ANALYSIS_NONVARCLD
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ mkdir -p "${COMOUT}"
export pgmout="${DATA}/OUTPUT.$$"
env

$SCRIPTSdir/exrrfs_nonvarcldanl.sh
$SCRIPTSdir/exrrfs_analysis_nonvarcld.sh
export err=$?; err_chk

if [ -e "$pgmout" ]; then
Expand Down
6 changes: 3 additions & 3 deletions jobs/JRRFS_RUN_PREPSTART → jobs/JRRFS_PREP_CYC
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

#-----------------------------------------------------------------------
# RRFS Run Prepstart
# RRFS Prep Cyc
#-----------------------------------------------------------------------

#-----------------------------------------------------------------------
Expand Down Expand Up @@ -40,7 +40,7 @@ print_info_msg "
Entering script: \"${scrfunc_fn}\"
In directory: \"${scrfunc_dir}\"
This is the J-job script for the prepstart tasks for the specified cycle.
This is the J-job script for the prep_cyc tasks for the specified cycle.
========================================================================"

#-----------------------------------------------------------------------
Expand Down Expand Up @@ -99,7 +99,7 @@ mkdir -p "${COMOUT}"
export pgmout="${INPUT_DATA}/OUTPUT.$$"
env

$SCRIPTSdir/exrrfs_run_prepstart.sh
$SCRIPTSdir/exrrfs_prep_cyc.sh
export err=$?; err_chk

if [ -e "$pgmout" ]; then
Expand Down
12 changes: 6 additions & 6 deletions jobs/JRRFS_PROCESS_GLMFED → jobs/JRRFS_PROCESS_LIGHTNING
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ print_info_msg "
Entering script: \"${scrfunc_fn}\"
In directory: \"${scrfunc_dir}\"
This is the J-job script for the task that runs a GLM FED
This is the J-job script for the task that runs a GLM FED lightning
preprocess with RRFS for the specified cycle.
========================================================================"

Expand All @@ -51,15 +51,15 @@ export RUN=${RUN:-rrfs}

if [ ${CYCLE_TYPE} == "spinup" ]; then
if [ ${DO_ENSEMBLE} = TRUE ]; then
export jobid=${RUN}_process_glmfed_enkf_spinup_${envir}_${cyc}
export jobid=${RUN}_process_lightning_enkf_spinup_${envir}_${cyc}
else
export jobid=${RUN}_process_glmfed_spinup_${envir}_${cyc}
export jobid=${RUN}_process_lightning_spinup_${envir}_${cyc}
fi
else
if [ ${DO_ENSEMBLE} = TRUE ]; then
export jobid=${RUN}_process_glmfed_enkf_${envir}_${cyc}
export jobid=${RUN}_process_lightning_enkf_${envir}_${cyc}
else
export jobid=${RUN}_process_glmfed_${envir}_${cyc}
export jobid=${RUN}_process_lightning_${envir}_${cyc}
fi
fi

Expand All @@ -82,7 +82,7 @@ export MODE=$GLMFED_DATA_MODE
export pgmout="${DATA}/OUTPUT.$$"
env

python -u ${SCRIPTSdir}/exrrfs_process_glmfed.py
python -u ${SCRIPTSdir}/exrrfs_process_lightning.py
export err=$?; err_chk

if [ -e "$pgmout" ]; then
Expand Down
10 changes: 5 additions & 5 deletions jobs/JRRFS_PROCESS_RADARREF → jobs/JRRFS_PROCESS_RADAR
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ export envir=${envir:-prod}
export RUN=${RUN:-rrfs}

if [ "${CYCLE_TYPE}" = "spinup" ]; then
export jobid=${RUN}_process_radarref_spinup_${envir}_${cyc}
export jobid=${RUN}_process_radar_spinup_${envir}_${cyc}
if [ "${DO_ENSEMBLE}" = "TRUE" ]; then
export jobid=${RUN}_process_radarref_spinup_enkf_${envir}_${cyc}
export jobid=${RUN}_process_radar_spinup_enkf_${envir}_${cyc}
fi
else
export jobid=${RUN}_process_radarref_${envir}_${cyc}
export jobid=${RUN}_process_radar_${envir}_${cyc}
if [ "${DO_ENSEMBLE}" = "TRUE" ]; then
export jobid=${RUN}_process_radarref_enkf_${envir}_${cyc}
export jobid=${RUN}_process_radar_enkf_${envir}_${cyc}
fi
fi

Expand Down Expand Up @@ -88,7 +88,7 @@ mkdir -p "${COMOUT}"
export pgmout="${DATA}/OUTPUT.$$"
env

$SCRIPTSdir/exrrfs_process_radarref.sh
$SCRIPTSdir/exrrfs_process_radar.sh
export err=$?; err_chk

if [ -e "$pgmout" ]; then
Expand Down
2 changes: 1 addition & 1 deletion jobs/JRRFS_RUN_RECENTER → jobs/JRRFS_RECENTER
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ fi
export pgmout="${DATA}/OUTPUT.$$"
env

$SCRIPTSdir/exrrfs_run_recenter.sh
$SCRIPTSdir/exrrfs_recenter.sh
export err=$?; err_chk

if [ -e "$pgmout" ]; then
Expand Down
4 changes: 2 additions & 2 deletions jobs/JRRFS_RUN_POSTANAL → jobs/JRRFS_UPDATE_LBC_SOIL
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

#-----------------------------------------------------------------------
# RRFS Post Analysis
# RRFS Update LBC & Soil
#-----------------------------------------------------------------------

#-----------------------------------------------------------------------
Expand Down Expand Up @@ -118,7 +118,7 @@ mkdir -p "${COMOUT}"
export pgmout="${DATA}/OUTPUT.$$"
env

$SCRIPTSdir/exrrfs_run_postanal.sh
$SCRIPTSdir/exrrfs_update_lbc_soil.sh
export err=$?; err_chk

if [ -e "$pgmout" ]; then
Expand Down
File renamed without changes.
2 changes: 0 additions & 2 deletions modulefiles/tasks/hera/get_extrn_ics.local.lua

This file was deleted.

2 changes: 0 additions & 2 deletions modulefiles/tasks/hera/get_extrn_lbcs.local.lua

This file was deleted.

4 changes: 0 additions & 4 deletions modulefiles/tasks/hera/run_graphics.local.lua

This file was deleted.

9 changes: 0 additions & 9 deletions modulefiles/tasks/hera/run_vx.local.lua

This file was deleted.

File renamed without changes.
2 changes: 0 additions & 2 deletions modulefiles/tasks/jet/get_extrn_ics.local.lua

This file was deleted.

2 changes: 0 additions & 2 deletions modulefiles/tasks/jet/get_extrn_lbcs.local.lua

This file was deleted.

File renamed without changes.
4 changes: 0 additions & 4 deletions modulefiles/tasks/jet/run_enspost.local.lua

This file was deleted.

4 changes: 0 additions & 4 deletions modulefiles/tasks/jet/run_graphics.local.lua

This file was deleted.

1 change: 0 additions & 1 deletion modulefiles/tasks/jet/run_vx.local.lua

This file was deleted.

19 changes: 0 additions & 19 deletions modulefiles/tasks/wcoss2/add_aerosol.local.lua

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 0 additions & 6 deletions modulefiles/tasks/wcoss2/run_vx.local.lua

This file was deleted.

Loading

0 comments on commit 54a1523

Please sign in to comment.