gcpy.benchmark.modules.benchmark_drydep
Creates dry deposition velocity plots from GEOS-Chem benchmark simulation output.
Functions
Returns a list of species for the dry deposition velocity (DryDepVel) benchmark plots: |
|
|
Creates six-panel comparison plots (PDF format) from GEOS-Chem benchmark simulation output. |
- gcpy.benchmark.modules.benchmark_drydep.make_benchmark_drydep_plots(ref, refstr, dev, devstr, spcdb_files, collection='DryDep', dst='./benchmark', subdst=None, cmpres=None, overwrite=False, verbose=False, log_color_scale=False, weightsdir='.', sigdiff_files=None, n_job=-1, time_mean=False, varlist=None)[source]
Creates six-panel comparison plots (PDF format) from GEOS-Chem benchmark simulation output. Can be used with data collections that do not require special handling (e.g. concentrations).
- Parameters:
ref (
str) – Path name for the “Ref” (aka “Reference”) data set.refstr (
str) – A string to describe ref (e.g. version number).dev (
str) – Path name for the “Dev” (aka “Development”) data set. This data set will be compared against the “Reference” data set.devstr (
str) – A string to describe dev (e.g. version number).spcdb_files (
list) – Paths to species_database.yml files in Ref & Dev rundirs.collection (
str, optional) – Name of the diagnostic collection (e.g. “DryDep”).dst (
str, optional) – A string denoting the destination folder where a PDF file containing plots will be written. Default value: ./benchmarksubdst (
str, optional) – A string denoting the sub-directory of dst where PDF files containing plots will be written. In practice, subdst is only needed for the 1-year benchmark output, and denotes a date string (such as “Jan2016”) that corresponds to the month that is being plotted. Default value: Nonebenchmark_type (
str, optional) – A string denoting the type of benchmark output to plot, options are FullChemBenchmark, TransportTracersBenchmark, or CH4Benchmark. Default value: “FullChemBenchmark”overwrite (
bool, optional) – Set this flag to True to overwrite files in the destination folder (specified by the dst argument). Default value: Falseverbose (
bool, optional) – Set this flag to True to print extra informational output. Default value: Falsen_job (
int, optional) – Defines the number of simultaneous workers for parallel plotting. Set to 1 to disable parallel plotting. Value of -1 allows the application to decide. Default value: -1time_mean (
bool, optional) – Determines if we should average the datasets over time. Default value: Falsevarlist (
listofstr, optional) – List of variables to plot. If varlist is None, then all common variables in Ref & Dev will be plotted.