Skip to content

Commit

Permalink
Merge PR #256 (Rename PassiveTracers to TransportTracers in bmk script)
Browse files Browse the repository at this point in the history
This merge brings PR #256 (Rename PassiveTracers to TransportTracers
in run_1yr_tt_benchmark.py, by @msulprizio) into the GCPy 1.4.0
development stream.

This PR corrects the situation where the run_1yr_tt_benchmark.py
script had not been updated to be consistent with the change
to benchmark_categories.yml that was made in commit 606ef01.

Signed-off-by: Bob Yantosca <[email protected]>
  • Loading branch information
yantosca committed Aug 29, 2023
2 parents 43bb419 + 7a1956a commit b48c8b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Updated badge links in `README.md`
- Construct ops budget table filename without using the `label` argument
- Updated species_database.yml for consistency with GEOS-Chem 14.2.0
- Renamed TransportTracers species in `benchmark_categories.yml` and in documentation
- Renamed TransportTracers species in `benchmark_categories.yml`, `run_1yr_tt_benchmark.py`, and in documentation
- YAML files in `benchmark/` have been moved to `benchmark/config`
- Models vs. O3 obs plots are now arranged by site latitude from north to south
- Routine `print_totals` now prints small and/or large numbers in scientific notation
Expand Down
6 changes: 3 additions & 3 deletions benchmark/modules/run_1yr_tt_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def run_benchmark(config, bmk_year_ref, bmk_year_dev):
print("\n%%% Creating GCC vs. GCC concentration plots %%%")

# Only plot concentration categories for TransportTracers
restrict_cats = ["RnPbBeTracers", "PassiveTracers"]
restrict_cats = ["RnPbBeTracers", "TransportTracers"]

# --------------------------------------------------------------
# GCC vs GCC species concentration plots: Annual mean
Expand Down Expand Up @@ -629,7 +629,7 @@ def gcc_vs_gcc_mass_table(mon):
print("\n%%% Creating GCHP vs. GCC concentration plots %%%")

# Only plot concentration categories for TransportTracers
restrict_cats = ["RnPbBeTracers", "PassiveTracers"]
restrict_cats = ["RnPbBeTracers", "TransportTracers"]

# --------------------------------------------------------------
# GCHP vs GCC species concentration plots: Annual Mean
Expand Down Expand Up @@ -889,7 +889,7 @@ def gchp_vs_gcc_mass_table(mon):
print("\n%%% Creating GCHP vs. GCHP concentration plots %%%")

# Only plot concentration categories for TransportTracers
restrict_cats = ["RnPbBeTracers", "PassiveTracers"]
restrict_cats = ["RnPbBeTracers", "TransportTracers"]

# --------------------------------------------------------------
# GCHP vs GCHP species concentration plots: Annual Mean
Expand Down

0 comments on commit b48c8b0

Please sign in to comment.