Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions dev/parm/config/gcafs/config.base.j2
Original file line number Diff line number Diff line change
Expand Up @@ -497,15 +497,17 @@ export CLIENT_GLOBUS_UUID="{{ CLIENT_GLOBUS_UUID }}"

# The monitor jobs are not yet supported for JEDIATMVAR.
if [[ "${DO_JEDIATMVAR}" = "YES" ]]; then
export DO_FIT2OBS="NO" # Run fit to observations package
export DO_VERFOZN="NO" # Ozone data assimilation monitoring
export DO_VERFRAD="NO" # Radiance data assimilation monitoring
export DO_VMINMON="NO" # GSI minimization monitoring
export DO_ANLSTAT="YES" # JEDI-based analysis statistics
export DO_FIT2OBS="NO" # Run fit to observations package
export DO_VERFOZN="NO" # Ozone data assimilation monitoring
export DO_VERFRAD="NO" # Radiance data assimilation monitoring
export DO_VMINMON="NO" # GSI minimization monitoring
export DO_ANLSTAT="YES" # JEDI-based analysis statistics
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
export DO_ANLSTAT="YES" # JEDI-based analysis statistics

else
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
else
fi

if [[ ${DO_AERO_ANL} = "YES" || ${DO_JEDIOCNVAR} = "YES" || ${DO_JEDISNOWDA} = "YES" ]]; then
export DO_ANLSTAT="YES" # JEDI-based analysis statistics
fi
if [[ ${DO_AERO_ANL} = "YES" || ${DO_JEDIOCNVAR} = "YES" || ${DO_JEDISNOWDA} = "YES" ]]; then
export DO_ANLSTAT="YES" # JEDI-based analysis statistics
else
export DO_ANLSTAT="NO"
fi
Comment on lines +506 to +510
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
if [[ ${DO_AERO_ANL} = "YES" || ${DO_JEDIOCNVAR} = "YES" || ${DO_JEDISNOWDA} = "YES" ]]; then
export DO_ANLSTAT="YES" # JEDI-based analysis statistics
else
export DO_ANLSTAT="NO"
fi
if [[ "${DO_JEDIATMVAR}" = "YES" || ${DO_AERO_ANL} = "YES" || ${DO_JEDIOCNVAR} = "YES" || ${DO_JEDISNOWDA} = "YES" ]]; then
export DO_ANLSTAT="YES" # JEDI-based analysis statistics
else
export DO_ANLSTAT="NO"

fi

# If starting ICs that are not at cycle hour
Expand Down
15 changes: 11 additions & 4 deletions dev/parm/config/gfs/config.base.j2
Original file line number Diff line number Diff line change
Expand Up @@ -509,10 +509,17 @@ export CLIENT_GLOBUS_UUID="{{ CLIENT_GLOBUS_UUID }}"

# The monitor jobs are not yet supported for JEDIATMVAR.
if [[ "${DO_JEDIATMVAR}" = "YES" ]]; then
export DO_FIT2OBS="NO" # Run fit to observations package
export DO_VERFOZN="NO" # Ozone data assimilation monitoring
export DO_VERFRAD="NO" # Radiance data assimilation monitoring
export DO_VMINMON="NO" # GSI minimization monitoring
export DO_FIT2OBS="NO" # Run fit to observations package
export DO_VERFOZN="NO" # Ozone data assimilation monitoring
export DO_VERFRAD="NO" # Radiance data assimilation monitoring
export DO_VMINMON="NO" # GSI minimization monitoring
export DO_ANLSTAT="YES" # JEDI-based analysis statistics
else
if [[ ${DO_AERO_ANL} = "YES" || ${DO_JEDIOCNVAR} = "YES" || ${DO_JEDISNOWDA} = "YES" ]]; then
export DO_ANLSTAT="YES" # JEDI-based analysis statistics
else
export DO_ANLSTAT="NO"
fi
fi

# TODO: Enable METplus on Ursa when verif-global has been upgraded to spack-stack 1.9.x+
Expand Down
Loading