Skip to content

Commit

Permalink
Make benchmark mass tables for GCC vs GCHP transport tracer benchmark
Browse files Browse the repository at this point in the history
The call to make the benchmark mass tables was missing from the transport
tracer run script.

Signed-off-by: Lizzie Lundgren <elundgren@seas.harvard.edu>
  • Loading branch information
lizziel committed Feb 5, 2024
1 parent 00c6681 commit 9940b8f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Fixed
- CS inquiry functions in `gcpy/cstools.py` now work properly for `xr.Dataset` and `xr.DataArray` objects
- Prevent an import error by using `seaborn-v0_8-darkgrid` in`gcpy/benchmark/modules/benchmark_models_vs_obs.py`
- Fixed silent bug in transport tracer benchmark GCC vs GCHP mass tables preventing them from being generated

## [1.4.2] - 2024-01-26
### Added
Expand Down
14 changes: 14 additions & 0 deletions gcpy/benchmark/modules/run_1yr_tt_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -810,6 +810,20 @@ def gchp_vs_gcc_mass_table(mon):
"is_pre_14.0"]
)

# Create tables
bmk.make_benchmark_mass_tables(
refpath,
gchp_vs_gcc_refstr,
devpath,
gchp_vs_gcc_devstr,
dst=gchp_vs_gcc_tablesdir,
subdst=bmk_mon_yr_strs_dev[mon],
label=f"at 01{bmk_mon_yr_strs_dev[mon]}",
overwrite=True,
spcdb_dir=spcdb_dir,
dev_met_extra=devareapath
)

# Create tables in parallel
# Turn off parallelization if n_jobs==1
if config["options"]["n_cores"] != 1:
Expand Down

0 comments on commit 9940b8f

Please sign in to comment.