From 6a7518b17e1dadb11f2346b2b10f82dcfc29b1ce Mon Sep 17 00:00:00 2001 From: Bob Yantosca Date: Wed, 28 Aug 2024 12:50:34 -0400 Subject: [PATCH] Add DryDep collection to benchmark summary table gcpy/benchmark/run_benchmark.py - Add the DryDep collection to the benchmark summary table. The DryDep collection was restored to all 1-hr and 1-mon fullchem benchmark simulations. CHANGELOG.md - Updated accordingly Signed-off-by: Bob Yantosca --- CHANGELOG.md | 1 + gcpy/benchmark/run_benchmark.py | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fa9f5a..93667c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Updated `gcpy/benchmark/modules/emission_species.yml` file with emission species for GEOS-Chem 14.5.0 - Updated `gcpy/benchmark/modules/benchmark_categories.yml` with the latest categories for GEOS-Chem 14.5.0 - Updated `gcpy/benchmark/modules/lumped_species.yml` with speciations for GEOS-Chem 14.5.0 +- Add `DryDep` to list of collections included in benchmark summary table ### Fixed - Fixed formatting error in `.github/workflows/stale.yml` that caused the Mark Stale Issues action not to run diff --git a/gcpy/benchmark/run_benchmark.py b/gcpy/benchmark/run_benchmark.py index a74c98e..89cc739 100755 --- a/gcpy/benchmark/run_benchmark.py +++ b/gcpy/benchmark/run_benchmark.py @@ -672,7 +672,7 @@ def run_benchmark_default(config): collections = [ 'AerosolMass', 'Aerosols', - #'DryDep', + 'DryDep', 'Emissions', 'JValues', 'Metrics', @@ -1100,6 +1100,7 @@ def run_benchmark_default(config): collections=[ 'AerosolMass', 'Aerosols', + 'DryDep', 'Emissions', 'JValues', 'Metrics', @@ -1607,6 +1608,7 @@ def run_benchmark_default(config): collections=[ 'AerosolMass', 'Aerosols', + 'DryDep', 'Emissions', 'JValues', 'Metrics',