From 1bbc312749ef4aad75eda625d2e0d545c8ec2410 Mon Sep 17 00:00:00 2001 From: ilopezgp Date: Thu, 15 Sep 2022 13:01:39 -0700 Subject: [PATCH] Add CNRM-CM6-1 cases --- src/utility_functions.jl | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/utility_functions.jl b/src/utility_functions.jl index 082c9c17b9..df62a161f5 100644 --- a/src/utility_functions.jl +++ b/src/utility_functions.jl @@ -154,9 +154,21 @@ function get_shallow_LES_library() LES_library["CNRM-CM5"]["01"] = Dict() LES_library["CNRM-CM5"]["01"]["cfsite_numbers"] = setdiff(Shen_et_al_sites, [14, 15, 17, 18, 19, 20, 21, 22, 23]) + # CNRM-CM5 model (69 AMIP-AMIP4K pairs) + LES_library["CNRM-CM6-1"]["10"] = Dict() + LES_library["CNRM-CM6-1"]["10"]["cfsite_numbers"] = setdiff(Shen_et_al_sites, [22, 23]) + LES_library["CNRM-CM6-1"]["07"] = Dict() + LES_library["CNRM-CM6-1"]["07"]["cfsite_numbers"] = setdiff(Shen_et_al_sites, [12, 13, 14, 15, 17]) + LES_library["CNRM-CM6-1"]["04"] = Dict() + LES_library["CNRM-CM6-1"]["04"]["cfsite_numbers"] = + setdiff(Shen_et_al_sites, [13, 14, 15]) + LES_library["CNRM-CM6-1"]["01"] = Dict() + LES_library["CNRM-CM6-1"]["01"]["cfsite_numbers"] = setdiff(Shen_et_al_sites, [14, 15, 21, 22, 23]) + for month in ["01", "04", "07", "10"] LES_library["HadGEM2-A"][month]["experiments"] = ["amip", "amip4K"] LES_library["CNRM-CM5"][month]["experiments"] = ["amip", "amip4K"] + LES_library["CNRM-CM6-1"][month]["experiments"] = ["amip", "amip4K"] end return LES_library end