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

ACCESS-NRI ENSO diagnostics CLIVAR porting #3905

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,11 @@
"affiliation": "Met Office, UK",
"name": "Munday, Gregory",
"orcid": "0000-0003-4750-9923"
},
{
"affiliation": "ACCESS-NRI, Australia",
"name": "Chun, Felicity",
"orcid": "0009-0007-0845-0953"
}
],
"description": "ESMValTool: A community diagnostic and performance metrics tool for routine evaluation of Earth system models in CMIP.",
Expand Down
5 changes: 5 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,11 @@ authors:
family-names: Munday
given-names: Gregory
orcid: "https://orcid.org/0000-0003-4750-9923"
-
affiliation: "ACCESS-NRI, Australia"
family-names: Chun
given-names: Felicity
orcid: "https://orcid.org/0009-0007-0845-0953"

cff-version: 1.2.0
date-released: 2024-07-04
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions doc/sphinx/source/recipes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ Ocean
recipe_cvdp
recipe_combined_indices
recipe_esacci_oc
recipe_enso_metrics
recipe_oceans
recipe_sea_surface_salinity
recipe_russell18jgr
Expand Down
72 changes: 72 additions & 0 deletions doc/sphinx/source/recipes/recipe_enso_metrics.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
.. _recipes_enso_metrics:

ENSO CLIVAR metrics - reproducing ENSO characteristics lifecycle and seasonality
================================================================================

Overview
--------

Reproducing some ENSO metrics from the
[CLIVAR package](https://pcmdi.llnl.gov/pmp-preliminary-results/interactive_plot/portrait_plot/enso_metric/enso_metrics_interactive_portrait_plots_v20231121.html)
specifically ones used for REF

Available recipes and diagnostics
---------------------------------

Recipes are stored in esmvaltool/recipes/

* recipe_enso_metrics.yml

Diagnostics are stored in esmvaltool/diag_scripts/enso_metrics/

* **enso_diag1metrics.py**: metrics for basic ENSO characteristics
* **matrix.py**: reads metrics in work_dir from csv file written out in climatology_diagnostic1, use for other groups of metrics


User settings in recipe
-----------------------

#. Script: **matrix.py**

*Required settings for script*

* **diag_metrics**: diagnostic name and script name in *yml* of the diagnostic that computes all the metrics
so it can find the *csv* in the `work_dir` - eg. diagnostic_metrics/plot_script


Variables
---------

* tos (Omon, monthly)
* areacello (Ofx)



Observations and reformat scripts
---------------------------------


* HadISST
* TropFLUX


References
----------

* [1] https://pcmdi.llnl.gov/pmp-preliminary-results/interactive_plot/portrait_plot/enso_metric/enso_metrics_interactive_portrait_plots_v20231121.html
* [2] https://github.com/CLIVAR-PRP/ENSO_metrics/

Example plots
-------------

.. _fig_seasonality:
.. figure:: /recipes/figures/enso_metrics/seasonality.png
:align: center

Add figure caption here.

.. _fig_lifecycle:
.. figure:: /recipes/figures/enso_metrics/lifecycle.png
:align: center

Add figure caption here.
5 changes: 5 additions & 0 deletions esmvaltool/config-references.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,11 @@ authors:
name: Chen, Jack
institute: NCAR, USA
orcid:
chun_felicity:
name: Chun, Felicity
institute: ACCESS-NRI, Australia
orcid: https://orcid.org/0009-0007-0845-0953
github: flicj191
cionni_irene:
name: Cionni, Irene
institute: ENEA, Italy
Expand Down
Loading