diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fa9f5a..73464b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,12 +8,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Added - Example script `gcpy/examples/hemco/make_hemco_sa_spec.py` (creates the HEMCO standalone configuration file `HEMCO_sa_Spec.rc`) - Module `benchmark_gcclassic_stats.py` for scraping statistics from GEOS-Chem Classic cloud benchmarks +- Dry deposition velocity comparison plots in 1-month cloud benchmarks ### Changed - Changed format of `% diff` column from `12.3e` to `12.3f` in benchmark timing tables - 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/cloud/template.1mo_benchmark.yml b/gcpy/benchmark/cloud/template.1mo_benchmark.yml index b0098fa..fef9f94 100644 --- a/gcpy/benchmark/cloud/template.1mo_benchmark.yml +++ b/gcpy/benchmark/cloud/template.1mo_benchmark.yml @@ -119,7 +119,7 @@ options: emis_table: True plot_jvalues: True plot_aod: True - plot_drydep: False #Hotfix (bmy, 06 Feb 2024) + plot_drydep: True mass_table: True mass_accum_table: False ops_budget_table: False 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',