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

[develop] Adding mixed-layer convective available potential energy (MLCAPE) to the verification #614

Merged
merged 7 commits into from
Feb 15, 2023
2 changes: 1 addition & 1 deletion parm/metplus/PointStat_conus_sfc.conf
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ PB2NC_QUALITY_MARK_THRESH = 9
PB2NC_PB_REPORT_TYPE = 120, 220, 221, 122, 222, 223, 224, 131, 133, 233, 153, 156, 157, 188, 288, 180, 280, 181, 182, 281, 282, 183, 284, 187, 287

# Leave empty to process all
PB2NC_OBS_BUFR_VAR_LIST = PMO, ZOB, TOB, D_DPT, QOB, UOB, VOB, PWO, TOCC, D_RH, HOVI, CEILING, D_PBL, D_CAPE, MXGS, D_WIND, D_PRMSL
PB2NC_OBS_BUFR_VAR_LIST = PMO, ZOB, TOB, D_DPT, QOB, UOB, VOB, PWO, TOCC, D_RH, HOVI, CEILING, D_PBL, D_CAPE, D_MLCAPE, MXGS, D_WIND, D_PRMSL

# Mapping of input BUFR variable names to output variables names.
# The default PREPBUFR map, obs_prepbufr_map, is appended to this map.
Expand Down
11 changes: 10 additions & 1 deletion parm/metplus/PointStat_upper_air.conf
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ PB2NC_QUALITY_MARK_THRESH = 9
PB2NC_PB_REPORT_TYPE = 120, 220, 221, 122, 222, 223, 224, 131, 133, 233, 153, 156, 157, 188, 288, 180, 280, 181, 182, 281, 282, 183, 284, 187, 287

# Leave empty to process all
PB2NC_OBS_BUFR_VAR_LIST = PMO, ZOB, TOB, D_DPT, QOB, UOB, VOB, PWO, TOCC, D_RH, HOVI, CEILING, D_PBL, D_CAPE, MXGS, D_WIND, D_PRMSL
PB2NC_OBS_BUFR_VAR_LIST = PMO, ZOB, TOB, D_DPT, QOB, UOB, VOB, PWO, TOCC, D_RH, HOVI, CEILING, D_PBL, D_CAPE, D_MLCAPE, MXGS, D_WIND, D_PRMSL

# Mapping of input BUFR variable names to output variables names.
# The default PREPBUFR map, obs_prepbufr_map, is appended to this map.
Expand Down Expand Up @@ -233,6 +233,15 @@ OBS_VAR11_NAME = PBL
OBS_VAR11_LEVELS = L0
OBS_VAR11_OPTIONS = desc = "RI";

FCST_VAR12_NAME = CAPE
FCST_VAR12_LEVELS = L0-90
FCST_VAR12_OPTIONS = cnt_thresh = [ >0 ];
FCST_VAR12_THRESH = >500, >1000, >1500, >2000, >3000, >4000
OBS_VAR12_NAME = MLCAPE
OBS_VAR12_LEVELS = L0
OBS_VAR12_OPTIONS = cnt_thresh = [ >0 ]; cnt_logic = UNION;
OBS_VAR12_THRESH = >500, >1000, >1500, >2000, >3000, >4000

# End of [config] section and start of [dir] section
[dir]

Expand Down