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

fix time bash order #1049

Merged
merged 3 commits into from
Feb 3, 2024
Merged
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
21 changes: 11 additions & 10 deletions doc/jupyter/Demo/Demo_9_seaIceExtent_ivanova.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@
"id": "848c69e5",
"metadata": {},
"source": [
"**Summary** \n",
"**Summary**\n",
"The PCMDI Metrics Package (PMP) sea ice driver produces metrics that compare modeled and observed sea ice extent. This notebook demonstrates how to run the PMP sea ice code.\n",
"\n",
"**Authors** \n",
"**Authors**\n",
"Ana Ordonez, Jiwoo Lee, Paul Durack, Peter Gleckler ([PCMDI](https://pcmdi.llnl.gov/), [Lawrence Livermore National Laboratory](https://www.llnl.gov/))\n",
"\n",
"**Reference** \n",
"Ivanova, D. P., P. J. Gleckler, K. E. Taylor, P. J. Durack, and K. D. Marvel, 2016: Moving beyond the Total Sea Ice Extent in Gauging Model Biases. J. Climate, 29, 8965–8987, https://doi.org/10.1175/JCLI-D-16-0026.1. \n",
"**Reference**\n",
"Ivanova, D. P., P. J. Gleckler, K. E. Taylor, P. J. Durack, and K. D. Marvel, 2016: Moving beyond the Total Sea Ice Extent in Gauging Model Biases. *J. Climate*, **29**, Pp 8965–8987, https://doi.org/10.1175/JCLI-D-16-0026.1.\n",
"\n",
"**NOTE** \n",
"The installation instructions for the PMP can be found [here](http:https://pcmdi.github.io/pcmdi_metrics/install.html). \n",
"**NOTES**\n",
"The installation instructions for the PMP can be found [here](http:https://pcmdi.github.io/pcmdi_metrics/install.html).\n",
"The documentation for the sea ice metrics can be found [here](http:https://pcmdi.github.io/pcmdi_metrics/metrics_sea_ice.html)."
]
},
Expand Down Expand Up @@ -181,7 +181,7 @@
"metadata": {},
"source": [
"## Sectors\n",
"This code block produces maps that show the different regions used in the analysis along with the mean observed (OSI-SAF) sea ice concentration. The code to generate these figures can be found in the script `sea_ice_sector_plots.py`.\n",
"This code block produces maps that show the different regions used in the analysis along with the mean observed (OSI-SAF) sea ice concentration. The code to generate these figures can be found in the script [`sea_ice_sector_plots.py`](sea_ice_sector_plots.py).\n",
"\n",
"Below process will take about 30 seconds."
]
Expand Down Expand Up @@ -264,7 +264,7 @@
"\n",
"For this demo, we start the OSI-SAF satellite data in 1988 as that avoids missing data in earlier parts of the record.\n",
"\n",
"The code to generate these figures can be found in `sea_ice_line_plots.py`.\n",
"The code to generate these figures can be found in [`sea_ice_line_plots.py`](sea_ice_line_plots.py).\n",
"\n",
"Below process will take about 15 seconds."
]
Expand Down Expand Up @@ -1440,8 +1440,8 @@
}
],
"source": [
"%%bash\n",
"%%time\n",
"%%bash\n",
"sea_ice_driver.py -p sea_ice_param.py \\\n",
"--test_data_set \"E3SM-1-0\" \"CanESM5\" \"MIROC6\" \\\n",
"--realization '*' \\\n",
Expand Down Expand Up @@ -2788,11 +2788,12 @@
"source": [
"Maybe you want to compare more models, or take a closer look at the model data? Here are links to the data for further exploration.\n",
"\n",
"As a reminder, data for nine CMIP6 models (ACCESS-CM2, ACCESS-ESM1-5, CanESM5, CAS-ESM2-0, E3SM-1-0, E3SM-2-0, GFDL-ESM4, MIROC6, with 30 realizations in total across the model suite) is available here:\n",
"As a reminder, data for eight CMIP6 models (ACCESS-CM2, ACCESS-ESM1-5, CanESM5, CAS-ESM2-0, E3SM-1-0, E3SM-2-0, GFDL-ESM4, MIROC6, with 30 realizations in total across the model suite) is available here:\n",
"```\n",
"/p/user_pub/pmp/demo/sea-ice/links_siconc\n",
"/p/user_pub/pmp/demo/sea-ice/links_area\n",
"```\n",
"Note, expanding the \"Working with multiple models\" to include all available models will extend run time to around 15 minutes.\n",
"\n",
"The observational time series can be found at:\n",
"```\n",
Expand Down
Loading