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

Add the DryDep collection to the benchmark summary table, and DryDepVel plots to 1-mon cloud benchmarks #336

Merged
merged 2 commits into from
Aug 29, 2024
Merged
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion gcpy/benchmark/cloud/template.1mo_benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion gcpy/benchmark/run_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ def run_benchmark_default(config):
collections = [
'AerosolMass',
'Aerosols',
#'DryDep',
'DryDep',
'Emissions',
'JValues',
'Metrics',
Expand Down Expand Up @@ -1100,6 +1100,7 @@ def run_benchmark_default(config):
collections=[
'AerosolMass',
'Aerosols',
'DryDep',
'Emissions',
'JValues',
'Metrics',
Expand Down Expand Up @@ -1607,6 +1608,7 @@ def run_benchmark_default(config):
collections=[
'AerosolMass',
'Aerosols',
'DryDep',
'Emissions',
'JValues',
'Metrics',
Expand Down
Loading