From 4277b9365914794a19a6a97cd61dd637999f6867 Mon Sep 17 00:00:00 2001 From: rbeucher Date: Thu, 2 Nov 2023 15:12:29 +1100 Subject: [PATCH 1/2] Update ESMValTool instruction on Gadi --- .../model_evaluation_on_gadi_esmvaltool.md | 20 ++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/docs/model_evaluation/model_evaluation_on_gadi/model_evaluation_on_gadi_esmvaltool.md b/docs/model_evaluation/model_evaluation_on_gadi/model_evaluation_on_gadi_esmvaltool.md index 76e15a240..1807b6362 100644 --- a/docs/model_evaluation/model_evaluation_on_gadi/model_evaluation_on_gadi_esmvaltool.md +++ b/docs/model_evaluation/model_evaluation_on_gadi/model_evaluation_on_gadi_esmvaltool.md @@ -35,15 +35,24 @@ To run ESMValTool recipes, you need to be a member of the following NCI p ### Running ESMValTool recipes -To load the the `access-med` conda environment, execute the following commands: + +To load the the `esmvaltool` module, execute the following commands: ``` module use /g/data/xp65/public/modules - module load conda/access-med + module load esmvaltool +``` + +ESMValTool is pre-configured to access CMIP and observation datasets available on Gadi. +By default, ESMValTool look for the `config_user.yml` file in the home directory, inside the `.esmvaltool` folder. +You can get a copy by running: + +``` +esmvaltool config get_config_user --path=dest ``` To list which ESMValTool recipes are available on Gadi, run: ``` - esmvaltool recipes list +esmvaltool recipes list ``` To find out details of a specific `recipe_name.yml`, execute: @@ -51,6 +60,11 @@ To find out details of a specific `recipe_name.yml`, execute: esmvaltool recipes show recipe_name.yml ``` +To retrieve a recipe (and modify it), execute: +``` +esmvaltool recipes get recipe_name.yml +``` + To execute `recipe_name.yml` and automatically download the required climate data to the default directory, run: ``` From 1b6b1850f3a974800d2836ebe111ff6a0d7a7b97 Mon Sep 17 00:00:00 2001 From: Romain Beucher Date: Thu, 2 Nov 2023 15:15:09 +1100 Subject: [PATCH 2/2] Update model_evaluation_on_gadi_esmvaltool.md --- .../model_evaluation_on_gadi_esmvaltool.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/model_evaluation/model_evaluation_on_gadi/model_evaluation_on_gadi_esmvaltool.md b/docs/model_evaluation/model_evaluation_on_gadi/model_evaluation_on_gadi_esmvaltool.md index 1807b6362..15ac871ab 100644 --- a/docs/model_evaluation/model_evaluation_on_gadi/model_evaluation_on_gadi_esmvaltool.md +++ b/docs/model_evaluation/model_evaluation_on_gadi/model_evaluation_on_gadi_esmvaltool.md @@ -43,7 +43,7 @@ To load the the `esmvaltool` module, execute the following commands: ``` ESMValTool is pre-configured to access CMIP and observation datasets available on Gadi. -By default, ESMValTool look for the `config_user.yml` file in the home directory, inside the `.esmvaltool` folder. +By default, ESMValTool looks for the `config_user.yml` file in the home directory, inside the `.esmvaltool` folder. You can get a copy by running: ```