Skip to content

Commit fb063ef

Browse files
committed
Hotfix: Skip InvAFCID due to error in GCHP diagnostics
gcpy/benchmark/modules/benchmark_funcs.py - Added an if statement to skip the InvAFCID diagnostics, since the 14.7.0-rc.0 contains InvAFCID_DST1. This will throw an error as DST1 is not in the species database. Signed-off-by: Bob Yantosca <yantosca@seas.harvard.edu>
1 parent dff11fd commit fb063ef

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

gcpy/benchmark/modules/benchmark_funcs.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,10 @@ def create_total_emissions_table(
260260
# =============================================================
261261
for v in varnames:
262262

263+
# KLUDGE, skip InvAFCID due to a file error in GCHP
264+
if "InvAFCID" in v:
265+
continue
266+
263267
if "Inv" in template:
264268
spc_name = v.split("_")[1]
265269
else:
@@ -5887,7 +5891,7 @@ def create_benchmark_sanity_check_table(
58875891
# Variables to skip
58885892
skip_vars = SKIP_THESE_VARS
58895893
skip_vars.append("AREA")
5890-
5894+
58915895
# ==================================================================
58925896
# Open output file and write header
58935897
# ==================================================================

0 commit comments

Comments
 (0)