Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • readonly run='production': type of simulation to run . Short – i.e, a short test for verification or a long production run. (See next section for details).

...

Before starting a long production run, it is highly recommended to perform a few short tests to verify:

...

At this point, execute the run-e3sm script:

Code Block
cd <run_scripts_dir>
./run.<case_name>.sh

...

Edit the file and customize as needed. The file is structured with [section] and [[sub-sections]]. There is a [default] section, followed by additional sections for each available zppy task (climo, ts, e3sm_diags, mpas_analysis, …). Sub-sections can be used to have multiple instances of a particular task, for example regridded monthly or globally averaged time series files. Refer to the zppy documentation for more details.

...

In the “Notes” section, mention if a job failed or if you changed anything before re-running a job.

Global time series

Run the following commands:

...

Be sure to have set the [global_time_series

...

] task in zppy.

Example configuration:

Code Block
# EditGlobal thetime variablesseries at the top of `generate_plots
[global_time_series_plots.sh`
# See below for an explanation of the variables
./generate_global_time_series_plots.sh

Explanation of variables:

Code Block
# For unified environment paths, see https://e3sm-project.github.io/e3sm_diags/docs/html/quickguides/quick-guide-general.html
unified_script=<the path to the unified environment script. Do NOT include `source`>                                                               
e3sm_simulations_dir=<simulations_dir>
case_dir=${e3sm_simulations_dir}/<case_name>
# For web directory paths, see https://e3sm-project.github.io/e3sm_diags/docs/html/quickguides/quick-guide-general.html
web_dir=<html_path>/E3SM/v2/beta/<case_name>
zppy_dir=<code_source_dir>/zppy/

# Names                                                                  
moc_file=<e.g., mocTimeSeries_0001-0100.nc>
experiment_name=<e.g., 20210122.v2_test01.piControl.chrysalis>
figstr=<e.g., coupled_v2_test01>

# Years                                                                  
start_yr=<first year to process>
end_yr=<last year to process>]
active = False
years = "1-100",
ts_num_years = 10
figstr=coupled_v2_test01
moc_file=mocTimeSeries_0001-0100.nc
experiment_name=20210409.v2beta4.piControl.ne30pg2_EC30to60E2r2.chrysalis
ts_years = "1-50", "1-100",

That will produce <figstr>.pdf and <figstr>.png. The latter They will be available automatically at <web_address>/E3SM/v2/beta<www>/<case_name>/<figstr>.png, where <web_address> can be found on https://e3sm-project.github.io/e3sm_diags/docs/html/quickguides/quick-guide-general.html. You can download the image from the website and then upload it to your Confluence page.

...