diff --git a/.gitmodules b/.gitmodules index 8cd29133..7e520917 100644 --- a/.gitmodules +++ b/.gitmodules @@ -5,3 +5,11 @@ path = src/access_moppy/vocabularies/CMIP7_CVs url = git@github.com:WCRP-CMIP/CMIP7-CVs.git branch = production +[submodule "src/access_moppy/vocabularies/CMIP6_CVs"] + path = src/access_moppy/vocabularies/CMIP6_CVs + url = git@github.com:WCRP-CMIP/CMIP6_CVs.git + branch = main +[submodule "src/access_moppy/vocabularies/CMIP6Plus_CVs"] + path = src/access_moppy/vocabularies/CMIP6Plus_CVs + url = git@github.com:WCRP-CMIP/CMIP6Plus_CVs.git + branch = main diff --git a/docs/source/getting_started.rst b/docs/source/getting_started.rst index b37ac55f..50a3b0a4 100644 --- a/docs/source/getting_started.rst +++ b/docs/source/getting_started.rst @@ -88,9 +88,49 @@ You can also provide additional metadata such as `experiment_id`, `source_id`, ` variant_label="r1i1p1f1", grid_label="gn", activity_id="CMIP", + cmip_version="CMIP6", # Optional, default is CMIP6 parent_info=parent_experiment_config # <-- This is optional, can be skipped if not needed ) + Choosing CMIP6 vs CMIP6Plus vs CMIP7 + ------------------------------------ + + From a user point of view, vocabulary selection is controlled by the ``cmip_version`` argument in ``ACCESS_ESM_CMORiser``: + + - ``cmip_version="CMIP6"`` (default) uses CMIP6 controlled vocabularies + - ``cmip_version="CMIP6Plus"`` uses CMIP6Plus controlled vocabularies + - ``cmip_version="CMIP7"`` uses CMIP7 controlled vocabularies + + .. code-block:: python + + from access_moppy import ACCESS_ESM_CMORiser + + # CMIP6 (default) + cmip6_cmoriser = ACCESS_ESM_CMORiser( + input_data=files, + compound_name="Amon.rsds", + experiment_id="historical", + source_id="ACCESS-ESM1-5", + variant_label="r1i1p1f1", + grid_label="gn", + activity_id="CMIP", + cmip_version="CMIP6", + ) + + # CMIP6Plus + cmip6plus_cmoriser = ACCESS_ESM_CMORiser( + input_data=files, + compound_name="Amon.rsds", + experiment_id="historical", + source_id="ACCESS-CM2", + variant_label="r1i1p1f1", + grid_label="gn", + activity_id="CMIP", + cmip_version="CMIP6Plus", + ) + + Use ``source_id``, ``experiment_id``, and other metadata values that exist in the selected controlled vocabulary set. CMIP6 and CMIP6Plus entries are not always identical. + Exploring Variable Mappings --------------------------- diff --git a/notebooks/Getting_started.ipynb b/notebooks/Getting_started.ipynb index 5c8de577..344c0b94 100644 --- a/notebooks/Getting_started.ipynb +++ b/notebooks/Getting_started.ipynb @@ -1002,6 +1002,50 @@ ")" ] }, + { + "cell_type": "markdown", + "id": "689f6977", + "metadata": {}, + "source": [ + "## Choosing CMIP6 vs CMIP6Plus vs CMIP7\n", + "\n", + "You can select which controlled vocabulary set is used by passing the `cmip_version` argument when creating `ACCESS_ESM_CMORiser`:\n", + "\n", + "- `cmip_version=\"CMIP6\"` (default) uses CMIP6 vocabularies\n", + "- `cmip_version=\"CMIP6Plus\"` uses CMIP6Plus vocabularies\n", + "- `cmip_version=\"CMIP7\"` uses CMIP7 vocabularies\n", + "\n", + "```python\n", + "from access_moppy import ACCESS_ESM_CMORiser\n", + "\n", + "# CMIP6 (default)\n", + "cmip6_cmoriser = ACCESS_ESM_CMORiser(\n", + " input_data=files,\n", + " compound_name=\"Amon.rsds\",\n", + " experiment_id=\"historical\",\n", + " source_id=\"ACCESS-ESM1-5\",\n", + " variant_label=\"r1i1p1f1\",\n", + " grid_label=\"gn\",\n", + " activity_id=\"CMIP\",\n", + " cmip_version=\"CMIP6\",\n", + ")\n", + "\n", + "# CMIP6Plus\n", + "cmip6plus_cmoriser = ACCESS_ESM_CMORiser(\n", + " input_data=files,\n", + " compound_name=\"Amon.rsds\",\n", + " experiment_id=\"historical\",\n", + " source_id=\"ACCESS-CM2\",\n", + " variant_label=\"r1i1p1f1\",\n", + " grid_label=\"gn\",\n", + " activity_id=\"CMIP\",\n", + " cmip_version=\"CMIP6Plus\",\n", + ")\n", + "```\n", + "\n", + "> Tip: Use `source_id`, `experiment_id`, and related metadata values that exist in the selected vocabulary set, because CMIP6 and CMIP6Plus entries are not always identical." + ] + }, { "cell_type": "markdown", "id": "12144707", diff --git a/src/access_moppy/driver.py b/src/access_moppy/driver.py index eb7a5f14..5d71f32d 100644 --- a/src/access_moppy/driver.py +++ b/src/access_moppy/driver.py @@ -13,7 +13,11 @@ _get_cmip7_to_cmip6_mapping, load_model_mappings, ) -from access_moppy.vocabulary_processors import CMIP6Vocabulary, CMIP7Vocabulary +from access_moppy.vocabulary_processors import ( + CMIP6PlusVocabulary, + CMIP6Vocabulary, + CMIP7Vocabulary, +) class ACCESS_ESM_CMORiser: @@ -52,7 +56,7 @@ def __init__( :param source_id: CMIP source ID (e.g., 'ACCESS-ESM1-5'). :param variant_label: CMIP variant label (e.g., 'r1i1p1f1'). :param grid_label: CMIP grid label (e.g., 'gn'). - :param cmip_version: CMIP version to use - either 'CMIP6' or 'CMIP7' (default: 'CMIP6'). + :param cmip_version: CMIP version to use - one of 'CMIP6', 'CMIP6Plus', or 'CMIP7' (default: 'CMIP6'). :param activity_id: CMIP activity ID (e.g., 'CMIP'). :param output_path: Path to write the CMORised output. :param drs_root: Optional root path for DRS structure. @@ -65,9 +69,9 @@ def __init__( """ # Validate CMIP version - if cmip_version not in ("CMIP6", "CMIP7"): + if cmip_version not in ("CMIP6", "CMIP6Plus", "CMIP7"): raise ValueError( - f"cmip_version must be 'CMIP6' or 'CMIP7', got '{cmip_version}'" + f"cmip_version must be 'CMIP6', 'CMIP6Plus', or 'CMIP7', got '{cmip_version}'" ) self.cmip_version = cmip_version @@ -179,6 +183,16 @@ def __init__( activity_id=activity_id, parent_info=self.parent_info, ) + elif self.cmip_version == "CMIP6Plus": + self.vocab = CMIP6PlusVocabulary( + compound_name=self.cmip6_compound_name, + experiment_id=experiment_id, + source_id=source_id, + variant_label=variant_label, + grid_label=grid_label, + activity_id=activity_id, + parent_info=self.parent_info, + ) else: # CMIP7 self.vocab = CMIP7Vocabulary( compound_name=self.cmip7_compound_name, diff --git a/src/access_moppy/vocabularies/CMIP6Plus_CVs b/src/access_moppy/vocabularies/CMIP6Plus_CVs new file mode 160000 index 00000000..9963a20e --- /dev/null +++ b/src/access_moppy/vocabularies/CMIP6Plus_CVs @@ -0,0 +1 @@ +Subproject commit 9963a20e79fac4e959872f32532b1b898a9fe7e8 diff --git a/src/access_moppy/vocabularies/CMIP6_CVs b/src/access_moppy/vocabularies/CMIP6_CVs new file mode 160000 index 00000000..78a465a7 --- /dev/null +++ b/src/access_moppy/vocabularies/CMIP6_CVs @@ -0,0 +1 @@ +Subproject commit 78a465a7dabb01e357928ea223bc5da871a6e6dc diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CITATION.cff b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CITATION.cff deleted file mode 100644 index 51eaf477..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CITATION.cff +++ /dev/null @@ -1,28 +0,0 @@ -# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-citation-files - -cff-version: 1.2.0 -message: "If you use this software, please cite it using the metadata from this file" -authors: -- family-names: "Durack" - given-names: "Paul J." - orcid: "https://orcid.org/0000-0003-2835-1438" -- family-names: "Taylor" - given-names: "Karl E." - orcid: "https://orcid.org/0000-0002-6491-2135" -- family-names: "Mizielinski" - given-names: "Matthew" - orcid: "https://orcid.org/0000-0002-3457-4702" -- family-names: "Doutriaux" - given-names: "Charles" - orcid: "https://orcid.org/0009-0002-6932-3169" -- family-names: "Nadeau" - given-names: "Denis" - orcid: "https://orcid.org/0000-0002-9622-3289" -- family-names: "Juckes" - given-names: "Martin" - orcid: "https://orcid.org/0000-0003-1770-2132" -title: "CMIP6 Controlled Vocabularies (CVs)" -version: 6.2.58.79 -doi: 10.5281/zenodo.12197150 -date-released: 2025-04-18 -url: "https://github.com/WCRP-CMIP/CMIP6_CVs" diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_DRS.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_DRS.json deleted file mode 100644 index d7854055..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_DRS.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "DRS":{ - "directory_path_example":"CMIP6/CMIP/MOHC/HadGEM3-GC31-MM/historical/r1i1p1f3/Amon/tas/gn/v20191207/", - "directory_path_sub_experiment_example":"CMIP6/DCPP/MOHC/HadGEM3-GC31-MM/dcppA-hindcast/s1960-r1i1p1f2/Amon/tas/gn/v20200417/", - "directory_path_template":"/////////", - "filename_example":"tas_Amon_HadGEM3-GC31-MM_historical_r1i1p1f3_gn_185001-186912.nc", - "filename_sub_experiment_example":"tas_Amon_HadGEM3-GC31-MM_dcppA-hindcast_s1960-r1i1p1f2_gn_196011-196012.nc", - "filename_template":"_____[_].nc" - }, - "version_metadata":{ - "CV_collection_modified":"Fri Apr 18 16:28:35 2025 -0700", - "CV_collection_version":"6.2.58.79", - "DRS_CV_modified":"Tue Jun 7 14:29:45 2022 -0700", - "DRS_CV_note":"Add CMIP6 Data Reference Syntax (DRS) templates", - "author":"Paul J. Durack ", - "institution_id":"PCMDI", - "previous_commit":"1e8961cb140d3246c70cdc24d2cc8404570de5dc", - "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" - } -} diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_activity_id.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_activity_id.json deleted file mode 100644 index 60f52185..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_activity_id.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "activity_id":{ - "AerChemMIP":"Aerosols and Chemistry Model Intercomparison Project", - "C4MIP":"Coupled Climate Carbon Cycle Model Intercomparison Project", - "CDRMIP":"Carbon Dioxide Removal Model Intercomparison Project", - "CFMIP":"Cloud Feedback Model Intercomparison Project", - "CMIP":"CMIP DECK: 1pctCO2, abrupt4xCO2, amip, esm-piControl, esm-historical, historical, and piControl experiments", - "CORDEX":"Coordinated Regional Climate Downscaling Experiment", - "DAMIP":"Detection and Attribution Model Intercomparison Project", - "DCPP":"Decadal Climate Prediction Project", - "DynVarMIP":"Dynamics and Variability Model Intercomparison Project", - "FAFMIP":"Flux-Anomaly-Forced Model Intercomparison Project", - "GMMIP":"Global Monsoons Model Intercomparison Project", - "GeoMIP":"Geoengineering Model Intercomparison Project", - "HighResMIP":"High-Resolution Model Intercomparison Project", - "ISMIP6":"Ice Sheet Model Intercomparison Project for CMIP6", - "LS3MIP":"Land Surface, Snow and Soil Moisture", - "LUMIP":"Land-Use Model Intercomparison Project", - "OMIP":"Ocean Model Intercomparison Project", - "PAMIP":"Polar Amplification Model Intercomparison Project", - "PMIP":"Palaeoclimate Modelling Intercomparison Project", - "RFMIP":"Radiative Forcing Model Intercomparison Project", - "SIMIP":"Sea Ice Model Intercomparison Project", - "ScenarioMIP":"Scenario Model Intercomparison Project", - "VIACSAB":"Vulnerability, Impacts, Adaptation and Climate Services Advisory Board", - "VolMIP":"Volcanic Forcings Model Intercomparison Project" - }, - "version_metadata":{ - "CV_collection_modified":"Fri Apr 18 16:28:35 2025 -0700", - "CV_collection_version":"6.2.58.79", - "activity_id_CV_modified":"Mon Mar 5 16:39:09 2018 -0800", - "activity_id_CV_note":"Update activity_id to include CDRMIP and PAMIP", - "author":"Paul J. Durack ", - "institution_id":"PCMDI", - "previous_commit":"1e8961cb140d3246c70cdc24d2cc8404570de5dc", - "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" - } -} diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_experiment_id.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_experiment_id.json deleted file mode 100644 index 89570b7e..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_experiment_id.json +++ /dev/null @@ -1,9468 +0,0 @@ -{ - "experiment_id":{ - "1pctCO2":{ - "activity_id":[ - "CMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"DECK: 1pctCO2", - "end_year":"", - "experiment":"1 percent per year increase in CO2", - "experiment_id":"1pctCO2", - "min_number_yrs_per_sim":"150", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "1pctCO2-4xext":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"branched from 1pctCO2 run at year 140 and run with CO2 fixed at 4x pre-industrial concentration", - "end_year":"", - "experiment":"extension from year 140 of 1pctCO2 with 4xCO2", - "experiment_id":"1pctCO2-4xext", - "min_number_yrs_per_sim":"210", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "1pctCO2" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "1pctCO2-bgc":{ - "activity_id":[ - "C4MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Biogeochemically-coupled specified concentration simulation in which CO2 increases at a rate of 1% per year until quadrupling", - "end_year":"", - "experiment":"biogeochemically-coupled version of 1 percent per year increasing CO2 experiment", - "experiment_id":"1pctCO2-bgc", - "min_number_yrs_per_sim":"150", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "1pctCO2-cdr":{ - "activity_id":[ - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"1 percent per year decrease in CO2 (immediately after reaching 4xCO2 in the 1pctCO2 simulation); then held constant at pre-industrial level (part of the CDR-reversibility experiment)", - "end_year":"", - "experiment":"1 percent per year decrease in CO2 from 4xCO2", - "experiment_id":"1pctCO2-cdr", - "min_number_yrs_per_sim":"200", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "1pctCO2" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "1pctCO2-rad":{ - "activity_id":[ - "C4MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Radiatively-coupled specified concentration simulation in which CO2 increases at a rate of 1% per year until quadrupling", - "end_year":"", - "experiment":"radiatively-coupled version of 1 percent per year increasing CO2 experiment", - "experiment_id":"1pctCO2-rad", - "min_number_yrs_per_sim":"150", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "1pctCO2Ndep":{ - "activity_id":[ - "C4MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Fully-coupled specified concentration simulation in which CO2 increases at a rate of 1% per year until quadrupling, plus an additional scenario of anthropogenic nitrogen deposition", - "end_year":"", - "experiment":"1 percent per year increasing CO2 experiment with increasing N-deposition", - "experiment_id":"1pctCO2Ndep", - "min_number_yrs_per_sim":"150", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "1pctCO2Ndep-bgc":{ - "activity_id":[ - "C4MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Biogeochemically-coupled specified concentration simulation in which CO2 increases at a rate of 1% per year until quadrupling, plus an additional scenario of anthropogenic nitrogen deposition", - "end_year":"", - "experiment":"biogeochemically-coupled version of 1 percent per year increasing CO2 experiment with increasing N-deposition", - "experiment_id":"1pctCO2Ndep-bgc", - "min_number_yrs_per_sim":"150", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "1pctCO2to4x-withism":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Idealized 1%/yr CO2 increase to 4xC02 over 140yrs and kept constant at 4xCO2 for an additional 200 to 400 yrs simulation that includes interactive ice sheets", - "end_year":"", - "experiment":"simulation with interactive ice sheet forced by 1 percent per year increase in CO2 to 4xCO2 (subsequently held fixed)", - "experiment_id":"1pctCO2to4x-withism", - "min_number_yrs_per_sim":"350", - "parent_activity_id":[ - "ISMIP6" - ], - "parent_experiment_id":[ - "piControl-withism" - ], - "required_model_components":[ - "AOGCM", - "ISM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "G1":{ - "activity_id":[ - "GeoMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Beginning from a preindustrial control run, simultaneously quadruple the CO2 concentration and reduce the solar constant such that the TOA radiative flux remains within +/m0.1 W/m2", - "end_year":"", - "experiment":"abrupt quadrupling of CO2 plus reduction in total solar irradiance", - "experiment_id":"G1", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "G6SST1":{ - "activity_id":[ - "GeoMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Time slice at 2020 (ScenarioMIP Tier 1 high forcing scenario)", - "end_year":"", - "experiment":"SSTs, forcings, and other prescribed conditions from year 2020 of SSP5-8.5", - "experiment_id":"G6SST1", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "ScenarioMIP" - ], - "parent_experiment_id":[ - "ssp585" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "G6SST2-solar":{ - "activity_id":[ - "GeoMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Time slice at 2100 (G6solar)", - "end_year":"", - "experiment":"SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G6solar", - "experiment_id":"G6SST2-solar", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "GeoMIP" - ], - "parent_experiment_id":[ - "G6solar" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "G6SST2-sulfur":{ - "activity_id":[ - "GeoMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Time slice at 2100 (G6sulfur)", - "end_year":"", - "experiment":"SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G6sulfur", - "experiment_id":"G6SST2-sulfur", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "GeoMIP" - ], - "parent_experiment_id":[ - "G6sulfur" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "G6solar":{ - "activity_id":[ - "GeoMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Using solar irradiance reduction, return the radiative forcing from a background of the ScenarioMIP high forcing to the ScenarioMIP middle forcing", - "end_year":"2100", - "experiment":"total solar irradiance reduction to reduce net forcing from SSP585 to SSP245", - "experiment_id":"G6solar", - "min_number_yrs_per_sim":"81", - "parent_activity_id":[ - "ScenarioMIP" - ], - "parent_experiment_id":[ - "ssp585" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2020", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "G6sulfur":{ - "activity_id":[ - "GeoMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Using equatorial SO2 injection, return the radiative forcing from a background of the ScenarioMIP high forcing to the ScenarioMIP middle forcing", - "end_year":"2100", - "experiment":"stratospheric sulfate aerosol injection to reduce net forcing from SSP585 to SSP245", - "experiment_id":"G6sulfur", - "min_number_yrs_per_sim":"81", - "parent_activity_id":[ - "ScenarioMIP" - ], - "parent_experiment_id":[ - "ssp585" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2020", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "G7SST1-cirrus":{ - "activity_id":[ - "GeoMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Time slice at 2020 (ScenarioMIP Tier 1 high forcing scenario and cirrus thinning according to G7cirrus)", - "end_year":"", - "experiment":"SSTs from year 2020 of SSP5-8.5; forcings and other prescribed conditions from year 2020 of SSP5-8.5 and cirrus thinning", - "experiment_id":"G7SST1-cirrus", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "ScenarioMIP" - ], - "parent_experiment_id":[ - "ssp585" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "G7SST2-cirrus":{ - "activity_id":[ - "GeoMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Time slice at 2100 (ScenarioMIP Tier 1 high forcing scenario and cirrus thinning according to G7cirrus)", - "end_year":"", - "experiment":"SSTs from year 2100 of SSP5-8.5; forcings and other prescribed conditions from year 2100 of G7cirrus", - "experiment_id":"G7SST2-cirrus", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "GeoMIP" - ], - "parent_experiment_id":[ - "G7cirrus" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "G7cirrus":{ - "activity_id":[ - "GeoMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Against a background of the ScenarioMIP high forcing, reduce cirrus cloud optical depth by a constant amount", - "end_year":"2100", - "experiment":"increase cirrus ice crystal fall speed to reduce net forcing in SSP585 by 1 W m-2", - "experiment_id":"G7cirrus", - "min_number_yrs_per_sim":"81", - "parent_activity_id":[ - "ScenarioMIP" - ], - "parent_experiment_id":[ - "ssp585" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2020", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "a4SST":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"As piSST, but with monthly-varying SSTs taken from years 111-140 of each model's own abrupt-4xCO2 experiment instead of from piControl. Sea-ice is unchanged from piSST", - "end_year":"", - "experiment":"as piSST but with SSTs from abrupt-4xCO2", - "experiment_id":"a4SST", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "a4SSTice":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"As piSST, but with monthly-varying SSTs and sea-ice taken from years 111-140 of each model's own abrupt-4xCO2 experiment instead of from piControl", - "end_year":"", - "experiment":"as piSST but with SSTs and sea ice from abrupt-4xCO2", - "experiment_id":"a4SSTice", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "a4SSTice-4xCO2":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"As a4SSTice, but CO2 is quadrupled, and the increase in CO2 is seen by both the radiation scheme and vegetation", - "end_year":"", - "experiment":"as piSST but with SSTs and sea ice from abrupt-4xCO2, and 4xCO2 seen by radiation and vegetation", - "experiment_id":"a4SSTice-4xCO2", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "abrupt-0p5xCO2":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Identical to the DECK abrupt-4xCO2, but at 0.5xCO2", - "end_year":"", - "experiment":"abrupt halving of CO2", - "experiment_id":"abrupt-0p5xCO2", - "min_number_yrs_per_sim":"150", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "abrupt-2xCO2":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Identical to the DECK abrupt-4xCO2, but at 2xCO2", - "end_year":"", - "experiment":"abrupt doubling of CO2", - "experiment_id":"abrupt-2xCO2", - "min_number_yrs_per_sim":"150", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "abrupt-4xCO2":{ - "activity_id":[ - "CMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"DECK: abrupt-4xCO2", - "end_year":"", - "experiment":"abrupt quadrupling of CO2", - "experiment_id":"abrupt-4xCO2", - "min_number_yrs_per_sim":"150", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "abrupt-solm4p":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Conceptually similar to abrupt 4xCO2 DECK experiment, except that the solar constant rather than CO2 is abruptly reduced by 4%", - "end_year":"", - "experiment":"abrupt 4% decrease in solar constant", - "experiment_id":"abrupt-solm4p", - "min_number_yrs_per_sim":"150", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "abrupt-solp4p":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Conceptually similar to abrupt 4xCO2 DECK experiment, except that the solar constant rather than CO2 is abruptly increased by 4%", - "end_year":"", - "experiment":"abrupt 4% increase in solar constant", - "experiment_id":"abrupt-solp4p", - "min_number_yrs_per_sim":"150", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "amip":{ - "activity_id":[ - "CMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"DECK: AMIP", - "end_year":"2014", - "experiment":"AMIP", - "experiment_id":"amip", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "amip-4xCO2":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"As CMIP5/CFMIP-2 amip4xCO2 experiment. AMIP experiment where SSTs are held at control values and the CO2 seen by the radiation scheme is quadrupled", - "end_year":"2014", - "experiment":"AMIP SSTs with 4xCO2", - "experiment_id":"amip-4xCO2", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "amip-TIP":{ - "activity_id":[ - "GMMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"The topography of the TIP is modified by setting surface elevations to 500m; to understand the combined thermal and mechanical forcing of the TIP. Same model as DECK", - "end_year":"2014", - "experiment":"same as \"amip\" run, but surface elevations of the Tibetan-Iranian Plateau and Himalayas reduced to 500m", - "experiment_id":"amip-TIP", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "amip-TIP-nosh":{ - "activity_id":[ - "GMMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Surface sensible heat released at the elevation above 500m over the TIP is not allowed to heat the atmosphere. Same model as DECK", - "end_year":"2014", - "experiment":"same as \"amip\" run, but sensible heat not allowed for elevations of the Tibetan-Iranian Plateau and Himalayas above 500m", - "experiment_id":"amip-TIP-nosh", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "amip-a4SST-4xCO2":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Same as amip, but a patterned SST anomaly is applied on top of the monthly-varying amip SSTs. This anomaly is a monthly climatology, taken from each model's own abrupt-4xCO2 run minus piControl (using the mean of years 111-140 of abrupt-4xCO2, and the parallel 30-year section of piControl). CO2 is quadrupled, and the increase in CO2 is seen by both the radiation scheme and vegetation", - "end_year":"2014", - "experiment":"as AMIP but with warming pattern from abrupt-4xCO2 added to SSTs and 4xCO2 seen by radiation and vegetation", - "experiment_id":"amip-a4SST-4xCO2", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "amip-climSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA5.2: investigate role of transient SST in recent climate change", - "end_year":"2014", - "experiment":"AMIP with climatological SIC", - "experiment_id":"amip-climSIC", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "amip" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "amip-climSST":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA5.1: investigate role of transient sea ice in recent climate change", - "end_year":"2014", - "experiment":"AMIP with climatological SST", - "experiment_id":"amip-climSST", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "amip" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "amip-future4K":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"As CMIP5/CFMIP-2 amipFuture experiment. AMIP experiment where SSTs are subject to a composite SST warming pattern derived from coupled models, scaled to an ice-free ocean mean of 4K", - "end_year":"2014", - "experiment":"AMIP with patterned 4K SST increase", - "experiment_id":"amip-future4K", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "amip-hist":{ - "activity_id":[ - "GMMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Extended AMIP run that covers 1870-2014. All natural and anthropogenic historical forcings as used in CMIP6 Historical Simulation will be included. AGCM resolution as CMIP6 Historical Simulation. The HadISST data will be used", - "end_year":"2014", - "experiment":"AMIP-style simulation covering the period 1870-2014", - "experiment_id":"amip-hist", - "min_number_yrs_per_sim":"145", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1870", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "amip-hld":{ - "activity_id":[ - "GMMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"The topography of the highlands in Africa, N. America and S. America TP is modified by setting surface elevations to a certain height (500m). Same model as DECK", - "end_year":"2014", - "experiment":"same as \"amip\" run, but surface elevations of the East African Highlands in Africa, Sierra Madre in N. America and Andes in S. America reduced to 500m", - "experiment_id":"amip-hld", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "amip-lfmip-pObs":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Land-hist land conditions; AMIP SSTs", - "end_year":"2014", - "experiment":"prescribed land (from pseudo-observations) and AMIP SSTs", - "experiment_id":"amip-lfmip-pObs", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "amip-lfmip-pdLC":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Scenario forced experiment with prescribed land surface climatology derived from modern conditions from the first historical ensemble member (1980-2014). SST and sea-ice from the first ensemble members of the historical and ssp585 experiments", - "end_year":"2014", - "experiment":"prescribed modern land surface climatology from historical, prescribed SST and sea-ice from historical plus scenario runs", - "experiment_id":"amip-lfmip-pdLC", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "amip-lfmip-rmLC":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Scenario forced experiment with prescribed land surface climatology derived from 30yr running mean from the first ensemble members of the historical and ssp585 experiments. SST and sea-ice from the first ensemble members of the historical and ssp585 experiments", - "end_year":"2014", - "experiment":"prescribed land surface climatology from historical plus scenario 30yr running mean, prescribed SST and sea-ice from historical plus scenario runs", - "experiment_id":"amip-lfmip-rmLC", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "amip-lwoff":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"As amip experiment, but with cloud-radiative effects switched off in the LW radiation code", - "end_year":"2014", - "experiment":"AMIP experiment with longwave cloud-radiative effects off", - "experiment_id":"amip-lwoff", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "amip-m4K":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"As amip experiment but SSTs are subject to a uniform cooling of 4K", - "end_year":"2014", - "experiment":"AMIP with uniform 4K SST decrease", - "experiment_id":"amip-m4K", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "amip-p4K":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"As CMIP5/CFMIP-2 amip4K experiment. AMIP experiment where SSTs are subject to a uniform warming of 4K", - "end_year":"2014", - "experiment":"AMIP with uniform 4K SST increase", - "experiment_id":"amip-p4K", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "amip-p4K-lwoff":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"As amip-p4K experiment, but with cloud-radiative effects switched off in the LW radiation code", - "end_year":"2014", - "experiment":"AMIP experiment with uniform 4K SST increase and with longwave cloud radiative effects off", - "experiment_id":"amip-p4K-lwoff", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "amip-piForcing":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Identical to standard AMIP experiment but from 1870-present with constant pre-industrial forcing levels (anthropogenic and natural)", - "end_year":"2014", - "experiment":"AMIP SSTs with pre-industrial anthropogenic and natural forcing", - "experiment_id":"amip-piForcing", - "min_number_yrs_per_sim":"145", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1870", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "aqua-4xCO2":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Extended version of CMIP5/CFMIP-2 aqua4xCO2 experiment. Aquaplanet experiment where SSTs are held at control values and the CO2 seen by the radiation scheme is quadrupled", - "end_year":"", - "experiment":"aquaplanet with control SST and 4xCO2", - "experiment_id":"aqua-4xCO2", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "aqua-control":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Extended version of CMIP5/CFMIP-2 aquaControl experiment. Aquaplanet (no land) experiment with no seasonal cycle forced with specified zonally symmetric SSTs", - "end_year":"", - "experiment":"aquaplanet control", - "experiment_id":"aqua-control", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "aqua-control-lwoff":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"As aqua-control experiment, but with cloud-radiative effects switched off in the LW radiation code", - "end_year":"", - "experiment":"aquaplanet control with longwave cloud radiative effects off", - "experiment_id":"aqua-control-lwoff", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "aqua-p4K":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Extended version of CMIP5/CFMIP-2 aqua4K experiment. Aquaplanet experiment where SSTs are subject to a uniform warming of 4K", - "end_year":"", - "experiment":"aquaplanet with uniform 4K SST increase", - "experiment_id":"aqua-p4K", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "aqua-p4K-lwoff":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"As aqua-p4K experiment, but with cloud-radiative effects switched off in the LW radiation code", - "end_year":"", - "experiment":"aquaplanet with uniform 4K SST increase and with longwave cloud radiative effects off", - "experiment_id":"aqua-p4K-lwoff", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "control-1950":{ - "activity_id":[ - "HighResMIP" - ], - "additional_allowed_model_components":[ - "AER" - ], - "description":"Coupled integrations with constant 1950\"s forcing", - "end_year":"", - "experiment":"coupled control with fixed 1950's forcing (HighResMIP equivalent of pre-industrial control)", - "experiment_id":"control-1950", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "HighResMIP" - ], - "parent_experiment_id":[ - "spinup-1950" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "control-slab":{ - "activity_id":[ - "VolMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"slab control run for volc-pinatubo-slab", - "end_year":"", - "experiment":"control with slab ocean", - "experiment_id":"control-slab", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM", - "SLAB" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "dcppA-assim":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"A2.3 Assimilation runs used to generate initial conditions for hindcasts", - "end_year":"2016", - "experiment":"Assimilation run paralleling the historical simulation, which may be used to generate hindcast initial conditions", - "experiment_id":"dcppA-assim", - "min_number_yrs_per_sim":"56", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"before 1961", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "dcppA-hindcast":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"A1 (and A2.1, A3.1, and A3.2) Decadal hindcasts begun near the end of each year from 1960 to 2019, or every other year at minimum. First full hindcast year follows start year (e.g., for s1960, first full hindcast year is 1961)", - "end_year":"5 - 10 years after start year", - "experiment":"hindcast initialized based on observations and using historical forcing", - "experiment_id":"dcppA-hindcast", - "min_number_yrs_per_sim":"5", - "parent_activity_id":[ - "no parent", - "DCPP" - ], - "parent_experiment_id":[ - "no parent", - "dcppA-assim" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"a year in the range 1960-2019", - "sub_experiment_id":[ - "s1960", - "s1961", - "s1962", - "s1963", - "s1964", - "s1965", - "s1966", - "s1967", - "s1968", - "s1969", - "s1970", - "s1971", - "s1972", - "s1973", - "s1974", - "s1975", - "s1976", - "s1977", - "s1978", - "s1979", - "s1980", - "s1981", - "s1982", - "s1983", - "s1984", - "s1985", - "s1986", - "s1987", - "s1988", - "s1989", - "s1990", - "s1991", - "s1992", - "s1993", - "s1994", - "s1995", - "s1996", - "s1997", - "s1998", - "s1999", - "s2000", - "s2001", - "s2002", - "s2003", - "s2004", - "s2005", - "s2006", - "s2007", - "s2008", - "s2009", - "s2010", - "s2011", - "s2012", - "s2013", - "s2014", - "s2015", - "s2016", - "s2017", - "s2018", - "s2019" - ], - "tier":"1" - }, - "dcppA-hindcast-niff":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"A4.1 Decadal hindcasts begun near the end of each year from 1960 to 2019, or every other year at minimum, but with no information from the future. First full hindcast year follows start year (e.g., for s1960, first full hindcast year is 1961)", - "end_year":"5 - 10 years after start year", - "experiment":"hindcast initialized based on observations but without using knowledge of subsequent historical forcing", - "experiment_id":"dcppA-hindcast-niff", - "min_number_yrs_per_sim":"5", - "parent_activity_id":[ - "no parent", - "DCPP" - ], - "parent_experiment_id":[ - "no parent", - "dcppA-assim" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"a year in the range 1960-2019", - "sub_experiment_id":[ - "s1960", - "s1961", - "s1962", - "s1963", - "s1964", - "s1965", - "s1966", - "s1967", - "s1968", - "s1969", - "s1970", - "s1971", - "s1972", - "s1973", - "s1974", - "s1975", - "s1976", - "s1977", - "s1978", - "s1979", - "s1980", - "s1981", - "s1982", - "s1983", - "s1984", - "s1985", - "s1986", - "s1987", - "s1988", - "s1989", - "s1990", - "s1991", - "s1992", - "s1993", - "s1994", - "s1995", - "s1996", - "s1997", - "s1998", - "s1999", - "s2000", - "s2001", - "s2002", - "s2003", - "s2004", - "s2005", - "s2006", - "s2007", - "s2008", - "s2009", - "s2010", - "s2011", - "s2012", - "s2013", - "s2014", - "s2015", - "s2016", - "s2017", - "s2018", - "s2019" - ], - "tier":"4" - }, - "dcppA-historical-niff":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"A4.2 Hindcasts initialized from historical climate simulations as in DCPP-A2.2, but with no information from the future. First full hindcast year follows start year (e.g., for s1960, first full hindcast year is 1961)", - "end_year":"5 - 10 years after start year", - "experiment":"hindcast initialized from historical climate simulation but without using knowledge of subsequent historical forcing", - "experiment_id":"dcppA-historical-niff", - "min_number_yrs_per_sim":"5", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"a year in the range 1960-2019", - "sub_experiment_id":[ - "s1960", - "s1961", - "s1962", - "s1963", - "s1964", - "s1965", - "s1966", - "s1967", - "s1968", - "s1969", - "s1970", - "s1971", - "s1972", - "s1973", - "s1974", - "s1975", - "s1976", - "s1977", - "s1978", - "s1979", - "s1980", - "s1981", - "s1982", - "s1983", - "s1984", - "s1985", - "s1986", - "s1987", - "s1988", - "s1989", - "s1990", - "s1991", - "s1992", - "s1993", - "s1994", - "s1995", - "s1996", - "s1997", - "s1998", - "s1999", - "s2000", - "s2001", - "s2002", - "s2003", - "s2004", - "s2005", - "s2006", - "s2007", - "s2008", - "s2009", - "s2010", - "s2011", - "s2012", - "s2013", - "s2014", - "s2015", - "s2016", - "s2017", - "s2018", - "s2019" - ], - "tier":"4" - }, - "dcppB-forecast":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"B1 (and B2.1, B2.2) Ongoing decadal forecasts. First full forecast year follows start year (e.g., for s2017, first full forecast year is 2018)", - "end_year":"5 years after start year", - "experiment":"forecast initialized from observations with forcing from ssp245", - "experiment_id":"dcppB-forecast", - "min_number_yrs_per_sim":"5", - "parent_activity_id":[ - "no parent", - "DCPP" - ], - "parent_experiment_id":[ - "no parent", - "dcppA-assim" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"a year in the range 2017-2029", - "sub_experiment_id":[ - "s2017", - "s2018", - "s2019", - "s2020", - "s2021", - "s2022", - "s2023", - "s2024", - "s2025", - "s2026", - "s2027", - "s2028", - "s2029" - ], - "tier":"1" - }, - "dcppC-amv-ExTrop-neg":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C1.7 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", - "end_year":"", - "experiment":"Idealized climate impact of negative extratropical AMV anomaly pattern", - "experiment_id":"dcppC-amv-ExTrop-neg", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "dcppC-amv-ExTrop-pos":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C1.7Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", - "end_year":"", - "experiment":"Idealized climate impact of positive extratropical AMV anomaly pattern", - "experiment_id":"dcppC-amv-ExTrop-pos", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "dcppC-amv-Trop-neg":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C1.8 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", - "end_year":"", - "experiment":"Idealized climate impact of negative tropical AMV anomaly pattern", - "experiment_id":"dcppC-amv-Trop-neg", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "dcppC-amv-Trop-pos":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C1.8 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", - "end_year":"", - "experiment":"idealized positive tropical AMV anomaly pattern", - "experiment_id":"dcppC-amv-Trop-pos", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "dcppC-amv-neg":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C1.3 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", - "end_year":"", - "experiment":"Idealized climate impact of negative AMV anomaly pattern", - "experiment_id":"dcppC-amv-neg", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "dcppC-amv-pos":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C1.2 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", - "end_year":"", - "experiment":"Idealized climate impact of positive AMV anomaly pattern", - "experiment_id":"dcppC-amv-pos", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "dcppC-atl-control":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C1.1 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", - "end_year":"", - "experiment":"Idealized Atlantic control", - "experiment_id":"dcppC-atl-control", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "dcppC-atl-pacemaker":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C1.11 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", - "end_year":"2014", - "experiment":"pacemaker Atlantic experiment", - "experiment_id":"dcppC-atl-pacemaker", - "min_number_yrs_per_sim":"65", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1910, 1920 or 1950", - "sub_experiment_id":[ - "s1910", - "s1920", - "s1950" - ], - "tier":"3" - }, - "dcppC-atl-spg":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C2.1 (and C2.2) Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs. First full hindcast year follows start year (e.g., for s1992, first full hindcast year is 1993)", - "end_year":"5 - 10 years after start year", - "experiment":"predictability of 1990s warming of Atlantic sub-polar gyre", - "experiment_id":"dcppC-atl-spg", - "min_number_yrs_per_sim":"5", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"A year in the range 1992-1999", - "sub_experiment_id":[ - "s1992", - "s1993", - "s1994", - "s1995", - "s1996", - "s1997", - "s1998", - "s1999" - ], - "tier":"3" - }, - "dcppC-forecast-addAgung":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C3.4 Effects of volcanoes on decadal prediction and predictability of forced and internal variability components. First full hindcast year is 2015", - "end_year":"5 - 10 years after start year", - "experiment":"2015 forecast with added Agung forcing", - "experiment_id":"dcppC-forecast-addAgung", - "min_number_yrs_per_sim":"5", - "parent_activity_id":[ - "no parent", - "DCPP" - ], - "parent_experiment_id":[ - "no parent", - "dcppA-assim" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2014", - "sub_experiment_id":[ - "s2014" - ], - "tier":"3" - }, - "dcppC-forecast-addElChichon":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C3.5 Effects of volcanoes on decadal prediction and predictability of forced and internal variability components. First full hindcast year is 2015", - "end_year":"5 - 10 years after start year", - "experiment":"2015 forecast with added El Chichon forcing", - "experiment_id":"dcppC-forecast-addElChichon", - "min_number_yrs_per_sim":"5", - "parent_activity_id":[ - "no parent", - "DCPP" - ], - "parent_experiment_id":[ - "no parent", - "dcppA-assim" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2014", - "sub_experiment_id":[ - "s2014" - ], - "tier":"3" - }, - "dcppC-forecast-addPinatubo":{ - "activity_id":[ - "DCPP", - "VolMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C3.6 Effects of volcanoes on decadal prediction and predictability of forced and internal variability components. First full hindcast year is 2015", - "end_year":"5 - 10 years after start year", - "experiment":"2015 forecast with added Pinatubo forcing", - "experiment_id":"dcppC-forecast-addPinatubo", - "min_number_yrs_per_sim":"5", - "parent_activity_id":[ - "no parent", - "DCPP" - ], - "parent_experiment_id":[ - "no parent", - "dcppA-assim" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2014", - "sub_experiment_id":[ - "s2014" - ], - "tier":"1" - }, - "dcppC-hindcast-noAgung":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C3.3 Effects of volcanoes on decadal prediction and predictability of forced and internal variability components. First full hindcast year is 1962", - "end_year":"5 - 10 years after start year", - "experiment":"hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast", - "experiment_id":"dcppC-hindcast-noAgung", - "min_number_yrs_per_sim":"5", - "parent_activity_id":[ - "no parent", - "DCPP" - ], - "parent_experiment_id":[ - "no parent", - "dcppA-assim" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1962", - "sub_experiment_id":[ - "s1962" - ], - "tier":"2" - }, - "dcppC-hindcast-noElChichon":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C3.2 Effects of volcanoes on decadal prediction and predictability of forced and internal variability components. First full hindcast year is 1982", - "end_year":"5 - 10 years after start year", - "experiment":"hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast", - "experiment_id":"dcppC-hindcast-noElChichon", - "min_number_yrs_per_sim":"5", - "parent_activity_id":[ - "no parent", - "DCPP" - ], - "parent_experiment_id":[ - "no parent", - "dcppA-assim" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1981", - "sub_experiment_id":[ - "s1981" - ], - "tier":"2" - }, - "dcppC-hindcast-noPinatubo":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C3.1 Effects of volcanoes on decadal prediction and predictability of forced and internal variability components. First full hindcast year is 1991", - "end_year":"5 - 10 years after start year", - "experiment":"hindcast but with only background volcanic forcing to be the same as that used in the 2015 forecast", - "experiment_id":"dcppC-hindcast-noPinatubo", - "min_number_yrs_per_sim":"5", - "parent_activity_id":[ - "no parent", - "DCPP" - ], - "parent_experiment_id":[ - "no parent", - "dcppA-assim" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1990", - "sub_experiment_id":[ - "s1990" - ], - "tier":"1" - }, - "dcppC-ipv-NexTrop-neg":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C1.9 and predictability of the hiatus and of similar long timescale variations of both signs", - "end_year":"", - "experiment":"idealized negative northern extratropical IPV anomaly pattern", - "experiment_id":"dcppC-ipv-NexTrop-neg", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "dcppC-ipv-NexTrop-pos":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C1.9 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", - "end_year":"", - "experiment":"idealized positive northern extratropical IPV anomaly pattern", - "experiment_id":"dcppC-ipv-NexTrop-pos", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "dcppC-ipv-neg":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C1.6 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", - "end_year":"", - "experiment":"idealized negative IPV anomaly pattern", - "experiment_id":"dcppC-ipv-neg", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "dcppC-ipv-pos":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C1.5 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", - "end_year":"", - "experiment":"idealized positive IPV anomaly pattern", - "experiment_id":"dcppC-ipv-pos", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "dcppC-pac-control":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C1.4 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs", - "end_year":"", - "experiment":"idealized Pacific control", - "experiment_id":"dcppC-pac-control", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "dcppC-pac-pacemaker":{ - "activity_id":[ - "DCPP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"C1.10 Mechanisms and predictability of the hiatus and of similar long timescale variations of both signs. First full hindcast year is 2015", - "end_year":"2014", - "experiment":"pacemaker Pacific experiment", - "experiment_id":"dcppC-pac-pacemaker", - "min_number_yrs_per_sim":"65", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1910, 1920 or 1950", - "sub_experiment_id":[ - "s1910", - "s1920", - "s1950" - ], - "tier":"3" - }, - "deforest-globe":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Idealized deforestation experiment, 20 million km2 forest removed linearly over a period of 50 years, with an additional 30 years with no specified change in forest cover; all other forcings held constant", - "end_year":"", - "experiment":"idealized transient global deforestation", - "experiment_id":"deforest-globe", - "min_number_yrs_per_sim":"81", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "esm-1pct-brch-1000PgC":{ - "activity_id":[ - "C4MIP", - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"A zero-emissions simulation (fully interactive CO2; emissions-driven configuration), initiated from the point in the 1pctCO2 experiment when the cumulative carbon emissions reach 1000 PgC", - "end_year":"", - "experiment":"zero emissions simulation branched from 1% run after 1000 PgC cumulative emission", - "experiment_id":"esm-1pct-brch-1000PgC", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "CMIP", - "C4MIP" - ], - "parent_experiment_id":[ - "1pctCO2", - "esm-1pctCO2" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "esm-1pct-brch-2000PgC":{ - "activity_id":[ - "C4MIP", - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"A zero-emissions simulation (fully interactive CO2; emissions-driven configuration), initiated from the point in the 1pctCO2 experiment when the cumulative carbon emissions reach 2000 PgC", - "end_year":"", - "experiment":"zero emissions simulation branched from 1% run after 2000 PgC cumulative emission", - "experiment_id":"esm-1pct-brch-2000PgC", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "CMIP", - "C4MIP" - ], - "parent_experiment_id":[ - "1pctCO2", - "esm-1pctCO2" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "esm-1pct-brch-750PgC":{ - "activity_id":[ - "C4MIP", - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"A zero-emissions simulation (fully interactive CO2; emissions-driven configuration), initiated from the point in the 1pctCO2 experiment when the cumulative carbon emissions reach 750 PgC", - "end_year":"", - "experiment":"zero emissions simulation branched from 1% run after 750 PgC cumulative emission", - "experiment_id":"esm-1pct-brch-750PgC", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "CMIP", - "C4MIP" - ], - "parent_experiment_id":[ - "1pctCO2", - "esm-1pctCO2" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "esm-1pctCO2":{ - "activity_id":[ - "C4MIP", - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"An emissions-driven simulation (fully interactive CO2), initiated from the esm-piControl using CO2 emissions diagnosed from the 1pctCO2 experiment so that the emissions-driven run replicates as closely as possible the 1pctCO2 concentration profile", - "end_year":"", - "experiment":"emissions driven 1% run", - "experiment_id":"esm-1pctCO2", - "min_number_yrs_per_sim":"150", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "esm-piControl" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "esm-bell-1000PgC":{ - "activity_id":[ - "C4MIP", - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"An emissions-driven simulation (fully interactive CO2), initiated from esm-piControl using CO2 emissions, amounting to 1000 PgC, following a bell-shape curve for 100 years followed by zero-emissions for 100 years", - "end_year":"", - "experiment":"emissions driven 1000PgC bell-curve", - "experiment_id":"esm-bell-1000PgC", - "min_number_yrs_per_sim":"200", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "esm-piControl" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "esm-bell-2000PgC":{ - "activity_id":[ - "C4MIP", - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"An emissions-driven simulation (fully interactive CO2), initiated from esm-piControl using CO2 emissions, amounting to 2000 PgC, following a bell-shape curve for 100 years followed by zero-emissions for 100 years", - "end_year":"", - "experiment":"emissions driven 2000PgC bell-curve", - "experiment_id":"esm-bell-2000PgC", - "min_number_yrs_per_sim":"200", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "esm-piControl" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "esm-bell-750PgC":{ - "activity_id":[ - "C4MIP", - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"An emissions-driven simulation (fully interactive CO2), initiated from esm-piControl using CO2 emissions, amounting to 750 PgC, following a bell-shape curve for 100 years followed by zero-emissions for 100 years", - "end_year":"", - "experiment":"emissions driven 750PgC bell-curve", - "experiment_id":"esm-bell-750PgC", - "min_number_yrs_per_sim":"200", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "esm-piControl" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "esm-hist":{ - "activity_id":[ - "CMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"CMIP6 historical (CO2 emission-driven)", - "end_year":"2014", - "experiment":"all-forcing simulation of the recent past with atmospheric CO2 concentration calculated", - "experiment_id":"esm-hist", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "esm-piControl" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "esm-hist-ext":{ - "activity_id":[ - "CMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Extension beyond 2014 of the CMIP6 historical (CO2 emission-driven)", - "end_year":"present", - "experiment":"post-2014 all-forcing simulation with atmospheric CO2 concentration calculated", - "experiment_id":"esm-hist-ext", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "esm-hist" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "esm-past1000":{ - "activity_id":[ - "PMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Parallel experiment to past1000, but for model set-ups with interactive carbon cycle. Main forcings: trace gases, volcanoes, solar variability, land-use", - "end_year":"1849", - "experiment":"last millennium experiment with interactive carbon cycle", - "experiment_id":"esm-past1000", - "min_number_yrs_per_sim":"1000", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"850", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "esm-pi-CO2pulse":{ - "activity_id":[ - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"100 Gt C instantly added (positive pulse) to a pre-industrial atmosphere (part of the CDR-pi-pulse experiment)", - "end_year":"", - "experiment":"pulse addition of 100 Gt carbon to pre-industrial atmosphere", - "experiment_id":"esm-pi-CO2pulse", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "esm-piControl" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "esm-pi-cdr-pulse":{ - "activity_id":[ - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"100 Gt C instantly removed (negative pulse) from a pre-industrial atmosphere (part of the CDR-pi-pulse experiment)", - "end_year":"", - "experiment":"pulse removal of 100 Gt carbon from pre-industrial atmosphere", - "experiment_id":"esm-pi-cdr-pulse", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "esm-piControl" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "esm-piControl":{ - "activity_id":[ - "CMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"DECK: control (emission-driven)", - "end_year":"", - "experiment":"pre-industrial control simulation with CO2 concentration calculated", - "experiment_id":"esm-piControl", - "min_number_yrs_per_sim":"500", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "esm-piControl-spinup" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "esm-piControl-spinup":{ - "activity_id":[ - "CMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"DECK: spin-up portion of the control (emission-driven)", - "end_year":"", - "experiment":"pre-industrial control simulation with CO2 concentration calculated (spin-up)", - "experiment_id":"esm-piControl-spinup", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "esm-ssp534-over":{ - "activity_id":[ - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"CO2 emissions driven SSP5-3.4 overshoot scenario simulation optionally extending to year 2300 (part of the CDR-overshoot experiment)", - "end_year":"2100 or 2300", - "experiment":"emission-driven SSP5-3.4-OS scenario", - "experiment_id":"esm-ssp534-over", - "min_number_yrs_per_sim":"61", - "parent_activity_id":[ - "C4MIP" - ], - "parent_experiment_id":[ - "esm-ssp585" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"2040", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "esm-ssp585":{ - "activity_id":[ - "C4MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Emissions-driven future scenario simulation", - "end_year":"2100", - "experiment":"emission-driven RCP8.5 based on SSP5", - "experiment_id":"esm-ssp585", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "esm-hist" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "esm-ssp585-ocn-alk":{ - "activity_id":[ - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"emission driven SSP5-8.5 scenario with 0.14 Pmol/yr alkalinity added to ice free ocean surface waters from 2020 optionally extended from 2100 to 2300 (part of the CDR-ocean-alk experiment)", - "end_year":"2100 or 2300", - "experiment":"emission-driven SSP5-8.5 scenario but with ocean alkalinization from year 2020 onward", - "experiment_id":"esm-ssp585-ocn-alk", - "min_number_yrs_per_sim":"81", - "parent_activity_id":[ - "C4MIP" - ], - "parent_experiment_id":[ - "esm-ssp585" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"2020", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "esm-ssp585-ocn-alk-stop":{ - "activity_id":[ - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Simulation of abrupt termination of ocean alkalinsation in 2070 during an emission driven SSP5-8.5 scenario (part of the CDR-ocean-alk experiment)", - "end_year":"2100", - "experiment":"emission-driven SSP5-8.5 scenario with alkalinization terminated in year 2070", - "experiment_id":"esm-ssp585-ocn-alk-stop", - "min_number_yrs_per_sim":"31", - "parent_activity_id":[ - "CDRMIP" - ], - "parent_experiment_id":[ - "esm-ssp585-ocn-alk" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"2070", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "esm-ssp585-ssp126Lu":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Additional land use policy sensitivity simulation for high radiative forcing scenario, keep all forcings the same as in C4MIP esmssp5-8.5 scenario except use SSP1-2.6 land use; emission driven", - "end_year":"2100", - "experiment":"emissions-driven SSP5-8.5 with SSP1-2.6 land use", - "experiment_id":"esm-ssp585-ssp126Lu", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "esm-hist" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "esm-ssp585-ssp126Lu-ext":{ - "activity_id":[ - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Long term extension of CO2 emissions driven SSP5-8.5 with SSP1-2.6 land use forcing (part of the CDR-afforestation experiment)", - "end_year":"2300", - "experiment":"extension of the LUMIP emissions-driven simulation following SSP5-8.5 with SSP1-2.6 land use", - "experiment_id":"esm-ssp585-ssp126Lu-ext", - "min_number_yrs_per_sim":"200", - "parent_activity_id":[ - "LUMIP" - ], - "parent_experiment_id":[ - "esm-ssp585-ssp126Lu" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"2101", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "esm-ssp585ext":{ - "activity_id":[ - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Long term extension of CO2 emissions driven SSP5-8.5 scenario (used in the CDR-afforestation and CDR-ocean-alk experiments)", - "end_year":"2300", - "experiment":"emission-driven long-term extension of the SSP5-8.5 scenario", - "experiment_id":"esm-ssp585ext", - "min_number_yrs_per_sim":"200", - "parent_activity_id":[ - "C4MIP" - ], - "parent_experiment_id":[ - "esm-ssp585" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"2101", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "esm-yr2010CO2-CO2pulse":{ - "activity_id":[ - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Upon initialization from end of year 2015 of esm-yr2010CO2-control instantaneously introduce 100 Gt C (\"positive pulse\"; part of the CDR-yr2010-pulse experiment)", - "end_year":"2115", - "experiment":"instantaneous 100 Gt C addition to an industrial era atmosphere", - "experiment_id":"esm-yr2010CO2-CO2pulse", - "min_number_yrs_per_sim":"101", - "parent_activity_id":[ - "CDRMIP" - ], - "parent_experiment_id":[ - "esm-yr2010CO2-control" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "esm-yr2010CO2-cdr-pulse":{ - "activity_id":[ - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Upon initialization from end of year 2015 of esm-yr2010CO2-control instantaneously remove 100 Gt C (\"negative pulse\"; part of the CDR-yr2010-pulse experiment", - "end_year":"2115", - "experiment":"instantaneous 100 Gt C removal from industrial era atmosphere", - "experiment_id":"esm-yr2010CO2-cdr-pulse", - "min_number_yrs_per_sim":"101", - "parent_activity_id":[ - "CDRMIP" - ], - "parent_experiment_id":[ - "esm-yr2010CO2-control" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "esm-yr2010CO2-control":{ - "activity_id":[ - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Forced with CO2 emissions diagnosed from historical and yr2010CO2 simulations and all other forcings the same as in that simulation (part of the CDR-yr2010-pulse experiment)", - "end_year":"2115", - "experiment":"historical emissions followed by fixed 2010 emissions (both model-diagnosed)", - "experiment_id":"esm-yr2010CO2-control", - "min_number_yrs_per_sim":"266", - "parent_activity_id":[ - "CDRMIP" - ], - "parent_experiment_id":[ - "esm-piControl" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "esm-yr2010CO2-noemit":{ - "activity_id":[ - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Upon initialization from end of year 2015 of esm-yr2010-control CO2 emissions are fixed at zero; all other forcing fixed at 2010 level (part of the CDR-yr2010-pulse experiment)", - "end_year":"2115", - "experiment":"branches from esm-yr2010CO2-control with zero emissions", - "experiment_id":"esm-yr2010CO2-noemit", - "min_number_yrs_per_sim":"101", - "parent_activity_id":[ - "CDRMIP" - ], - "parent_experiment_id":[ - "esm-yr2010CO2-control" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "faf-all":{ - "activity_id":[ - "FAFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"1xCO2 experiment, parallel to piControl, forced over the ocean simultaneously by surface windstress (as in the wind experiment), net heat flux (as in the heat experiment) and net freshwater flux (as in the water experiment) anomalies obtained from the CMIP5 ensemble mean of 1pctCO2 experiments at the time of 2xCO2, using a passive tracer to prevent negative climate feedback on the heat flux applied", - "end_year":"", - "experiment":"control plus perturbative surface fluxes of momentum, heat and water into ocean", - "experiment_id":"faf-all", - "min_number_yrs_per_sim":"70", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "faf-antwater-stress":{ - "activity_id":[ - "FAFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"1xCO2 experiment, parallel to piControl, forced over the ocean with the momentum flux perturbation field of faf-stress and a surface freshwater flux of 0.1 Sv in total to be applied uniformly around the coast of Antarctica in whatever way is most suitable in the model", - "end_year":"", - "experiment":"control plus perturbative surface fluxes of momentum and freshwater into ocean, the latter around the coast of Antarctica only", - "experiment_id":"faf-antwater-stress", - "min_number_yrs_per_sim":"70", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "faf-heat":{ - "activity_id":[ - "FAFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"1xCO2 experiment, parallel to piControl, forced over the ocean by surface net heat flux anomalies obtained from the CMIP5 ensemble mean of 1pctCO2 experiments at the time of 2xCO2, using a passive tracer to prevent negative climate feedback on the heat flux applied", - "end_year":"", - "experiment":"control plus perturbative surface flux of heat into ocean", - "experiment_id":"faf-heat", - "min_number_yrs_per_sim":"70", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "faf-heat-NA0pct":{ - "activity_id":[ - "FAFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"1xCO2 experiment, parallel to piControl, forced over the ocean by the same method and with the same surface net heat flux perturbation field as in faf-heat, except that within part of the North Atlantic ocean the perturbation is zero", - "end_year":"", - "experiment":"control plus perturbative surface flux of heat into ocean", - "experiment_id":"faf-heat-NA0pct", - "min_number_yrs_per_sim":"70", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "faf-heat-NA50pct":{ - "activity_id":[ - "FAFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"1xCO2 experiment, parallel to piControl, forced over the ocean by the same method and with the same surface net heat flux perturbation field as in faf-heat, except that within part of the North Atlantic ocean the perturbation is multiplied by 0.5", - "end_year":"", - "experiment":"control plus perturbative surface flux of heat into ocean", - "experiment_id":"faf-heat-NA50pct", - "min_number_yrs_per_sim":"70", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "faf-passiveheat":{ - "activity_id":[ - "FAFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"1xCO2 experiment, parallel to piControl, with a flux of passive tracer added at the ocean surface at the same rate as the surface net heat flux anomaly applied in the FAFMIP heat experiment", - "end_year":"", - "experiment":"control plus surface flux of passive heat tracer into ocean", - "experiment_id":"faf-passiveheat", - "min_number_yrs_per_sim":"70", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "faf-stress":{ - "activity_id":[ - "FAFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"1xCO2 experiment, parallel to piControl, forced over the ocean by surface windstress anomalies obtained from the CMIP5 ensemble mean of 1pctCO2 experiments at the time of 2xCO2", - "end_year":"", - "experiment":"control plus perturbative surface flux of momentum into ocean", - "experiment_id":"faf-stress", - "min_number_yrs_per_sim":"70", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "faf-water":{ - "activity_id":[ - "FAFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"1xCO2 experiment, parallel to piControl, forced over the ocean by surface net freshwater flux anomalies obtained from the CMIP5 ensemble mean of 1pctCO2 experiments at the time of 2xCO2", - "end_year":"", - "experiment":"control plus perturbative surface flux of water into ocean", - "experiment_id":"faf-water", - "min_number_yrs_per_sim":"70", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "futSST-pdSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA1.4: investigate role of SST in polar amplification", - "end_year":"2001", - "experiment":"Atmosphere time slice with future SST and present day SIC", - "experiment_id":"futSST-pdSIC", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "amip" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "futureSST-4xCO2-solar":{ - "activity_id":[ - "GeoMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Time slice at year 100 of G1ext to examine radiative forcing of abrupt-4xCO2 and G1", - "end_year":"", - "experiment":"year 100 SSTs from abrupt-4xCO2 with quadrupled CO2 and solar reduction", - "experiment_id":"futureSST-4xCO2-solar", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "GeoMIP" - ], - "parent_experiment_id":[ - "G1" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "highres-future":{ - "activity_id":[ - "HighResMIP" - ], - "additional_allowed_model_components":[ - "AER" - ], - "description":"Coupled integrations with SSP5 forcing (nearest to CMIP5 RCP8.5 (as in highresSST-future)", - "end_year":"2050", - "experiment":"coupled future 2015-2050 using a scenario as close to CMIP5 RCP8.5 as possible within CMIP6", - "experiment_id":"highres-future", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "HighResMIP" - ], - "parent_experiment_id":[ - "hist-1950" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "highresSST-4xCO2":{ - "activity_id":[ - "HighResMIP" - ], - "additional_allowed_model_components":[ - "AER" - ], - "description":"Similar to CFMIP amip-4xCO2, SSTs are held at highresSST-present values and the CO2 seen by the radiation scheme is quadrupled", - "end_year":"2014", - "experiment":"highresSST-present SST with 4xCO2 concentrations", - "experiment_id":"highresSST-4xCO2", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "HighResMIP" - ], - "parent_experiment_id":[ - "highresSST-present" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "highresSST-LAI":{ - "activity_id":[ - "HighResMIP" - ], - "additional_allowed_model_components":[ - "AER" - ], - "description":"Forced global atmosphere-land simulations as highresSST-present, but using an common LAI dataset across models", - "end_year":"2014", - "experiment":"common LAI dataset within the highresSST-present experiment", - "experiment_id":"highresSST-LAI", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "HighResMIP" - ], - "parent_experiment_id":[ - "highresSST-present" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "highresSST-future":{ - "activity_id":[ - "HighResMIP" - ], - "additional_allowed_model_components":[ - "AER" - ], - "description":"Extend highresSST-present to 2050 with agreed SSP5/RCP8.5 forcings (with option to extend further to 2100)", - "end_year":"2050", - "experiment":"forced atmosphere experiment for 2015-2050 using SST/sea-ice derived from CMIP5 RCP8.5 simulations and a scenario as close to RCP8.5 as possible within CMIP6", - "experiment_id":"highresSST-future", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "HighResMIP" - ], - "parent_experiment_id":[ - "highresSST-present" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "highresSST-p4K":{ - "activity_id":[ - "HighResMIP" - ], - "additional_allowed_model_components":[ - "AER" - ], - "description":"Similar to CFMIP amip-p4K, add a uniform warming of 4K to highresSST-present SSTs and run the experiment parallel to highresSST-present", - "end_year":"2014", - "experiment":"uniform 4K warming of highresSST-present SST", - "experiment_id":"highresSST-p4K", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "HighResMIP" - ], - "parent_experiment_id":[ - "highresSST-present" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "highresSST-present":{ - "activity_id":[ - "HighResMIP" - ], - "additional_allowed_model_components":[ - "AER" - ], - "description":"Forced global atmosphere-land simulations using daily 1/4 degree SST and sea-ice forcings, and aerosol optical properties (not emissions) to constrain model spread", - "end_year":"2014", - "experiment":"forced atmosphere experiment for 1950-2014", - "experiment_id":"highresSST-present", - "min_number_yrs_per_sim":"65", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1950", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "highresSST-smoothed":{ - "activity_id":[ - "HighResMIP" - ], - "additional_allowed_model_components":[ - "AER" - ], - "description":"Forced global atmosphere-land simulations as highresSST-present, but using smoothed SST to investigate impact of SST variability", - "end_year":"2014", - "experiment":"smoothed SST version of highresSST-present", - "experiment_id":"highresSST-smoothed", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "HighResMIP" - ], - "parent_experiment_id":[ - "highresSST-present" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "hist-1950":{ - "activity_id":[ - "HighResMIP" - ], - "additional_allowed_model_components":[ - "AER" - ], - "description":"Coupled integrations with historic external forcings (as in highresSST-present)", - "end_year":"2014", - "experiment":"coupled historical 1950-2014", - "experiment_id":"hist-1950", - "min_number_yrs_per_sim":"65", - "parent_activity_id":[ - "HighResMIP" - ], - "parent_experiment_id":[ - "spinup-1950" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1950", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "hist-1950HC":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Historical WMGHG concentrations and NTCF emissions, 1950 halocarbon concentrations, start 1950", - "end_year":"2014", - "experiment":"historical forcing, but with1950s halocarbon concentrations; initialized in 1950", - "experiment_id":"hist-1950HC", - "min_number_yrs_per_sim":"65", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM", - "AER", - "CHEM" - ], - "start_year":"1950", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "hist-CO2":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Historical CO2-only run", - "end_year":"2020", - "experiment":"historical CO2-only run", - "experiment_id":"hist-CO2", - "min_number_yrs_per_sim":"171", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "hist-GHG":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Historical well-mixed GHG-only run. Models with interactive chemistry schemes should either turn off the chemistry or use a preindustrial climatology of stratospheric and tropospheric ozone in their radiation schemes. This will ensure that ozone is fixed in all these simulations, and simulated responses in models with and without coupled chemistry are comparable", - "end_year":"2020", - "experiment":"historical well-mixed GHG-only run", - "experiment_id":"hist-GHG", - "min_number_yrs_per_sim":"171", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "hist-GHG-cmip5":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"historical well-mixed GHG-only run. Models with interactive chemistry schemes should either turn off the chemistry or use a preindustrial climatology of stratospheric and tropospheric ozone in their radiation schemes. This will ensure that ozone is fixed in all these simulations, and simulated responses in models with and without coupled chemistry are comparable (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)", - "end_year":"2020", - "experiment":"historical well-mixed GHG-only run (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)", - "experiment_id":"hist-GHG-cmip5", - "min_number_yrs_per_sim":"171", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl-cmip5" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "hist-aer":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"historical anthropogenic aerosols-only run", - "end_year":"2020", - "experiment":"historical anthropogenic aerosols-only run", - "experiment_id":"hist-aer", - "min_number_yrs_per_sim":"171", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "hist-aer-cmip5":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"historical anthropogenic aerosols-only run (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)", - "end_year":"2020", - "experiment":"historical anthropogenic aerosols-only run (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)", - "experiment_id":"hist-aer-cmip5", - "min_number_yrs_per_sim":"171", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl-cmip5" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "hist-all-aer2":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Historical ALL forcing run with alternate estimates of aerosol concentrations/emissions", - "end_year":"2020", - "experiment":"historical ALL-forcing run with alternate estimates of aerosol forcing", - "experiment_id":"hist-all-aer2", - "min_number_yrs_per_sim":"171", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "hist-all-nat2":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Historical ALL forcing run with alternates estimate of solar and volcanic forcing", - "end_year":"2020", - "experiment":"historical ALL-forcing run with alternate estimates of natural forcing", - "experiment_id":"hist-all-nat2", - "min_number_yrs_per_sim":"171", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "hist-bgc":{ - "activity_id":[ - "C4MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Concentration-driven historical simulation, biogeochemically-coupled", - "end_year":"2014", - "experiment":"biogeochemically-coupled version of the simulation of the recent past with CO2 concentration prescribed", - "experiment_id":"hist-bgc", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "hist-nat":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Historical natural-only run", - "end_year":"2020", - "experiment":"historical natural-only run", - "experiment_id":"hist-nat", - "min_number_yrs_per_sim":"171", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "hist-nat-cmip5":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"historical natural-only run (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)", - "end_year":"2020", - "experiment":"historical natural-only run (CMIP5-era historical [1850-2005] and RCP4.5 [2006-2020] forcing)", - "experiment_id":"hist-nat-cmip5", - "min_number_yrs_per_sim":"171", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl-cmip5" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "hist-noLu":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Same as CMIP6 historical but with land cover held at 1850, no human activity; concentration driven", - "end_year":"2014", - "experiment":"historical with no land-use change", - "experiment_id":"hist-noLu", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "hist-piAer":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Historical WMGHG, halocarbon concentrations and O3 precursor emissions, 1850 aerosol precursor emissions", - "end_year":"2014", - "experiment":"historical forcing, but with pre-industrial aerosol emissions", - "experiment_id":"hist-piAer", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM", - "AER" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "hist-piNTCF":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Historical WMGHG and halocarbons concentrations, 1850 NTCF emissions", - "end_year":"2014", - "experiment":"historical forcing, but with pre-industrial NTCF emissions", - "experiment_id":"hist-piNTCF", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM", - "AER" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "hist-resAMO":{ - "activity_id":[ - "GMMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Pacemaker 20th century historical run that includes all forcing as used in CMIP6 Historical Simulation, and the observational historical SST is restored in the AMO domain (0deg-70degN, 70degW-0deg)", - "end_year":"2014", - "experiment":"initialized from \"historical\" run year 1870 and SSTs in the AMO domain (0deg-70degN, 70degW-0deg) restored to AMIP SSTs with historical forcings", - "experiment_id":"hist-resAMO", - "min_number_yrs_per_sim":"145", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1870", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "hist-resIPO":{ - "activity_id":[ - "GMMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Pacemaker 20th century historical run that includes all forcing as used in CMIP6 Historical Simulation, and the observational historical SST is restored in the tropical lobe of the IPO domain (20degS-20degN, 175degE-75degW)", - "end_year":"2014", - "experiment":"initialized from \"historical\" run year 1870 and SSTs in tropical lobe of the IPO domain (20degS-20degN, 175degE-75degW) restored to AMIP SSTs with historical forcings", - "experiment_id":"hist-resIPO", - "min_number_yrs_per_sim":"145", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1870", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "hist-sol":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Historical solar-only transient simulation using settings from CMIP6 historical simulation but fixed GHG and ODS (1850 level)", - "end_year":"2020", - "experiment":"historical solar-only run", - "experiment_id":"hist-sol", - "min_number_yrs_per_sim":"171", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "hist-spAer-aer":{ - "activity_id":[ - "RFMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Prescribed anthropogenic aerosol optical properties. Changes in aerosols only", - "end_year":"2014", - "experiment":"historical simulation with specified anthropogenic aerosols, no other forcings", - "experiment_id":"hist-spAer-aer", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "hist-spAer-all":{ - "activity_id":[ - "RFMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Prescribed anthropogenic aerosol optical properties. All forcings", - "end_year":"2014", - "experiment":"historical simulation with specified anthropogenic aerosols", - "experiment_id":"hist-spAer-all", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "hist-stratO3":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "BGC" - ], - "description":"Historical stratospheric ozone-only. In models with coupled chemistry, the chemistry scheme should be turned off, and the simulated ensemble mean monthly mean 3D stratospheric ozone concentrations from the CMIP6 historical simulations should be prescribed. Tropospheric ozone should be fixed at 3D long-term monthly mean piControl values, with a value of 100 ppbv ozone concentration in this piControl climatology used to separate the troposphere from the stratosphere. In models without coupled chemistry the same stratospheric ozone prescribed in the CMIP6 historical simulations should be prescribed. Stratospheric ozone concentrations will be provided by CCMI", - "end_year":"2020", - "experiment":"historical stratospheric ozone-only run", - "experiment_id":"hist-stratO3", - "min_number_yrs_per_sim":"171", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "hist-totalO3":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "BGC" - ], - "description":"Historical total ozone-only. In models with coupled chemistry, the chemistry scheme should be turned off, and the simulated ensemble mean monthly mean 3D ozone concentrations from the CMIP6 historical simulations should be prescribed through the depth of the atmosphere. In models without coupled chemistry the same ozone prescribed in the CMIP6 historical simulations should be prescribed", - "end_year":"2020", - "experiment":"historical total ozone-only run", - "experiment_id":"hist-totalO3", - "min_number_yrs_per_sim":"171", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "hist-volc":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Historical volcanic-only run", - "end_year":"2020", - "experiment":"historical volcanic-only run", - "experiment_id":"hist-volc", - "min_number_yrs_per_sim":"171", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "histSST":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Historical transient with SSTs prescribed from historical", - "end_year":"2014", - "experiment":"historical prescribed SSTs and historical forcing", - "experiment_id":"histSST", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "histSST-1950HC":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Historical WMGHG concentrations and NTCF emissions, 1950 halocarbon concentrations", - "end_year":"2014", - "experiment":"historical SSTs and historical forcing, but with 1950 halocarbon concentrations. Experiment is initialized from histSST (AerChemMIP) simulation from January 1950", - "experiment_id":"histSST-1950HC", - "min_number_yrs_per_sim":"65", - "parent_activity_id":[ - "AerChemMIP" - ], - "parent_experiment_id":[ - "histSST" - ], - "required_model_components":[ - "AGCM", - "AER", - "CHEM" - ], - "start_year":"1950", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "histSST-noLu":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"An uncoupled (atmosphere and land) experiment in which sea surface temperatures (SST) and sea ice concentrations (SICONC) are taken from historical (as in existing histSST experiment). All forcing agents to follow historical except LULCC. LULCC set to 1850 (exactly following hist-noLu prescription)", - "end_year":"2014", - "experiment":"historical SSTs and historical forcing, but with pre-industrial LULCC", - "experiment_id":"histSST-noLu", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "histSST-piAer":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Historical WMGHG, halocarbon concentrations and tropospheric ozone precursors emissions, 1850 aerosol precursor emissions, prescribed SSTs", - "end_year":"2014", - "experiment":"historical SSTs and historical forcing, but with pre-industrial aerosol emissions", - "experiment_id":"histSST-piAer", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "histSST-piCH4":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Historical (non-CH4) WMGHG concentrations and NTCF emissions, 1850 CH4 concentrations", - "end_year":"2014", - "experiment":"historical SSTs and historical forcing, but with pre-industrial methane concentrations", - "experiment_id":"histSST-piCH4", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER", - "CHEM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "histSST-piN2O":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Historical (non-N2O) WMGHG concentrations and NTCF emissions, 1850 N2O concentrations", - "end_year":"2014", - "experiment":"historical SSTs and historical forcings, but with pre-industrial N2O concentrations", - "experiment_id":"histSST-piN2O", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER", - "CHEM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "histSST-piNTCF":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Historical WMGHG concentrations and halocarbons emissions, 1850 NTCF emissions, prescribed SSTs", - "end_year":"2014", - "experiment":"historical SSTs and historical forcing, but with pre-industrial NTCF emissions", - "experiment_id":"histSST-piNTCF", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "histSST-piO3":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Historical WMGHG, halocarbon concentrations and aerosol precursor emissions, 1850 tropospheric ozone precursors emissions, prescribed SSTs", - "end_year":"2014", - "experiment":"historical SSTs and historical forcing, but with pre-industrial ozone precursor emissions", - "experiment_id":"histSST-piO3", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER", - "CHEM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "historical":{ - "activity_id":[ - "CMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"CMIP6 historical", - "end_year":"2014", - "experiment":"all-forcing simulation of the recent past", - "experiment_id":"historical", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "CMIP", - "PMIP" - ], - "parent_experiment_id":[ - "piControl", - "past1000", - "past2k" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "historical-cmip5":{ - "activity_id":[ - "CMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"CMIP5 historical experiment, using CMIP5-era [1850-2005] forcing", - "end_year":"2005", - "experiment":"all-forcing simulation of the recent past (CMIP5-era [1850-2005] forcing)", - "experiment_id":"historical-cmip5", - "min_number_yrs_per_sim":"156", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl-cmip5" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "historical-ext":{ - "activity_id":[ - "CMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Extension beyond 2014 of the CMIP6 historical", - "end_year":"present", - "experiment":"post-2014 all-forcing simulation", - "experiment_id":"historical-ext", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "historical-withism":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Historical simulation that includes interactive ice sheets. Set up follows the historical experiment", - "end_year":"2014", - "experiment":"historical with interactive ice sheet", - "experiment_id":"historical-withism", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "ISMIP6" - ], - "parent_experiment_id":[ - "piControl-withism" - ], - "required_model_components":[ - "AOGCM", - "ISM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ism-1pctCO2to4x-self":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Idealized 1%/yr CO2 increase to 4xC02 over 140yrs and kept constant at 4xCO2 for an additional 200 to 400 yrs simulation with ice sheets forced \"offline\" with DECK 1pctCO2 using forcing from its own AOGCM", - "end_year":"", - "experiment":"offline ice sheet model forced by ISM's own AOGCM 1pctCO2to4x output", - "experiment_id":"ism-1pctCO2to4x-self", - "min_number_yrs_per_sim":"350", - "parent_activity_id":[ - "ISMIP6" - ], - "parent_experiment_id":[ - "ism-piControl-self" - ], - "required_model_components":[ - "ISM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ism-1pctCO2to4x-std":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Idealized 1%/yr CO2 increase to 4xC02 over 140yrs and kept constant at 4xCO2 for an additional 200 to 400 yrs simulation with ice sheets forced \"offline\" with DECK 1pctCO2 using a standard forcing", - "end_year":"", - "experiment":"offline ice sheet model forced by ISMIP6-specified AOGCM 1pctCO2to4x output", - "experiment_id":"ism-1pctCO2to4x-std", - "min_number_yrs_per_sim":"350", - "parent_activity_id":[ - "ISMIP6" - ], - "parent_experiment_id":[ - "ism-pdControl-std" - ], - "required_model_components":[ - "ISM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ism-amip-std":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Offline ice sheet evolution for the last few decades forced by amip", - "end_year":"2014", - "experiment":"offline ice sheet forced by ISMIP6-specified AGCM AMIP output", - "experiment_id":"ism-amip-std", - "min_number_yrs_per_sim":"36", - "parent_activity_id":[ - "ISMIP6" - ], - "parent_experiment_id":[ - "ism-ctrl-std" - ], - "required_model_components":[ - "ISM" - ], - "start_year":"1979", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "ism-asmb-std":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Offline ice sheet simulation with synthetic atmospheric dataset to explore the uncertainty in sea level due to ice sheet initialization", - "end_year":"", - "experiment":"offline ice sheet forced by initMIP synthetic atmospheric experiment", - "experiment_id":"ism-asmb-std", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "ISMIP6" - ], - "parent_experiment_id":[ - "ism-ctrl-std" - ], - "required_model_components":[ - "ISM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ism-bsmb-std":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Offline ice sheet simulation with synthetic oceanic dataset to explore the uncertainty in sea level due to ice sheet initialization", - "end_year":"", - "experiment":"offline ice sheet forced by initMIP synthetic oceanic experiment", - "experiment_id":"ism-bsmb-std", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "ISMIP6" - ], - "parent_experiment_id":[ - "ism-ctrl-std" - ], - "required_model_components":[ - "ISM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ism-ctrl-std":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Offline ice sheet control run for the initMIP experiment that explores the uncertainty in sea level due to ice sheet initialization", - "end_year":"", - "experiment":"offline ice sheet model initMIP control", - "experiment_id":"ism-ctrl-std", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "ISM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ism-historical-self":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Historical simulation using \"offline\" ice sheet models. Forcing for ice sheet model is from its own AOGCM", - "end_year":"2014", - "experiment":"offline ice sheet forced by ISM's own AOGCM historical output", - "experiment_id":"ism-historical-self", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "ISMIP6" - ], - "parent_experiment_id":[ - "ism-piControl-self" - ], - "required_model_components":[ - "ISM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ism-historical-std":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Historical simulation using \"offline\" ice sheet models. Forcing for ice sheet model is the standard dataset based on CMIP6 AOGCM historical", - "end_year":"2014", - "experiment":"offline ice sheet forced by ISMIP6-specified AOGCM historical output", - "experiment_id":"ism-historical-std", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "ISMIP6" - ], - "parent_experiment_id":[ - "ism-pdControl-std" - ], - "required_model_components":[ - "ISM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ism-lig127k-std":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Last interglacial simulation of ice sheet evolution driven by PMIP lig127k", - "end_year":"", - "experiment":"offline ice sheet forced by ISMIP6-specified AGCM last interglacial output", - "experiment_id":"ism-lig127k-std", - "min_number_yrs_per_sim":"20000", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "ISM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "ism-pdControl-std":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Present-day control simulation for \"offline\" ice sheets", - "end_year":"", - "experiment":"offline ice sheet forced by ISMIP6-specified AOGCM pdControl output", - "experiment_id":"ism-pdControl-std", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "ISM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ism-piControl-self":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Pre-industrial control simulation for \"offline\" ice sheets", - "end_year":"", - "experiment":"offline ice sheet forced by ISM's own AOGCM piControl output", - "experiment_id":"ism-piControl-self", - "min_number_yrs_per_sim":"500", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "ISM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ism-ssp585-self":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Future climate ScenarioMIP SSP5-8.5 simulation using \"offline\" ice sheet models. Forcing for ice sheet model is from its own AOGCM", - "end_year":"2100 or 2300", - "experiment":"offline ice sheet forced by ISM's own AOGCM ssp585 output", - "experiment_id":"ism-ssp585-self", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "ISMIP6" - ], - "parent_experiment_id":[ - "ism-historical-self" - ], - "required_model_components":[ - "ISM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ism-ssp585-std":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Future climate ScenarioMIP SSP5-8.5 simulation using \"offline\" ice sheet models. Forcing for ice sheet model is the standard dataset based on ScenarioMIP ssp585", - "end_year":"2100 or 2300", - "experiment":"offline ice sheet forced by ISMIP6-specified AOGCM ssp585 output", - "experiment_id":"ism-ssp585-std", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "ISMIP6" - ], - "parent_experiment_id":[ - "ism-historical-std" - ], - "required_model_components":[ - "ISM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "land-cCO2":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Same as land-hist except with CO2 held constant", - "end_year":"2014", - "experiment":"historical land-only constant CO2", - "experiment_id":"land-cCO2", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND", - "BGC" - ], - "start_year":"1850 or 1700", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "land-cClim":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Same as land-hist except with climate held constant", - "end_year":"2014", - "experiment":"historical land-only constant climate", - "experiment_id":"land-cClim", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND", - "BGC" - ], - "start_year":"1850 or 1700", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "land-crop-grass":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Same as land-hist but with all new crop and pastureland treated as unmanaged grassland", - "end_year":"2014", - "experiment":"historical land-only with cropland as natural grassland", - "experiment_id":"land-crop-grass", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND", - "BGC" - ], - "start_year":"1850 or 1700", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "land-crop-noFert":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Same as land-hist but with fertilization rates and area held at 1850 levels/distribution", - "end_year":"2014", - "experiment":"historical land-only with no fertilizer", - "experiment_id":"land-crop-noFert", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND", - "BGC" - ], - "start_year":"1850 or 1700", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "land-crop-noIrrig":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Same as land-hist but with irrigated area held at 1850 levels", - "end_year":"2014", - "experiment":"historical land-only with no irrigation", - "experiment_id":"land-crop-noIrrig", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND", - "BGC" - ], - "start_year":"1850 or 1700", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "land-crop-noIrrigFert":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Same as land-hist except with plants in cropland area utilizing at least some form of crop management (e.g., planting and harvesting) rather than simulating cropland vegetation as a natural grassland. Irrigated area and fertilizer area/use should be held constant", - "end_year":"2014", - "experiment":"historical land-only with managed crops but with irrigation and fertilization held constant", - "experiment_id":"land-crop-noIrrigFert", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND", - "BGC" - ], - "start_year":"1850 or 1700", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "land-hist":{ - "activity_id":[ - "LS3MIP", - "LUMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Land only simulations", - "end_year":"2014", - "experiment":"historical land-only", - "experiment_id":"land-hist", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND" - ], - "start_year":"1850 or 1700", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "land-hist-altLu1":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Land only simulations", - "end_year":"2014", - "experiment":"historical land-only alternate land-use history", - "experiment_id":"land-hist-altLu1", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND", - "BGC" - ], - "start_year":"1850 or 1700", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "land-hist-altLu2":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Land only simulations", - "end_year":"2014", - "experiment":"historical land-only alternate land use history", - "experiment_id":"land-hist-altLu2", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND", - "BGC" - ], - "start_year":"1850 or 1700", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "land-hist-altStartYear":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Same as land-hist except starting from either 1700 (for models that typically start in 1850) or 1850 (for models that typically start in 1700)", - "end_year":"2014", - "experiment":"historical land-only alternate start year", - "experiment_id":"land-hist-altStartYear", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND", - "BGC" - ], - "start_year":"1850 or 1700", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "land-hist-cruNcep":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Land only simulations", - "end_year":"2014", - "experiment":"as land-hist with CRU-NCEP forcings", - "experiment_id":"land-hist-cruNcep", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "land-hist-princeton":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Land only simulations", - "end_year":"2014", - "experiment":"as land-hist with Princeton forcings", - "experiment_id":"land-hist-princeton", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "land-hist-wfdei":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Land only simulations", - "end_year":"2014", - "experiment":"as land-hist with WFDEI forcings", - "experiment_id":"land-hist-wfdei", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "land-noFire":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Same as land-hist but with anthropogenic ignition and suppression held to 1850 levels", - "end_year":"2014", - "experiment":"historical land-only with no human fire management", - "experiment_id":"land-noFire", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND", - "BGC" - ], - "start_year":"1850 or 1700", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "land-noLu":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Same as land-hist except no land-use change", - "end_year":"2014", - "experiment":"historical land-only with no land-use change", - "experiment_id":"land-noLu", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND" - ], - "start_year":"1850 or 1700", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "land-noPasture":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Same as land-hist but with grazing and other management on pastureland held at 1850 levels/distribution, i.e. all new pastureland is treated as unmanaged grassland (as in land-crop-grass)", - "end_year":"2014", - "experiment":"historical land-only with constant pastureland", - "experiment_id":"land-noPasture", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND", - "BGC" - ], - "start_year":"1850 or 1700", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "land-noShiftCultivate":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Same as land-hist except shifting cultivation turned off. An additional LUC transitions dataset will be provided as a data layer within LUMIP LUH2 dataset with shifting cultivation deactivated", - "end_year":"2014", - "experiment":"historical land-only with shifting cultivation turned off", - "experiment_id":"land-noShiftCultivate", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND", - "BGC" - ], - "start_year":"1850 or 1700", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "land-noWoodHarv":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Same as land-hist but with wood harvest maintained at 1850 amounts/areas", - "end_year":"2014", - "experiment":"historical land-only with no wood harvest", - "experiment_id":"land-noWoodHarv", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND", - "BGC" - ], - "start_year":"1850 or 1700", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "land-ssp126":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"land only simulation for ssp1-2.6", - "end_year":"2100", - "experiment":"future ssp1-2.6 land only", - "experiment_id":"land-ssp126", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "land-ssp434":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"land only simulation for ssp4-3.4", - "end_year":"2100", - "experiment":"future ssp4-3.4 land only", - "experiment_id":"land-ssp434", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "land-ssp585":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"land only simulation for ssp5-8.5", - "end_year":"2100", - "experiment":"future ssp5-8.5 land only", - "experiment_id":"land-ssp585", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "LAND" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "lfmip-initLC":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Initialized pseudo-observations land", - "end_year":"2014", - "experiment":"initialized from \"historical\" run year 1980, but with land conditions initialized from pseudo-observations", - "experiment_id":"lfmip-initLC", - "min_number_yrs_per_sim":"35", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1980", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "lfmip-pdLC":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Prescribed land conditions 1980-2014 climate", - "end_year":"2100", - "experiment":"prescribed land conditions (from current climate climatology) and initialized from \"historical\" run year 1980", - "experiment_id":"lfmip-pdLC", - "min_number_yrs_per_sim":"121", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1980", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "lfmip-pdLC-cruNcep":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Prescribed land conditions 1980-2014 climate with Land-Hist-cruNcep", - "end_year":"2100", - "experiment":"as LFMIP-pdLC with Land-Hist-cruNcep", - "experiment_id":"lfmip-pdLC-cruNcep", - "min_number_yrs_per_sim":"121", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1980", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "lfmip-pdLC-princeton":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Prescribed land conditions 1980-2014 climate with Land-Hist-princeton", - "end_year":"2100", - "experiment":"as LFMIP-pdLC with Land-Hist-princeton", - "experiment_id":"lfmip-pdLC-princeton", - "min_number_yrs_per_sim":"121", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1980", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "lfmip-pdLC-wfdei":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Prescribed land conditions 1980-2014 climate with Land-Hist-wfdei", - "end_year":"2100", - "experiment":"as LFMIP-pdLC with Land-Hist-wfdei", - "experiment_id":"lfmip-pdLC-wfdei", - "min_number_yrs_per_sim":"121", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1980", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "lfmip-rmLC":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Prescribed land conditions 30yr running mean", - "end_year":"2100", - "experiment":"prescribed land conditions (from running mean climatology) and initialized from \"historical\" run year 1980", - "experiment_id":"lfmip-rmLC", - "min_number_yrs_per_sim":"121", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1980", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "lfmip-rmLC-cruNcep":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Prescribed land conditions 30yr running mean with Land-Hist-cruNcep", - "end_year":"2100", - "experiment":"as LFMIP-rmLC with Land-Hist-cruNcep", - "experiment_id":"lfmip-rmLC-cruNcep", - "min_number_yrs_per_sim":"121", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1980", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "lfmip-rmLC-princeton":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Prescribed land conditions 30yr running mean with Land-Hist-princeton", - "end_year":"2100", - "experiment":"as LFMIP-rmLC with Land-Hist-princeton", - "experiment_id":"lfmip-rmLC-princeton", - "min_number_yrs_per_sim":"121", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1980", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "lfmip-rmLC-wfdei":{ - "activity_id":[ - "LS3MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Prescribed land conditions 30yr running mean with Land-Hist-wfdei", - "end_year":"2100", - "experiment":"as LFMIP-rmLC with Land-Hist-wfdei", - "experiment_id":"lfmip-rmLC-wfdei", - "min_number_yrs_per_sim":"121", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1980", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "lgm":{ - "activity_id":[ - "PMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"main forcings: ice-sheet; trace gases, astronomical parameters, dust (forcing, or feedback if dust cycle represented in model)", - "end_year":"", - "experiment":"last glacial maximum", - "experiment_id":"lgm", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "lig127k":{ - "activity_id":[ - "PMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"main forcings: astronomical parameters, trace gases, dust (forcing, or feedback if dust cycle represented in model)", - "end_year":"", - "experiment":"last interglacial (127k)", - "experiment_id":"lig127k", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "midHolocene":{ - "activity_id":[ - "PMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"main forcings: trace gases, orbital parameters, dust (forcing, or feedback if dust cycle represented in model)", - "end_year":"", - "experiment":"mid-Holocene", - "experiment_id":"midHolocene", - "min_number_yrs_per_sim":"200", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "midPliocene-eoi400":{ - "activity_id":[ - "PMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"main forcings: trace gases, orography, ice-sheet", - "end_year":"", - "experiment":"mid-Pliocene warm period", - "experiment_id":"midPliocene-eoi400", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "modelSST-futArcSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA4.2: investigate role of background state in response to Arctic sea ice", - "end_year":"2001", - "experiment":"Atmosphere time slice with present day coupled model SST and future Arctic SIC", - "experiment_id":"modelSST-futArcSIC", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "amip" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "modelSST-pdSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA4.1: atmosphere only model present day control with coupled model SST", - "end_year":"2001", - "experiment":"Atmosphere time slice present day control with coupled model SST", - "experiment_id":"modelSST-pdSIC", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "amip" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "omip1":{ - "activity_id":[ - "OMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Global ocean - sea-ice coupled experiment forced with the Coordinated Ocean - ice Reference Experiments inter-annually varying atmospheric and river data sets for years 1948-2009. Initial ocean tracer fields are based on observations. Simulation length for at least 5 cycles of the 62-year forcing is required. The 5-cycle length is recommended to facilitate intercomparison within the experiment by using a common simulation length, but a longer simulation length is also accepted. For each simulation, set the beginning of the simulation (e.g., 1700 and 1638 for the 5-cycle and 6-cycle simulation, respectively) as the 'base time' of the time axis. Simulations with different simulation lengths by a single model are treated as members of an ensemble. Thus, different 'realization' indexes (e.g., r1, r2, r3, ...) should be used in a global attribute named 'variant_index' (e.g., r1i1p1f1). It is requested that information relevant to understanding the differences in members of an ensemble of simulations is reported in a global attribute named 'variant_info'. This information should also be recorded in the ES-DOC documentation of each experiment performed by a model and be made available via the 'further_info_url' attribute. All Priority=1 OMIP diagnostics (Omon, Oyr) are requested for all cycles of the 62-year forcing to quantify drift. All OMIP diagnostics (Priority=1,2,3) are requested for the last cycle", - "end_year":"", - "experiment":"OMIP experiment forced by Large and Yeager (CORE-2, NCEP) atmospheric data set and initialized with observed physical and biogeochemical ocean data", - "experiment_id":"omip1", - "min_number_yrs_per_sim":"310", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "OGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "omip1-spunup":{ - "activity_id":[ - "OMIP" - ], - "additional_allowed_model_components":[], - "description":"Same as the omip1 experiment except that it is not initialized with observed climatologies; rather it is initialized with results from at least a 2000-year spin up of the coupled physical-biogeochemical models. The spin up simulations may be made with the classic online or offline approach, or with tracer-acceleration techniques or fast solvers. If an online approach is used, at the end of the 5th cycle of CORE-II forcing, the model's physical fields should be reinitialized to the values at the start of the 3rd cycle in order to avoid long-term drift in those fields and to assure that they will not diverge greatly from physical fields in the omip1 simulation. The spin up also includes radiocarbon to evaluate deep-ocean circulation", - "end_year":"", - "experiment":"OMIP experiment forced by Large and Yeager (CORE-2, NCEP) atmospheric data set and initialized from at least a 2000-year spin up of the coupled physical-biogeochemical model", - "experiment_id":"omip1-spunup", - "min_number_yrs_per_sim":"310", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "OGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "omip2":{ - "activity_id":[ - "OMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Global ocean - sea-ice coupled experiment forced with the JRA55-do inter-annually varying atmospheric and river data sets for years 1958-2018. Initial ocean tracer fields are based on observations. Simulation length for at least 6 cycles of the 61-year forcing is required. The 6-cycle length is recommended to facilitate intercomparison within the experiment by using a common simulation length, but a longer simulation length is also accepted. In each simulation, set the beginning of the simulation (e.g., 1653 for the 6-cycle simulation) as the 'base time' of the time axis. Simulations with different simulation lengths by a single model are treated as members of an ensemble. Thus, different 'realization' indexes (e.g., r1, r2, r3, ...) should be used in a global attribute named 'variant_index' (e.g., r1i1p1f1). It is requested that information relevant to understanding the differences in members of an ensemble of simulations is reported in a global attribute named 'variant_info'. This information should also be recorded in the ES-DOC documentation of each experiment performed by a model and be made available via the 'further_info_url' attribute. All Priority=1 OMIP diagnostics (Omon, Oyr) are requested for all cycles of the 61-year forcing to quantify drift. All OMIP diagnostics (Priority=1,2,3) are requested for the last cycle", - "end_year":"", - "experiment":"OMIP experiment forced by JRA55-do atmospheric data set and initialized with observed physical and biogeochemical ocean data", - "experiment_id":"omip2", - "min_number_yrs_per_sim":"366", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "OGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "omip2-spunup":{ - "activity_id":[ - "OMIP" - ], - "additional_allowed_model_components":[], - "description":"Same as the omip2 experiment except that it is not initialized with observed climatologies; rather it is initialized with results from at least a 2000-year spin up of the coupled physical-biogeochemical models. The spin up simulations may be made with the classic online or offline approach, or with tracer-acceleration techniques or fast solvers. If an online approach is used, at the end of the 6th cycle of the JRA55-do forcing, the model's physical fields should be reinitialized to the values at the start of the 4th cycle in order to avoid long-term drift in those fields and to assure that they will not diverge greatly from physical fields in the omip2 simulation. The spin up also includes radiocarbon to evaluate deep-ocean circulation", - "end_year":"", - "experiment":"OMIP experiment forced by JRA55-do atmospheric data set and initialized from at least a 2000-year spin up of the coupled physical-biogeochemical model", - "experiment_id":"omip2-spunup", - "min_number_yrs_per_sim":"366", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "OGCM", - "BGC" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "pa-futAntSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA2.5: investigate response to Antarctic sea ice in coupled model", - "end_year":"2001", - "experiment":"Partially-coupled time slice constrained by future Antarctic SIC", - "experiment_id":"pa-futAntSIC", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "pa-futAntSIC-ext":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA6.3: investigate decadal and longer timescale response to Antarctic sea ice", - "end_year":"2099", - "experiment":"Partially-coupled extended simulation with future Antarctic SIC", - "experiment_id":"pa-futAntSIC-ext", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "pa-futArcSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA2.3: investigate response to Arctic sea ice in coupled model", - "end_year":"2001", - "experiment":"Partially-coupled time slice constrained by future Arctic SIC", - "experiment_id":"pa-futArcSIC", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "pa-futArcSIC-ext":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA6.2: investigate decadal and longer timescale response to Arctic sea ice", - "end_year":"2099", - "experiment":"Partially-coupled extended simulation with future Arctic SIC", - "experiment_id":"pa-futArcSIC-ext", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "pa-pdSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA2.1: coupled model present day control constrained by oberved sea ice", - "end_year":"2001", - "experiment":"Partially-coupled time slice contrained by present day SIC", - "experiment_id":"pa-pdSIC", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "pa-pdSIC-ext":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA6.1: centennial coupled model present day control constrained by oberved sea ice", - "end_year":"2099", - "experiment":"Partially-coupled extended simulation constrained by present day SIC", - "experiment_id":"pa-pdSIC-ext", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "pa-piAntSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA2.4: investigate response to Antarctic sea ice in coupled model", - "end_year":"2001", - "experiment":"Partially-coupled time slice with pre-industrial Antarctic SIC", - "experiment_id":"pa-piAntSIC", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "pa-piArcSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA2.2: investigate response to Arctic sea ice in coupled model", - "end_year":"2001", - "experiment":"Partially-coupled time slice constrained by pre-industrial Arctic SIC", - "experiment_id":"pa-piArcSIC", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "past1000":{ - "activity_id":[ - "PMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"main forcings: trace gases, volcanoes, solar variability, land use", - "end_year":"1849", - "experiment":"last millennium", - "experiment_id":"past1000", - "min_number_yrs_per_sim":"1000", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"850", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "past1000-solaronly":{ - "activity_id":[ - "PMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Parallel experiment to past1000. Instead of the complete forcing set, only solar (TSI, SSI) forcing is considered", - "end_year":"1849", - "experiment":"last millennium experiment using only solar forcing", - "experiment_id":"past1000-solaronly", - "min_number_yrs_per_sim":"1000", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "past1000-volconly":{ - "activity_id":[ - "PMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Parallel experiment to past1000. Instead of the complete forcing set, only volcanic forcing is considered", - "end_year":"1849", - "experiment":"last millennium experiment using only volcanic forcing", - "experiment_id":"past1000-volconly", - "min_number_yrs_per_sim":"1000", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "past2k":{ - "activity_id":[ - "PMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Experiment extending the past1000 simulation back in time to include the first millennium CE. Main forcings: trace gases, volcanoes, solar variability, land-use. past1000 forcings data sets include the first millennium, except for land-use. For the latter, a linear ramp-up to 850CE values is recommended", - "end_year":"1849", - "experiment":"last two millennia experiment", - "experiment_id":"past2k", - "min_number_yrs_per_sim":"1849", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "pdSST-futAntSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA1.8: investigate response to Antarctic sea ice and its role in polar amplification", - "end_year":"2001", - "experiment":"Atmosphere time slice with present day SST and future Antarctic SIC", - "experiment_id":"pdSST-futAntSIC", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "amip" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "pdSST-futArcSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA1.6: investigate response to Arctic sea ice and its role in polar amplification", - "end_year":"2001", - "experiment":"Atmosphere time slice with present day SST and future Arctic SIC", - "experiment_id":"pdSST-futArcSIC", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "amip" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "pdSST-futArcSICSIT":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA1.10: investigate role of sea ice thickness in response to Arctic sea ice", - "end_year":"2001", - "experiment":"Atmosphere time slice with present day SST and future Arctic SIC and sea ice thickness", - "experiment_id":"pdSST-futArcSICSIT", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "amip" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "pdSST-futBKSeasSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA3.2: investigate response to sea ice in Barents and Kara Seas", - "end_year":"2001", - "experiment":"Atmosphere time slice with present day SST and future Barents and Kara Seas SIC", - "experiment_id":"pdSST-futBKSeasSIC", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "amip" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "pdSST-futOkhotskSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA3.1: investigate response to sea ice in Sea of Okhotsk", - "end_year":"2001", - "experiment":"Atmosphere time slice with present day SST and future Sea of Okhotsk SIC", - "experiment_id":"pdSST-futOkhotskSIC", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "amip" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "pdSST-pdSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA1.1: atmosphere only model present day control", - "end_year":"2001", - "experiment":"Atmosphere time slice with present day SST and SIC", - "experiment_id":"pdSST-pdSIC", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "amip" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "pdSST-pdSICSIT":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA1.9: atmosphere only model present day control with sea ice thickness", - "end_year":"2001", - "experiment":"Atmosphere time slice constrained by present day conditions including sea ice thickness", - "experiment_id":"pdSST-pdSICSIT", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "amip" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "pdSST-piAntSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA1.7: investigate response to Antarctic sea ice and its role in polar amplification", - "end_year":"2001", - "experiment":"Atmosphere time slice with present day SST and pre-industrial Antarctic SIC", - "experiment_id":"pdSST-piAntSIC", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "amip" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "pdSST-piArcSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA1.5: investigate response to Arctic sea ice and its role in polar amplification", - "end_year":"2001", - "experiment":"Atmosphere time slice with present day SST and pre-industrial Arctic SIC", - "experiment_id":"pdSST-piArcSIC", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "amip" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "piClim-2xDMS":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"1850 control with doubled emissions of DMS", - "end_year":"", - "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of DMS", - "experiment_id":"piClim-2xDMS", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "piClim-2xNOx":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"1850 control with doubled emissions of lightning NOx", - "end_year":"", - "experiment":"pre-industrial climatological SSTs and forcing, but with doubled production of NOx due to lightning", - "experiment_id":"piClim-2xNOx", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER", - "CHEM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "piClim-2xVOC":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"1850 control with doubled emissions of biogenic VOCs", - "end_year":"", - "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of biogenic VOCs", - "experiment_id":"piClim-2xVOC", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER", - "CHEM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "piClim-2xdust":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"1850 control with doubled dust emissions", - "end_year":"", - "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of dust", - "experiment_id":"piClim-2xdust", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piClim-2xfire":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"1850 control with doubled emissions of fires", - "end_year":"", - "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions from fires", - "experiment_id":"piClim-2xfire", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "piClim-2xss":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"1850 control with doubled sea salt emissions", - "end_year":"", - "experiment":"pre-industrial climatological SSTs and forcing, but with doubled emissions of sea salt", - "experiment_id":"piClim-2xss", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piClim-4xCO2":{ - "activity_id":[ - "RFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"As in piClim-control but with 4xCO2", - "end_year":"", - "experiment":"effective radiative forcing by 4xCO2", - "experiment_id":"piClim-4xCO2", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "piClim-BC":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Perturbation from 1850 control using 2014 BC emissions", - "end_year":"", - "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 black carbon emissions", - "experiment_id":"piClim-BC", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piClim-CH4":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Perturbation from 1850 control using 2014 CH4 concentrations", - "end_year":"", - "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 methane concentrations (including chemistry)", - "experiment_id":"piClim-CH4", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER", - "CHEM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "piClim-HC":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Perturbation from 1850 control using 2014 halocarbon concentrations", - "end_year":"", - "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 halocarbon concentrations (including chemistry)", - "experiment_id":"piClim-HC", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER", - "CHEM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "piClim-N2O":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Perturbation from 1850 control using 2014 N2O concentrations", - "end_year":"", - "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 N2O concentrations (including chemistry)", - "experiment_id":"piClim-N2O", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER", - "CHEM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piClim-NH3":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Perturbation from 1850 control using 2014 NH3 emissions", - "end_year":"", - "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 ammonia emissions", - "experiment_id":"piClim-NH3", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "piClim-NOx":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Perturbation from 1850 control using 2014 NOx emissions", - "end_year":"", - "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 NOx emissions", - "experiment_id":"piClim-NOx", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER", - "CHEM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "piClim-NTCF":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Perturbation from 1850 control using 2014 aerosol and ozone precursor emissions", - "end_year":"", - "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 NTCF emissions", - "experiment_id":"piClim-NTCF", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "piClim-O3":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Perturbation from 1850 control using 2014 ozone precursor emissions", - "end_year":"", - "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 ozone precursor emissions", - "experiment_id":"piClim-O3", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER", - "CHEM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piClim-OC":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Perturbation from 1850 control using 2014 OC emissions", - "end_year":"", - "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 organic carbon emissions", - "experiment_id":"piClim-OC", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "piClim-SO2":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Perturbation from 1850 control using 2014 SO2 emissions", - "end_year":"", - "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 SO2 emissions", - "experiment_id":"piClim-SO2", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "piClim-VOC":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Perturbation from 1850 control using 2014 CO/VOC emissions", - "end_year":"", - "experiment":"pre-industrial climatological SSTs and forcing, but with 2014 VOC emissions", - "experiment_id":"piClim-VOC", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM", - "AER", - "CHEM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "piClim-aer":{ - "activity_id":[ - "RFMIP", - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"As in piClim-control but with with present-day aerosols. Note that this experiment is considered to be tier 1 by RFMIP but tier 2 by AerChemMIP", - "end_year":"", - "experiment":"effective radiative forcing by present-day aerosols", - "experiment_id":"piClim-aer", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "piClim-anthro":{ - "activity_id":[ - "RFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"As in piClim-control but with present-day anthropogenic forcing (greenhouse gases, ozone, aerosols and land-use)", - "end_year":"", - "experiment":"effective radiative forcing by present day anthropogenic agents", - "experiment_id":"piClim-anthro", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "piClim-control":{ - "activity_id":[ - "RFMIP", - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"30-year atmosphere only integration using preindustrial sea-surface temperature and sea-ice climatology. Interactive vegetation", - "end_year":"", - "experiment":"Control simulation providing baseline for evaluating effective radiative forcing (ERF)", - "experiment_id":"piClim-control", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "piClim-ghg":{ - "activity_id":[ - "RFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"As in piClim-control but with present-day non-ozone greenhouse gases", - "end_year":"", - "experiment":"effective radiative forcing by present-day greenhouse gases", - "experiment_id":"piClim-ghg", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "piClim-histaer":{ - "activity_id":[ - "RFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Time-varying forcing by aerosols. SST and sea ice fixed at preindustrial control. Interactive vegetation", - "end_year":"2100", - "experiment":"transient effective radiative forcing by aerosols", - "experiment_id":"piClim-histaer", - "min_number_yrs_per_sim":"251", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piClim-histall":{ - "activity_id":[ - "RFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Time-varying forcing. SST and sea ice fixed at preindustrial control. Interactive vegetation", - "end_year":"2100", - "experiment":"transient effective radiative forcing", - "experiment_id":"piClim-histall", - "min_number_yrs_per_sim":"251", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piClim-histghg":{ - "activity_id":[ - "RFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Time-varying forcing by non-ozone GHGs. SST and sea ice fixed at preindustrial control. Interactive vegetation", - "end_year":"2100", - "experiment":"transient effective radiative forcing by greenhouse gases", - "experiment_id":"piClim-histghg", - "min_number_yrs_per_sim":"251", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piClim-histnat":{ - "activity_id":[ - "RFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Time-varying forcing from volcanos, solar variability, etc. SST and sea ice fixed at preindustrial control. Interactive vegetation", - "end_year":"2100", - "experiment":"transient effective radiative forcing by natural perturbations", - "experiment_id":"piClim-histnat", - "min_number_yrs_per_sim":"251", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piClim-lu":{ - "activity_id":[ - "RFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"As in piClim-control but with present-day land use", - "end_year":"", - "experiment":"effective radiative forcing by present-day land use", - "experiment_id":"piClim-lu", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "piClim-spAer-aer":{ - "activity_id":[ - "RFMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Prescribed anthropogenic aerosol optical properties. Aerosol forcings", - "end_year":"", - "experiment":"effective radiative forcing at present day with specified anthropogenic aerosol optical properties, all forcings", - "experiment_id":"piClim-spAer-aer", - "min_number_yrs_per_sim":"", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piClim-spAer-anthro":{ - "activity_id":[ - "RFMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Prescribed anthropogenic aerosol optical properties. Anthropogenic forcings", - "end_year":"", - "experiment":"effective radiative forcing at present day with specified anthropogenic aerosol optical properties, anthropogenic forcings", - "experiment_id":"piClim-spAer-anthro", - "min_number_yrs_per_sim":"", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piClim-spAer-histaer":{ - "activity_id":[ - "RFMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Prescribed anthropogenic aerosol optical properties. Aerosol forcings", - "end_year":"2014", - "experiment":"transient effective radiative forcing with specified anthropogenic aerosol optical properties, aerosol forcing", - "experiment_id":"piClim-spAer-histaer", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piClim-spAer-histall":{ - "activity_id":[ - "RFMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Prescribed anthropogenic aerosol optical properties. All anthropogenic and natural forcings", - "end_year":"2014", - "experiment":"transient effective radiative forcing with specified anthropogenic aerosol optical properties, all forcings", - "experiment_id":"piClim-spAer-histall", - "min_number_yrs_per_sim":"165", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"1850", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piControl":{ - "activity_id":[ - "CMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"DECK: control", - "end_year":"", - "experiment":"pre-industrial control", - "experiment_id":"piControl", - "min_number_yrs_per_sim":"500", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl-spinup" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "piControl-cmip5":{ - "activity_id":[ - "CMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"DECK: control (CMIP5-era pre-industrial forcing)", - "end_year":"", - "experiment":"pre-industrial control (CMIP5-era [1850-2005] forcing)", - "experiment_id":"piControl-cmip5", - "min_number_yrs_per_sim":"500", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl-spinup-cmip5" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piControl-spinup":{ - "activity_id":[ - "CMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"DECK: spin-up portion of the control", - "end_year":"", - "experiment":"pre-industrial control (spin-up)", - "experiment_id":"piControl-spinup", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piControl-spinup-cmip5":{ - "activity_id":[ - "CMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"DECK: spin-up portion of the control (CMIP5-era pre-industrial forcing)", - "end_year":"", - "experiment":"pre-industrial control (spin-up; CMIP5-era [1850-2005] forcing)", - "experiment_id":"piControl-spinup-cmip5", - "min_number_yrs_per_sim":"100", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piControl-withism":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Pre-industrial control simulation that includes interactive ice sheets", - "end_year":"", - "experiment":"preindustrial control with interactive ice sheet", - "experiment_id":"piControl-withism", - "min_number_yrs_per_sim":"500", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AOGCM", - "ISM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "piSST":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"An AGCM experiment with monthly-varying SSTs, sea-ice, atmospheric constituents and any other necessary boundary conditions (e.g. vegetation if required) taken from each model's own piControl run (using the 30 years of piControl that are parallel to years 111-140 of its abrupt-4xCO2 run). Dynamic vegetation should be turned off in all the piSST set of experiments", - "end_year":"", - "experiment":"experiment forced with pre-industrial SSTs, sea ice and atmospheric constituents", - "experiment_id":"piSST", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piSST-4xCO2":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Same as piSST but CO2 is quadrupled. The increase in CO2 is seen by both the radiation scheme and vegetation", - "end_year":"", - "experiment":"as piSST with radiation and vegetation seeing 4xCO2", - "experiment_id":"piSST-4xCO2", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piSST-4xCO2-rad":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Same as piSST but CO2 as seen by the radiation scheme is quadrupled", - "end_year":"", - "experiment":"as piSST with radiation-only seeing 4xCO2", - "experiment_id":"piSST-4xCO2-rad", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piSST-4xCO2-solar":{ - "activity_id":[ - "GeoMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Time slice at 1850 (picontrol) for G1ext to examine radiative forcing of abrupt-4xCO2", - "end_year":"", - "experiment":"preindustrial control SSTs with quadrupled CO2 and solar reduction", - "experiment_id":"piSST-4xCO2-solar", - "min_number_yrs_per_sim":"10", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piSST-pdSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA1.3: investigate role of SST in polar amplification", - "end_year":"2001", - "experiment":"Atmosphere time slice with pre-industrial SST and present day SIC", - "experiment_id":"piSST-pdSIC", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "amip" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "piSST-piSIC":{ - "activity_id":[ - "PAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"PA1.2: atmosphere only model pre-industrial control", - "end_year":"2001", - "experiment":"Atmosphere time slice with pre-industrial SST and SIC", - "experiment_id":"piSST-piSIC", - "min_number_yrs_per_sim":"1", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "amip" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"2000", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "piSST-pxK":{ - "activity_id":[ - "CFMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Same as piSST, but with a spatially and temporally uniform SST anomaly applied on top of the monthly-varying piSST SSTs. The magnitude of the uniform increase is taken from each model's global, climatological annual mean SST change between abrupt-4xCO2 minus piControl (using the mean of years 111-140 of abrupt-4xCO2, and the parallel 30-year section of piControl)", - "end_year":"", - "experiment":"as piSST with uniform SST increase with magnitude based on abrupt-4xCO2 response", - "experiment_id":"piSST-pxK", - "min_number_yrs_per_sim":"20", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "rad-irf":{ - "activity_id":[ - "RFMIP" - ], - "additional_allowed_model_components":[ - "" - ], - "description":"Offline radiation calculations", - "end_year":"", - "experiment":"offline assessment of radiative transfer parmeterizations in clear skies", - "experiment_id":"rad-irf", - "min_number_yrs_per_sim":"", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "RAD" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "rcp26-cmip5":{ - "activity_id":[ - "ScenarioMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"future scenario with low radiative forcing by the end of century. Following RCP2.6 global forcing pathway. Concentration-driven (CMIP5-era [2006-2100] forcing)", - "end_year":"2100 or 2300", - "experiment":"future projection based on CMIP5-era RCP2.6 scenario (CMIP5-era [2006-2100] forcing)", - "experiment_id":"rcp26-cmip5", - "min_number_yrs_per_sim":"95", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical-cmip5" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2006", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "rcp45-cmip5":{ - "activity_id":[ - "ScenarioMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"future scenario with low-medium radiative forcing by the end of century. Following RCP4.5 global forcing pathway. Concentration-driven (CMIP5-era [2006-2100] forcing)", - "end_year":"2100 or 2300", - "experiment":"future projection based on CMIP5-era RCP4.5 scenario (CMIP5-era [2006-2100] forcing)", - "experiment_id":"rcp45-cmip5", - "min_number_yrs_per_sim":"95", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical-cmip5" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2006", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "rcp60-cmip5":{ - "activity_id":[ - "ScenarioMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"future scenario with medium radiative forcing by the end of century. Following RCP6.0 global forcing pathway. Concentration-driven (CMIP5-era [2006-2100] forcing)", - "end_year":"2100 or 2300", - "experiment":"future projection based on CMIP5-era RCP6.0 scenario (CMIP5-era [2006-2100] forcing)", - "experiment_id":"rcp60-cmip5", - "min_number_yrs_per_sim":"95", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical-cmip5" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2006", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "rcp85-cmip5":{ - "activity_id":[ - "ScenarioMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"future scenario with high radiative forcing by the end of century. Following RCP8.5 global forcing pathway. Concentration-driven (CMIP5-era [2006-2100] forcing)", - "end_year":"2100 or 2300", - "experiment":"future projection based on CMIP5-era RCP8.5 scenario (CMIP5-era [2006-2100] forcing)", - "experiment_id":"rcp85-cmip5", - "min_number_yrs_per_sim":"95", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical-cmip5" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2006", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "spinup-1950":{ - "activity_id":[ - "HighResMIP" - ], - "additional_allowed_model_components":[ - "AER" - ], - "description":"Coupled integration from ocean rest state using recommended HighResMIP protocol spinup, starting from 1950 ocean temperature and salinity analysis EN4, using constant 1950s forcing. At least 30 years to satisfy near surface quasi-equilibrium", - "end_year":"", - "experiment":"coupled spinup with fixed 1950s forcings from 1950 initial conditions (with ocean at rest) to provide initial condition for control-1950 and hist-1950", - "experiment_id":"spinup-1950", - "min_number_yrs_per_sim":"30", - "parent_activity_id":[ - "no parent" - ], - "parent_experiment_id":[ - "no parent" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ssp119":{ - "activity_id":[ - "ScenarioMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Future scenario with low radiative forcing throughout reaching about 1.9 W/m2 in 2100 based on SSP1. Concentration-driven", - "end_year":"2100", - "experiment":"low-end scenario reaching 1.9 W m-2, based on SSP1", - "experiment_id":"ssp119", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ssp126":{ - "activity_id":[ - "ScenarioMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Future scenario with low radiative forcing by the end of century. Following approximately RCP2.6 global forcing pathway but with new forcing based on SSP1. Concentration-driven. As a tier 2 option, this simulation should be extended to year 2300", - "end_year":"2100 or 2300", - "experiment":"update of RCP2.6 based on SSP1", - "experiment_id":"ssp126", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ssp126-ssp370Lu":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Additional land use policy sensitivity simulation for low radiative forcing scenario, keep all forcings the same as ScenarioMIP SSP1-2.6 (afforestation scenario), but replace land use from SSP3-7 (afforestation) scenario; concentration-driven", - "end_year":"2100", - "experiment":"SSP1-2.6 with SSP3-7.0 land use", - "experiment_id":"ssp126-ssp370Lu", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ssp245":{ - "activity_id":[ - "ScenarioMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Future scenario with medium radiative forcing by the end of century. Following approximately RCP4.5 global forcing pathway but with new forcing based on SSP2. Concentration-driven", - "end_year":"2100", - "experiment":"update of RCP4.5 based on SSP2", - "experiment_id":"ssp245", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ssp245-GHG":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Extension of well-mixed GHG-only run under SSP2-4.5. Models with interactive chemistry schemes should either turn off the chemistry or use a preindustrial climatology of stratospheric and tropospheric ozone in their radiation schemes", - "end_year":"2100", - "experiment":"well-mixed GHG-only SSP2-4.5 run", - "experiment_id":"ssp245-GHG", - "min_number_yrs_per_sim":"80", - "parent_activity_id":[ - "DAMIP" - ], - "parent_experiment_id":[ - "hist-GHG" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2021", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ssp245-aer":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Extension of aerosol-only run under SSP2-4.5", - "end_year":"2100", - "experiment":"aerosol-only SSP2-4.5 run", - "experiment_id":"ssp245-aer", - "min_number_yrs_per_sim":"80", - "parent_activity_id":[ - "DAMIP" - ], - "parent_experiment_id":[ - "hist-aer" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2021", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "ssp245-cov-GHG":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Detection and attribution experiment: well-mixed GHG-only run based on ssp245-covid, with 2-year perturbation to emissions for 2020 and 2021 due to Covid-19 pandemic restrictions. Concentration-driven", - "end_year":"2024 or 2050", - "experiment":"2-year Covid-19 emissions blip including well mixed GHG only, based upon ssp245", - "experiment_id":"ssp245-cov-GHG", - "min_number_yrs_per_sim":"5", - "parent_activity_id":[ - "ScenarioMIP" - ], - "parent_experiment_id":[ - "ssp245" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2020", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "ssp245-cov-aer":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Detection and attribution experiment: aerosol-only run based on ssp245-covid, with 2-year perturbation to emissions for 2020 and 2021 due to Covid-19 pandemic restrictions. Concentration-driven", - "end_year":"2024 or 2050", - "experiment":"2-year Covid-19 emissions blip including anthropogenic aerosols only, based upon ssp245", - "experiment_id":"ssp245-cov-aer", - "min_number_yrs_per_sim":"5", - "parent_activity_id":[ - "ScenarioMIP" - ], - "parent_experiment_id":[ - "ssp245" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2020", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "ssp245-cov-fossil":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Future scenario based on ssp245, but following a path of increased emissions due to a fossil-fuel rebound economic recovery from the Covid-19 pandemic restrictions. Concentration-driven", - "end_year":"2050", - "experiment":"2-year Covid-19 emissions blip followed by increased emissions due to a fossil-fuel based recovery, based upon ssp245", - "experiment_id":"ssp245-cov-fossil", - "min_number_yrs_per_sim":"31", - "parent_activity_id":[ - "ScenarioMIP" - ], - "parent_experiment_id":[ - "ssp245" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2020", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "ssp245-cov-modgreen":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Future scenario based on ssp245, but following a path of reduced emissions due to a moderate-green stimulus economic recovery from the Covid-19 pandemic restrictions. Concentration-driven", - "end_year":"2050", - "experiment":"2-year Covid-19 emissions blip followed by moderate-green stimulus recovery, based upon ssp245", - "experiment_id":"ssp245-cov-modgreen", - "min_number_yrs_per_sim":"31", - "parent_activity_id":[ - "ScenarioMIP" - ], - "parent_experiment_id":[ - "ssp245" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2020", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "ssp245-cov-strgreen":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Future scenario based on ssp245, but following a path of reduced emissions due to a strong-green stimulus economic recovery from the Covid-19 pandemic restrictions. Concentration-driven", - "end_year":"2050", - "experiment":"2-year Covid-19 emissions blip followed by strong-green stimulus recovery, based upon ssp245", - "experiment_id":"ssp245-cov-strgreen", - "min_number_yrs_per_sim":"31", - "parent_activity_id":[ - "ScenarioMIP" - ], - "parent_experiment_id":[ - "ssp245" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2020", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ssp245-covid":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Future scenario based on ssp245, but with 2-year perturbation to emissions for 2020 and 2021 due to Covid-19 pandemic restrictions. Emissions revert to ssp245 after this. Concentration-driven", - "end_year":"2024 or 2050", - "experiment":"2-year Covid-19 emissions blip based upon ssp245", - "experiment_id":"ssp245-covid", - "min_number_yrs_per_sim":"5", - "parent_activity_id":[ - "ScenarioMIP" - ], - "parent_experiment_id":[ - "ssp245" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2020", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ssp245-nat":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Extension of natural-only run under SSP2-4.5", - "end_year":"2100", - "experiment":"natural-only SSP2-4.5 run", - "experiment_id":"ssp245-nat", - "min_number_yrs_per_sim":"80", - "parent_activity_id":[ - "DAMIP" - ], - "parent_experiment_id":[ - "hist-nat" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2021", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "ssp245-stratO3":{ - "activity_id":[ - "DAMIP" - ], - "additional_allowed_model_components":[ - "AER", - "BGC" - ], - "description":"Extension of stratospheric ozone-only run under SSP2-4.5 (ssp245). In models with coupled chemistry, the chemistry scheme should be turned off, and the simulated ensemble mean monthly mean 3D stratospheric ozone concentrations from the SSP2-4.5 simulations should be prescribed. Tropospheric ozone should be fixed at 3D long-term monthly mean piControl values, with a value of 100 ppbv ozone concentration in this piControl climatology used to separate the troposphere from the stratosphere. In models without coupled chemistry the same stratospheric ozone prescribed in SSP2-4.5 should be prescribed. Stratospheric ozone concentrations will be provided by CCMI", - "end_year":"2100", - "experiment":"stratospheric ozone-only SSP2-4.5 (ssp245) run", - "experiment_id":"ssp245-stratO3", - "min_number_yrs_per_sim":"80", - "parent_activity_id":[ - "DAMIP" - ], - "parent_experiment_id":[ - "hist-stratO3" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2021", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ssp370":{ - "activity_id":[ - "ScenarioMIP", - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Future scenario with high radiative forcing by the end of century. Reaches about 7.0 W/m2 by 2100; fills gap in RCP forcing pathways between 6.0 and 8.5 W/m2. Concentration-driven", - "end_year":"2100", - "experiment":"gap-filling scenario reaching 7.0 based on SSP3", - "experiment_id":"ssp370", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ssp370-lowNTCF":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Future SSP3-7.0 with reduced NTCF emissions", - "end_year":"2100", - "experiment":"SSP3-7.0, with low NTCF emissions", - "experiment_id":"ssp370-lowNTCF", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM", - "AER" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ssp370-lowNTCFCH4":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"This experiment is identical to ssp370-lowNTCF except that the methane concentrations also follow the \"low\" scenario from SSP3-7.0_lowNTCF", - "end_year":"2100", - "experiment":"SSP3-7.0, with low NTCF emissions and methane concentrations", - "experiment_id":"ssp370-lowNTCFCH4", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM", - "AER" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "ssp370-ssp126Lu":{ - "activity_id":[ - "LUMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Additional land use policy sensitivity simulation for high radiative forcing scenario, keep all forcings the same as ScenarioMIP SSP3-7 (deforestation scenario), but replace land use from SSP1-2.6 (afforestation) scenario; concentration-driven", - "end_year":"2100", - "experiment":"SSP3-7.0 with SSP1-2.6 land use", - "experiment_id":"ssp370-ssp126Lu", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ssp370SST":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Future SSP3-7.0, with SSTs prescribed from ssp370", - "end_year":"2100", - "experiment":"SSP3-7.0, with SSTs prescribed from ssp370", - "experiment_id":"ssp370SST", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ssp370SST-lowAer":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Future SSP3-7.0 with reduced aerosol emissions (from ssp370-lowNTCF), prescribed SSTs", - "end_year":"2100", - "experiment":"SSP3-7.0, prescribed SSTs, with low aerosol emissions", - "experiment_id":"ssp370SST-lowAer", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ssp370SST-lowBC":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Future SSP3-7.0 with reduced black carbon emissions, prescribed SSTs", - "end_year":"2100", - "experiment":"SSP3-7.0, prescribed SSTs, with low black carbon emissions", - "experiment_id":"ssp370SST-lowBC", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ssp370SST-lowCH4":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Future SSP3-7.0 with reduced CH4 concentrations, prescribed SSTs", - "end_year":"2100", - "experiment":"SSP3-7.0, prescribed SSTs, with low methane concentrations", - "experiment_id":"ssp370SST-lowCH4", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AGCM", - "AER", - "CHEM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ssp370SST-lowNTCF":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Future SSP3-7.0 with reduced NTCF emissions, prescribed SSTs", - "end_year":"2100", - "experiment":"SSP3-7.0, prescribed SSTs, with low NTCF emissions", - "experiment_id":"ssp370SST-lowNTCF", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ssp370SST-lowNTCFCH4":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"This experiment is identical to ssp370SST-lowNTCF except that the methane concentrations also follow the \"low\" scenario from SSP3-7.0_lowNTCF", - "end_year":"2100", - "experiment":"SSP3-7.0, prescribed SSTs, with low NTCF emissions and methane concentrations", - "experiment_id":"ssp370SST-lowNTCFCH4", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "ssp370SST-lowO3":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "BGC" - ], - "description":"Future SSP3-7.0 with reduced ozone precursor emissions (from ssp370-lowNTCF), prescribed SSTs", - "end_year":"2100", - "experiment":"SSP3-7.0, prescribed SSTs, with low ozone precursor emissions", - "experiment_id":"ssp370SST-lowO3", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AGCM", - "AER", - "CHEM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ssp370SST-ssp126Lu":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Future SSP3-7.0 with low land use change (from ssp126), prescribed SSTs", - "end_year":"2100", - "experiment":"SSP3-7.0, prescribed SSTs, with SSP1-2.6 land use", - "experiment_id":"ssp370SST-ssp126Lu", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ssp370pdSST":{ - "activity_id":[ - "AerChemMIP" - ], - "additional_allowed_model_components":[ - "CHEM", - "BGC" - ], - "description":"Experimental set up as ssp370SST except sea surface temperatures (SST) and sea ice concentrations (SICONC) are from a 2005-2014 climatology. Diagnostics are as ssp370SST", - "end_year":"2100", - "experiment":"SSP3-7.0, with SSTs prescribed as present day", - "experiment_id":"ssp370pdSST", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AGCM", - "AER" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ssp434":{ - "activity_id":[ - "ScenarioMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Future scenario with low radiative forcing by the end of century. Reaches about 3.4 W/m2 by 2100; fills gap in RCP forcing pathways between 4.5 and 2.6 W/m2. Concentration-driven", - "end_year":"2100", - "experiment":"gap-filling scenario reaching 3.4 based on SSP4", - "experiment_id":"ssp434", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ssp460":{ - "activity_id":[ - "ScenarioMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Future scenario with medium radiative forcing by the end of century. Following approximately RCP6.0 global forcing pathway but with new forcing based on SSP4. Concentration-driven", - "end_year":"2100", - "experiment":"update of RCP6.0 based on SSP4", - "experiment_id":"ssp460", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ssp534-over":{ - "activity_id":[ - "ScenarioMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"21st century overshoot scenario relative to SSP5_34. Branches from SSP5_85 at 2040 with emissions reduced to zero by 2070 and negative thereafter. This simulation should optionally be extended to year 2300", - "end_year":"2100 or 2300", - "experiment":"overshoot of 3.4 W/m**2 branching from ssp585 in 2040", - "experiment_id":"ssp534-over", - "min_number_yrs_per_sim":"61", - "parent_activity_id":[ - "ScenarioMIP" - ], - "parent_experiment_id":[ - "ssp585" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2040", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ssp534-over-bgc":{ - "activity_id":[ - "C4MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"This simulation should optionally be extended to year 2300", - "end_year":"2100 or 2300", - "experiment":"biogeochemically-coupled version of the RCP3.4-overshoot based on SSP5", - "experiment_id":"ssp534-over-bgc", - "min_number_yrs_per_sim":"61", - "parent_activity_id":[ - "C4MIP" - ], - "parent_experiment_id":[ - "ssp585-bgc" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"2040", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ssp585":{ - "activity_id":[ - "ScenarioMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Future scenario with high radiative forcing by the end of century. Following approximately RCP8.5 global forcing pathway but with new forcing based on SSP5. Concentration-driven. As a tier 2 option, this simulation should be extended to year 2300", - "end_year":"2100 or 2300", - "experiment":"update of RCP8.5 based on SSP5", - "experiment_id":"ssp585", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "ssp585-bgc":{ - "activity_id":[ - "C4MIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Concentration-driven future scenario simulation, biogeochemically-coupled. This simulation should optionally be extended to year 2300", - "end_year":"2100 or 2300", - "experiment":"biogeochemically-coupled version of the RCP8.5 based on SSP5", - "experiment_id":"ssp585-bgc", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "C4MIP" - ], - "parent_experiment_id":[ - "hist-bgc" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "ssp585-withism":{ - "activity_id":[ - "ISMIP6" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Future climate from ScenarioMIP SSP5-8.5 simulation that includes interactive ice sheets. Set up follows the standard SSP5-8.5 experiment", - "end_year":"2100 or 2300", - "experiment":"ssp585 with interactive ice sheet", - "experiment_id":"ssp585-withism", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "ISMIP6" - ], - "parent_experiment_id":[ - "historical-withism" - ], - "required_model_components":[ - "AOGCM", - "ISM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "volc-cluster-21C":{ - "activity_id":[ - "VolMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Parallel experiment to volc-cluster-ctrl, using restart files from the end of the historical simulation instead of from piControl, and boundary conditions from the 21st century SSP2-4.5 scenario experiment of ScenarioMIP", - "end_year":"2100", - "experiment":"volcanic cluster experiment under 21st century SSP2-4.5 scenario", - "experiment_id":"volc-cluster-21C", - "min_number_yrs_per_sim":"86", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"2015", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "volc-cluster-ctrl":{ - "activity_id":[ - "VolMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Early 19th century cluster of strong tropical volcanic eruptions, including the 1809 event of unknown location, the 1815 Tambora and 1835 Cosigueina eruptions. Experiment initialized from PiControl", - "end_year":"", - "experiment":"19th century volcanic cluster initialized from PiControl", - "experiment_id":"volc-cluster-ctrl", - "min_number_yrs_per_sim":"50", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "volc-cluster-mill":{ - "activity_id":[ - "VolMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Parallel experiment to volc-cluster-ctrl but with initial conditions taken from last millennium simulation to account for the effects of a more realistic history of past natural forcing. All forcings except volcanic kept constant from year AD 1790 on", - "end_year":"1858", - "experiment":"19th century volcanic cluster initialized from past1000", - "experiment_id":"volc-cluster-mill", - "min_number_yrs_per_sim":"69", - "parent_activity_id":[ - "PMIP" - ], - "parent_experiment_id":[ - "past1000" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"1790", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "volc-long-eq":{ - "activity_id":[ - "VolMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Idealized equatorial eruption corresponding to an initial emission of 56.2 Tg of SO2. The eruption magnitude corresponds to recent estimates for the 1815 Tambora eruption (Sigl et al., 2015), the largest historical tropical eruption, which was linked to the so-called \"year without a summer\" in 1816. Experiment initialized from PiControl", - "end_year":"", - "experiment":"idealized equatorial volcanic eruption emitting 56.2 Tg SO2", - "experiment_id":"volc-long-eq", - "min_number_yrs_per_sim":"20", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "volc-long-hlN":{ - "activity_id":[ - "VolMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Idealized Northern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2. Experiment initialized from PiControl", - "end_year":"", - "experiment":"idealized Northern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2", - "experiment_id":"volc-long-hlN", - "min_number_yrs_per_sim":"20", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"2" - }, - "volc-long-hlS":{ - "activity_id":[ - "VolMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"Idealized Southern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2. Experiment initialized from PiControl", - "end_year":"", - "experiment":"Idealized Southern Hemisphere high-latitude eruption emitting 28.1 Tg of SO2", - "experiment_id":"volc-long-hlS", - "min_number_yrs_per_sim":"20", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "volc-pinatubo-full":{ - "activity_id":[ - "VolMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"1991 Pinatubo forcing as used in the CMIP6 historical simulations. Requires special diagnostics of radiative and latent heating rates. A large number of ensemble members is required to address internal atmospheric variability", - "end_year":"", - "experiment":"Pinatubo experiment", - "experiment_id":"volc-pinatubo-full", - "min_number_yrs_per_sim":"3", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "volc-pinatubo-slab":{ - "activity_id":[ - "VolMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"As volc-pinatubo-full, but with a slab ocean", - "end_year":"", - "experiment":"Pinatubo experiment with slab ocean", - "experiment_id":"volc-pinatubo-slab", - "min_number_yrs_per_sim":"3", - "parent_activity_id":[ - "VolMIP" - ], - "parent_experiment_id":[ - "control-slab" - ], - "required_model_components":[ - "AGCM", - "SLAB" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - }, - "volc-pinatubo-strat":{ - "activity_id":[ - "VolMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"As volc-pinatubo-full, but with prescribed perturbation to the total (LW+SW) radiative heating rates", - "end_year":"", - "experiment":"Pinatubo experiment with partial radiative forcing, includes only stratospheric warming", - "experiment_id":"volc-pinatubo-strat", - "min_number_yrs_per_sim":"3", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "volc-pinatubo-surf":{ - "activity_id":[ - "VolMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM", - "BGC" - ], - "description":"As volc-pinatubo-full, but with prescribed perturbation to the shortwave flux to mimic the attenuation of solar radiation by volcanic aerosols", - "end_year":"", - "experiment":"Pinatubo experiment with partial radiative forcing, solar radiation scattering only", - "experiment_id":"volc-pinatubo-surf", - "min_number_yrs_per_sim":"3", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "piControl" - ], - "required_model_components":[ - "AOGCM" - ], - "start_year":"", - "sub_experiment_id":[ - "none" - ], - "tier":"1" - }, - "yr2010CO2":{ - "activity_id":[ - "CDRMIP" - ], - "additional_allowed_model_components":[ - "AER", - "CHEM" - ], - "description":"Branch from beginning of year 2010 of the historical simulation with CO2 concentration and all other forcing held fixed at 2010 level (part of the CDR-yr2010-pulse experiment to diagnose CO2 emissions)", - "end_year":"2115", - "experiment":"concentration-driven fixed 2010 forcing", - "experiment_id":"yr2010CO2", - "min_number_yrs_per_sim":"106", - "parent_activity_id":[ - "CMIP" - ], - "parent_experiment_id":[ - "historical" - ], - "required_model_components":[ - "AOGCM", - "BGC" - ], - "start_year":"2010", - "sub_experiment_id":[ - "none" - ], - "tier":"3" - } - }, - "version_metadata":{ - "CV_collection_modified":"Fri Apr 18 16:28:35 2025 -0700", - "CV_collection_version":"6.2.58.79", - "author":"Paul J. Durack ", - "experiment_id_CV_modified":"Tue Dec 15 12:25:59 2020 -0800", - "experiment_id_CV_note":"Revise experiment_id historical parent experiments", - "institution_id":"PCMDI", - "previous_commit":"1e8961cb140d3246c70cdc24d2cc8404570de5dc", - "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" - } -} diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_frequency.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_frequency.json deleted file mode 100644 index 375976b5..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_frequency.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "frequency":{ - "1hr":"sampled hourly", - "1hrCM":"monthly-mean diurnal cycle resolving each day into 1-hour means", - "1hrPt":"sampled hourly, at specified time point within an hour", - "3hr":"3 hourly mean samples", - "3hrPt":"sampled 3 hourly, at specified time point within the time period", - "6hr":"6 hourly mean samples", - "6hrPt":"sampled 6 hourly, at specified time point within the time period", - "day":"daily mean samples", - "dec":"decadal mean samples", - "fx":"fixed (time invariant) field", - "mon":"monthly mean samples", - "monC":"monthly climatology computed from monthly mean samples", - "monPt":"sampled monthly, at specified time point within the time period", - "subhrPt":"sampled sub-hourly, at specified time point within an hour", - "yr":"annual mean samples", - "yrPt":"sampled yearly, at specified time point within the time period" - }, - "version_metadata":{ - "CV_collection_modified":"Fri Apr 18 16:28:35 2025 -0700", - "CV_collection_version":"6.2.58.79", - "author":"Paul J. Durack ", - "frequency_CV_modified":"Mon May 24 13:48:15 2021 00100", - "frequency_CV_note":"Update description of 3hr and 6hr frequencies", - "institution_id":"PCMDI", - "previous_commit":"1e8961cb140d3246c70cdc24d2cc8404570de5dc", - "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" - } -} diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_grid_label.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_grid_label.json deleted file mode 100644 index 0c0d0151..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_grid_label.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "grid_label":{ - "gm":"global mean data", - "gn":"data reported on a model's native grid", - "gna":"data reported on a native grid in the region of Antarctica", - "gng":"data reported on a native grid in the region of Greenland", - "gnz":"zonal mean data reported on a model's native latitude grid", - "gr":"regridded data reported on the data provider's preferred target grid", - "gr1":"regridded data reported on a grid other than the native grid and other than the preferred target grid", - "gr1a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", - "gr1g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", - "gr1z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", - "gr2":"regridded data reported on a grid other than the native grid and other than the preferred target grid", - "gr2a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", - "gr2g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", - "gr2z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", - "gr3":"regridded data reported on a grid other than the native grid and other than the preferred target grid", - "gr3a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", - "gr3g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", - "gr3z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", - "gr4":"regridded data reported on a grid other than the native grid and other than the preferred target grid", - "gr4a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", - "gr4g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", - "gr4z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", - "gr5":"regridded data reported on a grid other than the native grid and other than the preferred target grid", - "gr5a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", - "gr5g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", - "gr5z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", - "gr6":"regridded data reported on a grid other than the native grid and other than the preferred target grid", - "gr6a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", - "gr6g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", - "gr6z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", - "gr7":"regridded data reported on a grid other than the native grid and other than the preferred target grid", - "gr7a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", - "gr7g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", - "gr7z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", - "gr8":"regridded data reported on a grid other than the native grid and other than the preferred target grid", - "gr8a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", - "gr8g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", - "gr8z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", - "gr9":"regridded data reported on a grid other than the native grid and other than the preferred target grid", - "gr9a":"regridded data reported in the region of Antarctica on a grid other than the native grid and other than the preferred target grid", - "gr9g":"regridded data reported in the region of Greenland on a grid other than the native grid and other than the preferred target grid", - "gr9z":"regridded zonal mean data reported on a grid other than the native latitude grid and other than the preferred latitude target grid", - "gra":"regridded data in the region of Antarctica reported on the data provider's preferred target grid", - "grg":"regridded data in the region of Greenland reported on the data provider's preferred target grid", - "grz":"regridded zonal mean data reported on the data provider's preferred latitude target grid" - }, - "version_metadata":{ - "CV_collection_modified":"Fri Apr 18 16:28:35 2025 -0700", - "CV_collection_version":"6.2.58.79", - "author":"Paul J. Durack ", - "grid_label_CV_modified":"Fri Sep 8 18:12:00 2017 -0700", - "grid_label_CV_note":"Issue395 durack1 augment grid_label with description (#401)", - "institution_id":"PCMDI", - "previous_commit":"1e8961cb140d3246c70cdc24d2cc8404570de5dc", - "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" - } -} diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_institution_id.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_institution_id.json deleted file mode 100644 index 6a8be3d6..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_institution_id.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "institution_id":{ - "AER":"Research and Climate Group, Atmospheric and Environmental Research, 131 Hartwell Avenue, Lexington, MA 02421, USA", - "AS-RCEC":"Research Center for Environmental Changes, Academia Sinica, Nankang, Taipei 11529, Taiwan", - "AWI":"Alfred Wegener Institute, Helmholtz Centre for Polar and Marine Research, Am Handelshafen 12, 27570 Bremerhaven, Germany", - "BCC":"Beijing Climate Center, Beijing 100081, China", - "CAMS":"Chinese Academy of Meteorological Sciences, Beijing 100081, China", - "CAS":"Chinese Academy of Sciences, Beijing 100029, China", - "CCCR-IITM":"Centre for Climate Change Research, Indian Institute of Tropical Meteorology Pune, Maharashtra 411 008, India", - "CCCma":"Canadian Centre for Climate Modelling and Analysis, Environment and Climate Change Canada, Victoria, BC V8P 5C2, Canada", - "CMCC":"Fondazione Centro Euro-Mediterraneo sui Cambiamenti Climatici, Lecce 73100, Italy", - "CNRM-CERFACS":"CNRM (Centre National de Recherches Meteorologiques, Toulouse 31057, France), CERFACS (Centre Europeen de Recherche et de Formation Avancee en Calcul Scientifique, Toulouse 31057, France)", - "CSIRO":"Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia", - "CSIRO-ARCCSS":"CSIRO (Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia), ARCCSS (Australian Research Council Centre of Excellence for Climate System Science). Mailing address: CSIRO, c/o Simon J. Marsland, 107-121 Station Street, Aspendale, Victoria 3195, Australia", - "CSIRO-COSIMA":"CSIRO (Commonwealth Scientific and Industrial Research Organisation, Australia), COSIMA (Consortium for Ocean-Sea Ice Modelling in Australia). Mailing address: CSIRO, c/o Simon J. Marsland, 107-121 Station Street, Aspendale, Victoria 3195, Australia", - "DKRZ":"Deutsches Klimarechenzentrum, Hamburg 20146, Germany", - "DWD":"Deutscher Wetterdienst, Offenbach am Main 63067, Germany", - "E3SM-Project":"LLNL (Lawrence Livermore National Laboratory, Livermore, CA 94550, USA); ANL (Argonne National Laboratory, Argonne, IL 60439, USA); BNL (Brookhaven National Laboratory, Upton, NY 11973, USA); LANL (Los Alamos National Laboratory, Los Alamos, NM 87545, USA); LBNL (Lawrence Berkeley National Laboratory, Berkeley, CA 94720, USA); ORNL (Oak Ridge National Laboratory, Oak Ridge, TN 37831, USA); PNNL (Pacific Northwest National Laboratory, Richland, WA 99352, USA); SNL (Sandia National Laboratories, Albuquerque, NM 87185, USA). Mailing address: LLNL Climate Program, c/o David C. Bader, Principal Investigator, L-103, 7000 East Avenue, Livermore, CA 94550, USA", - "EC-Earth-Consortium":"AEMET, Spain; BSC, Spain; CNR-ISAC, Italy; DMI, Denmark; ENEA, Italy; FMI, Finland; Geomar, Germany; ICHEC, Ireland; ICTP, Italy; IDL, Portugal; IMAU, The Netherlands; IPMA, Portugal; KIT, Karlsruhe, Germany; KNMI, The Netherlands; Lund University, Sweden; Met Eireann, Ireland; NLeSC, The Netherlands; NTNU, Norway; Oxford University, UK; surfSARA, The Netherlands; SMHI, Sweden; Stockholm University, Sweden; Unite ASTR, Belgium; University College Dublin, Ireland; University of Bergen, Norway; University of Copenhagen, Denmark; University of Helsinki, Finland; University of Santiago de Compostela, Spain; Uppsala University, Sweden; Utrecht University, The Netherlands; Vrije Universiteit Amsterdam, the Netherlands; Wageningen University, The Netherlands. Mailing address: EC-Earth consortium, Rossby Center, Swedish Meteorological and Hydrological Institute/SMHI, SE-601 76 Norrkoping, Sweden", - "ECMWF":"European Centre for Medium-Range Weather Forecasts, Reading RG2 9AX, UK", - "FIO-QLNM":"FIO (First Institute of Oceanography, Ministry of Natural Resources, Qingdao 266061, China), QNLM (Qingdao National Laboratory for Marine Science and Technology, Qingdao 266237, China)", - "HAMMOZ-Consortium":"ETH Zurich, Switzerland; Max Planck Institut fur Meteorologie, Germany; Forschungszentrum Julich, Germany; University of Oxford, UK; Finnish Meteorological Institute, Finland; Leibniz Institute for Tropospheric Research, Germany; Center for Climate Systems Modeling (C2SM) at ETH Zurich, Switzerland", - "INM":"Institute for Numerical Mathematics, Russian Academy of Science, Moscow 119991, Russia", - "IPSL":"Institut Pierre Simon Laplace, Paris 75252, France", - "KIOST":"Korea Institute of Ocean Science and Technology, Busan 49111, Republic of Korea", - "LLNL":"Lawrence Livermore National Laboratory, Livermore, CA 94550, USA. Mailing address: LLNL Climate Program, c/o Stephen A. Klein, Principal Investigator, L-103, 7000 East Avenue, Livermore, CA 94550, USA", - "MESSy-Consortium":"The Modular Earth Submodel System (MESSy) Consortium, represented by the Institute for Physics of the Atmosphere, Deutsches Zentrum fur Luft- und Raumfahrt (DLR), Wessling, Bavaria 82234, Germany", - "MIROC":"JAMSTEC (Japan Agency for Marine-Earth Science and Technology, Kanagawa 236-0001, Japan), AORI (Atmosphere and Ocean Research Institute, The University of Tokyo, Chiba 277-8564, Japan), NIES (National Institute for Environmental Studies, Ibaraki 305-8506, Japan), and R-CCS (RIKEN Center for Computational Science, Hyogo 650-0047, Japan)", - "MOHC":"Met Office Hadley Centre, Fitzroy Road, Exeter, Devon, EX1 3PB, UK", - "MPI-M":"Max Planck Institute for Meteorology, Hamburg 20146, Germany", - "MRI":"Meteorological Research Institute, Tsukuba, Ibaraki 305-0052, Japan", - "NASA-GISS":"Goddard Institute for Space Studies, New York, NY 10025, USA", - "NASA-GSFC":"NASA Goddard Space Flight Center, Greenbelt, MD 20771, USA", - "NCAR":"National Center for Atmospheric Research, Climate and Global Dynamics Laboratory, 1850 Table Mesa Drive, Boulder, CO 80305, USA", - "NCC":"NorESM Climate modeling Consortium consisting of CICERO (Center for International Climate and Environmental Research, Oslo 0349), MET-Norway (Norwegian Meteorological Institute, Oslo 0313), NERSC (Nansen Environmental and Remote Sensing Center, Bergen 5006), NILU (Norwegian Institute for Air Research, Kjeller 2027), UiB (University of Bergen, Bergen 5007), UiO (University of Oslo, Oslo 0313) and UNI (Uni Research, Bergen 5008), Norway. Mailing address: NCC, c/o MET-Norway, Henrik Mohns plass 1, Oslo 0313, Norway", - "NERC":"Natural Environment Research Council, STFC-RAL, Harwell, Oxford, OX11 0QX, UK", - "NIMS-KMA":"National Institute of Meteorological Sciences/Korea Meteorological Administration, Climate Research Division, Seoho-bukro 33, Seogwipo-si, Jejudo 63568, Republic of Korea", - "NIWA":"National Institute of Water and Atmospheric Research, Hataitai, Wellington 6021, New Zealand", - "NOAA-GFDL":"National Oceanic and Atmospheric Administration, Geophysical Fluid Dynamics Laboratory, Princeton, NJ 08540, USA", - "NTU":"National Taiwan University, Taipei 10650, Taiwan", - "NUIST":"Nanjing University of Information Science and Technology, Nanjing, 210044, China", - "PCMDI":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA", - "PNNL-WACCEM":"PNNL (Pacific Northwest National Laboratory), Richland, WA 99352, USA", - "RTE-RRTMGP-Consortium":"AER (Atmospheric and Environmental Research, Lexington, MA 02421, USA); UColorado (University of Colorado, Boulder, CO 80309, USA). Mailing address: AER c/o Eli Mlawer, 131 Hartwell Avenue, Lexington, MA 02421, USA", - "RUBISCO":"ORNL (Oak Ridge National Laboratory, Oak Ridge, TN 37831, USA); ANL (Argonne National Laboratory, Argonne, IL 60439, USA); BNL (Brookhaven National Laboratory, Upton, NY 11973, USA); LANL (Los Alamos National Laboratory, Los Alamos, NM 87545); LBNL (Lawrence Berkeley National Laboratory, Berkeley, CA 94720, USA); NAU (Northern Arizona University, Flagstaff, AZ 86011, USA); NCAR (National Center for Atmospheric Research, Boulder, CO 80305, USA); UCI (University of California Irvine, Irvine, CA 92697, USA); UM (University of Michigan, Ann Arbor, MI 48109, USA). Mailing address: ORNL Climate Change Science Institute, c/o Forrest M. Hoffman, Laboratory Research Manager, Building 4500N Room F106, 1 Bethel Valley Road, Oak Ridge, TN 37831-6301, USA", - "SNU":"Seoul National University, Seoul 08826, Republic of Korea", - "THU":"Department of Earth System Science, Tsinghua University, Beijing 100084, China", - "UA":"Department of Geosciences, University of Arizona, Tucson, AZ 85721, USA", - "UCI":"Department of Earth System Science, University of California Irvine, Irvine, CA 92697, USA", - "UCSB":"Bren School of Environmental Science and Management, University of California, Santa Barbara. Mailing address: c/o Samantha Stevenson, 2400 Bren Hall, University of California Santa Barbara, Santa Barbara, CA 93106, USA", - "UHH":"Universitat Hamburg, Hamburg 20148, Germany" - }, - "version_metadata":{ - "CV_collection_modified":"Fri Apr 18 16:28:35 2025 -0700", - "CV_collection_version":"6.2.58.79", - "author":"Paul J. Durack ", - "institution_id":"PCMDI", - "institution_id_CV_modified":"Mon Aug 15 21:41:00 2022 -0700", - "institution_id_CV_note":"Register institution_id UCSB for E3SM-1-0", - "previous_commit":"1e8961cb140d3246c70cdc24d2cc8404570de5dc", - "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" - } -} diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_license.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_license.json deleted file mode 100644 index c8cfcc81..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_license.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "license":{ - "license":"CMIP6 model data produced by is licensed under a License (). Consult https://pcmdi.llnl.gov/CMIP6/TermsOfUse for terms of use governing CMIP6 output, including citation requirements and proper acknowledgment. Further information about this data, including some limitations, can be found via the further_info_url (recorded as a global attribute in this file)[ and at ]. The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law.", - "license_options":{ - "CC BY 4.0":{ - "license_id":"Creative Commons Attribution 4.0 International", - "license_url":"https://creativecommons.org/licenses/by/4.0/" - }, - "CC BY-NC-SA 4.0":{ - "license_id":"Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International", - "license_url":"https://creativecommons.org/licenses/by-nc-sa/4.0/" - }, - "CC BY-SA 4.0":{ - "license_id":"Creative Commons Attribution-ShareAlike 4.0 International", - "license_url":"https://creativecommons.org/licenses/by-sa/4.0/" - }, - "CC0 1.0":{ - "license_id":"Creative Commons CC0 1.0 Universal Public Domain Dedication", - "license_url":"https://creativecommons.org/publicdomain/zero/1.0/" - } - } - }, - "version_metadata":{ - "CV_collection_modified":"Fri Apr 18 16:28:35 2025 -0700", - "CV_collection_version":"6.2.58.79", - "author":"Paul J. Durack ", - "institution_id":"PCMDI", - "license_CV_modified":"Tue May 24 11:20:06 2022 -0700", - "license_CV_note":"Update published source_id entries with rights; augment license", - "previous_commit":"1e8961cb140d3246c70cdc24d2cc8404570de5dc", - "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" - } -} diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_nominal_resolution.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_nominal_resolution.json deleted file mode 100644 index 642d35dd..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_nominal_resolution.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "nominal_resolution":[ - "0.5 km", - "1 km", - "10 km", - "100 km", - "1000 km", - "10000 km", - "1x1 degree", - "2.5 km", - "25 km", - "250 km", - "2500 km", - "5 km", - "50 km", - "500 km", - "5000 km" - ], - "version_metadata":{ - "CV_collection_modified":"Fri Apr 18 16:28:35 2025 -0700", - "CV_collection_version":"6.2.58.79", - "author":"Paul J. Durack ", - "institution_id":"PCMDI", - "nominal_resolution_CV_modified":"Tues Nov 15 16:04:00 2016 -0700", - "nominal_resolution_CV_note":"Issue141 durack1 update grid_resolution to nominal_resolution (#143)", - "previous_commit":"1e8961cb140d3246c70cdc24d2cc8404570de5dc", - "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" - } -} diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_realm.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_realm.json deleted file mode 100644 index 8ada1a06..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_realm.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "realm":{ - "aerosol":"Aerosol", - "atmos":"Atmosphere", - "atmosChem":"Atmospheric Chemistry", - "land":"Land Surface", - "landIce":"Land Ice", - "ocean":"Ocean", - "ocnBgchem":"Ocean Biogeochemistry", - "seaIce":"Sea Ice" - }, - "version_metadata":{ - "CV_collection_modified":"Fri Apr 18 16:28:35 2025 -0700", - "CV_collection_version":"6.2.58.79", - "author":"Paul J. Durack ", - "institution_id":"PCMDI", - "previous_commit":"1e8961cb140d3246c70cdc24d2cc8404570de5dc", - "realm_CV_modified":"Tues Apr 18 12:03:00 2017 -0700", - "realm_CV_note":"Issue285 durack1 update realm format (#290)", - "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" - } -} diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_required_global_attributes.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_required_global_attributes.json deleted file mode 100644 index 3fb0a6fb..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_required_global_attributes.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "required_global_attributes":[ - "Conventions", - "activity_id", - "creation_date", - "data_specs_version", - "experiment", - "experiment_id", - "forcing_index", - "frequency", - "further_info_url", - "grid", - "grid_label", - "initialization_index", - "institution", - "institution_id", - "license", - "mip_era", - "nominal_resolution", - "physics_index", - "product", - "realization_index", - "realm", - "source", - "source_id", - "source_type", - "sub_experiment", - "sub_experiment_id", - "table_id", - "tracking_id", - "variable_id", - "variant_label" - ], - "version_metadata":{ - "CV_collection_modified":"Fri Apr 18 16:28:35 2025 -0700", - "CV_collection_version":"6.2.58.79", - "author":"Paul J. Durack ", - "institution_id":"PCMDI", - "previous_commit":"1e8961cb140d3246c70cdc24d2cc8404570de5dc", - "required_global_attributes_CV_modified":"Thu Dec 19 15:32:17 2019 -0800", - "required_global_attributes_CV_note":"Reverting addition of external_variables to required_global_attributes", - "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" - } -} diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json deleted file mode 100644 index daf33b38..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_id.json +++ /dev/null @@ -1,8105 +0,0 @@ -{ - "source_id":{ - "4AOP-v1-5":{ - "activity_participation":[ - "RFMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "IPSL" - ], - "label":"4AOP-v1-5", - "label_extended":"Line-By-Line Radiative Transfer Model v1.5, Laboratoire Meteorologie Dynamique, GEISA spectroscopic database", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2020-06-11: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" - } - }, - "release_year":"2019", - "source_id":"4AOP-v1-5" - }, - "ACCESS-CM2":{ - "activity_participation":[ - "CMIP", - "DAMIP", - "FAFMIP", - "OMIP", - "RFMIP", - "SIMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CSIRO-ARCCSS" - ], - "label":"ACCESS-CM2", - "label_extended":"Australian Community Climate and Earth System Simulator Climate Model Version 2", - "license_info":{ - "exceptions_contact":"@csiro.au <- access_csiro", - "history":"2019-11-08: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"CABLE2.5", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"ACCESS-OM2 (GFDL-MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE5.1.2 (same grid as ocean)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"ACCESS-CM2" - }, - "ACCESS-ESM1-5":{ - "activity_participation":[ - "C4MIP", - "CDRMIP", - "CMIP", - "DAMIP", - "LUMIP", - "OMIP", - "PMIP", - "RFMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CSIRO" - ], - "label":"ACCESS-ESM1.5", - "label_extended":"Australian Community Climate and Earth System Simulator Earth System Model Version 1.5", - "license_info":{ - "exceptions_contact":"@csiro.au <- access_csiro", - "history":"2019-11-12: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"CLASSIC (v1.0)", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"CABLE2.4", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"WOMBAT (same grid as ocean)", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"CICE4.1 (same grid as ocean)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"ACCESS-ESM1-5" - }, - "ACCESS-OM2":{ - "activity_participation":[ - "OMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CSIRO-COSIMA" - ], - "label":"ACCESS-OM2", - "label_extended":"Australian Community Climate and Earth System Simulator Ocean Model Version 2", - "license_info":{ - "exceptions_contact":"@csiro.au <- access_csiro", - "history":"2021-06-16: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-2.3 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"WOMBAT (same grid as ocean)", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"CICE5.1.2 (same grid as ocean)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2020", - "source_id":"ACCESS-OM2" - }, - "ACCESS-OM2-025":{ - "activity_participation":[ - "OMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CSIRO-COSIMA" - ], - "label":"ACCESS-OM2-025", - "label_extended":"Australian Community Climate and Earth System Simulator Ocean Model Version 2 quarter degree", - "license_info":{ - "exceptions_contact":"@csiro.au <- access_csiro", - "history":"2021-06-17: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"ACCESS-OM2 (MOM5, tripolar primarily 1/4 deg; 1440 x 1080 longitude/latitude; 50 levels; top grid cell 0-2.3 m)", - "native_nominal_resolution":"25 km" - }, - "ocnBgchem":{ - "description":"WOMBAT (same grid as ocean)", - "native_nominal_resolution":"25 km" - }, - "seaIce":{ - "description":"CICE5.1.2 (same grid as ocean)", - "native_nominal_resolution":"25 km" - } - }, - "release_year":"2020", - "source_id":"ACCESS-OM2-025" - }, - "ARTS-2-3":{ - "activity_participation":[ - "RFMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "UHH" - ], - "label":"ARTS 2.3", - "label_extended":"ARTS 2.3 (Current development version of the Atmospheric Radiative Transfer Simulator)", - "license_info":{ - "exceptions_contact":"@uni-hamburg.de <- oliver.lemke", - "history":"2019-06-20: initially published under CC BY-NC-SA 4.0; 2022-07-31: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" - } - }, - "release_year":"2015", - "source_id":"ARTS-2-3" - }, - "AWI-CM-1-1-HR":{ - "activity_participation":[ - "CMIP", - "CORDEX", - "HighResMIP", - "OMIP", - "SIMIP", - "VIACSAB" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "AWI" - ], - "label":"AWI-CM 1.1 HR", - "label_extended":"AWI-CM 1.1 HR", - "license_info":{ - "exceptions_contact":"@awi.de <- mip-contact", - "history":"2017-08-25: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JSBACH 3.20", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"FESOM 1.4 (unstructured grid in the horizontal with 1306775 wet nodes; 46 levels; top grid cell 0-5 m)", - "native_nominal_resolution":"25 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"FESOM 1.4", - "native_nominal_resolution":"25 km" - } - }, - "release_year":"2018", - "source_id":"AWI-CM-1-1-HR" - }, - "AWI-CM-1-1-LR":{ - "activity_participation":[ - "CMIP", - "CORDEX", - "HighResMIP", - "OMIP", - "SIMIP", - "ScenarioMIP", - "VIACSAB" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "AWI" - ], - "label":"AWI-CM 1.1 LR", - "label_extended":"AWI-CM 1.1 LR", - "license_info":{ - "exceptions_contact":"@awi.de <- mip-contact", - "history":"2017-08-25: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JSBACH 3.20", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"FESOM 1.4", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2018", - "source_id":"AWI-CM-1-1-LR" - }, - "AWI-CM-1-1-MR":{ - "activity_participation":[ - "CMIP", - "CORDEX", - "OMIP", - "PAMIP", - "SIMIP", - "ScenarioMIP", - "VIACSAB" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "AWI" - ], - "label":"AWI-CM 1.1 MR", - "label_extended":"AWI-CM 1.1 MR", - "license_info":{ - "exceptions_contact":"@awi.de <- mip-contact", - "history":"2018-12-18: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"ECHAM6.3.04p1 (T127L95 native atmosphere T127 gaussian grid; 384 x 192 longitude/latitude; 95 levels; top level 80 km)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JSBACH 3.20", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"FESOM 1.4 (unstructured grid in the horizontal with 830305 wet nodes; 46 levels; top grid cell 0-5 m)", - "native_nominal_resolution":"25 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"FESOM 1.4", - "native_nominal_resolution":"25 km" - } - }, - "release_year":"2018", - "source_id":"AWI-CM-1-1-MR" - }, - "AWI-ESM-1-1-LR":{ - "activity_participation":[ - "CMIP", - "PMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "AWI" - ], - "label":"AWI-ESM 1.1 LR", - "label_extended":"AWI-ESM 1.1 LR", - "license_info":{ - "exceptions_contact":"@awi.de <- mip-contact", - "history":"2020-02-12: initially published under CC BY-SA 4.0; 2022-06-22: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JSBACH 3.20 with dynamic vegetation", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"FESOM 1.4", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2018", - "source_id":"AWI-ESM-1-1-LR" - }, - "AWI-ESM-1-REcoM":{ - "activity_participation":[ - "C4MIP", - "CDRMIP", - "CMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "AWI" - ], - "label":"AWI-ESM 1 REcoM", - "label_extended":"AWI-ESM 1 REcoM", - "license_info":{ - "exceptions_contact":"@awi.de <- mip-contact", - "history":"2024-07-04: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"ECHAM6.3.04p1 (T63L47 native atmosphere T63 gaussian grid; 192 x 96 longitude/latitude; 47 levels; top level 80 km)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JSBACH 3.20 with dynamic vegetation", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"FESOM 1.4 (unstructured grid in the horizontal with 126859 wet nodes; 46 levels; top grid cell 0-5 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"REcoM2 (same grid as ocean component)", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"FESOM 1.4 (same grid as ocean component)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2024", - "source_id":"AWI-ESM-1-REcoM" - }, - "BCC-CSM2-HR":{ - "activity_participation":[ - "CMIP", - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "BCC" - ], - "label":"BCC-CSM 2 HR", - "label_extended":"BCC-CSM 2 HR", - "license_info":{ - "exceptions_contact":"@cma.gov.cn <- twwu", - "history":"2020-07-21: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"BCC_AGCM3_HR (T266; 800 x 400 longitude/latitude; 56 levels; top level 0.1 hPa)", - "native_nominal_resolution":"50 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"BCC_AVIM2", - "native_nominal_resolution":"50 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"SIS2", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2017", - "source_id":"BCC-CSM2-HR" - }, - "BCC-CSM2-MR":{ - "activity_participation":[ - "C4MIP", - "CFMIP", - "CMIP", - "DAMIP", - "DCPP", - "GMMIP", - "LS3MIP", - "LUMIP", - "RFMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "BCC" - ], - "label":"BCC-CSM 2 MR", - "label_extended":"BCC-CSM 2 MR", - "license_info":{ - "exceptions_contact":"@cma.gov.cn <- twwu", - "history":"2018-10-09: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"BCC_AGCM3_MR (T106; 320 x 160 longitude/latitude; 46 levels; top level 1.46 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"BCC_AVIM2", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"SIS2", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2017", - "source_id":"BCC-CSM2-MR" - }, - "BCC-ESM1":{ - "activity_participation":[ - "AerChemMIP", - "CMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "BCC" - ], - "label":"BCC-ESM 1", - "label_extended":"BCC-ESM 1", - "license_info":{ - "exceptions_contact":"@cma.gov.cn <- twwu", - "history":"2018-11-14: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"BCC_AGCM3_LR (T42; 128 x 64 longitude/latitude; 26 levels; top level 2.19 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"BCC-AGCM3-Chem", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"BCC_AVIM2", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MOM4 (1/3 deg 10S-10N, 1/3-1 deg 10-30 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"SIS2", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2017", - "source_id":"BCC-ESM1" - }, - "CAM-MPAS-HR":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "PNNL-WACCEM" - ], - "label":"CAM-MPAS-HR", - "label_extended":"CAM MPAS (Community Atmosphere Model - Model for Prediction Across Scales)", - "license_info":{ - "exceptions_contact":"@pnnl.gov <- bryce.harrop", - "history":"2025-03-25: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none, prescribed MACv2-SP", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"CAM-MPAS (CAMv5.4 with Grell-Freitas deep convection; MPASv4, C-grid staggered centroidal Voronoi tesselation atmosphere 30 km mesh with 655362 cells and 1966080 edges; 32 levels, top level 40363 m)", - "native_nominal_resolution":"25 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"CLM (v4.0, same grid as atmos), River Transport Model (v1.0)", - "native_nominal_resolution":"25 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" - } - }, - "release_year":"2018", - "source_id":"CAM-MPAS-HR" - }, - "CAM-MPAS-LR":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "PNNL-WACCEM" - ], - "label":"CAM-MPAS-LR", - "label_extended":"CAM MPAS (Community Atmosphere Model - Model for Prediction Across Scales)", - "license_info":{ - "exceptions_contact":"@pnnl.gov <- bryce.harrop", - "history":"2025-03-25: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none, prescribed MACv2-SP", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"CAM-MPAS (CAMv5.4 with Grell-Freitas deep convection; MPASv4, C-grid staggered centroidal Voronoi tesselation atmosphere 120 km mesh with 40962 cells and 122880 edges; 32 vertical levels, model top 40363 m)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"CLM (v4.0, same grid as atmos), River Transport Model (v1.0)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" - } - }, - "release_year":"2018", - "source_id":"CAM-MPAS-LR" - }, - "CAMS-CSM1-0":{ - "activity_participation":[ - "CFMIP", - "CMIP", - "GMMIP", - "HighResMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CAMS" - ], - "label":"CAMS-CSM 1.0", - "label_extended":"CAMS-CSM 1.0", - "license_info":{ - "exceptions_contact":"@cma.gov.cn <- rongxy", - "history":"2019-07-08: initially published under CC BY-SA 4.0; 2022-09-29 relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"ECHAM5_CAMS (T106; 320 x 160 longitude/latitude; 31 levels; top level 10 mb)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"CoLM 1.0", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MOM4 (tripolar; 360 x 200 longitude/latitude, primarily 1deg latitude/longitude, down to 1/3deg within 30deg of the equatorial tropics; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"SIS 1.0", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2016", - "source_id":"CAMS-CSM1-0" - }, - "CAS-ESM2-0":{ - "activity_participation":[ - "AerChemMIP", - "C4MIP", - "CDRMIP", - "CFMIP", - "CMIP", - "CORDEX", - "DAMIP", - "DynVarMIP", - "FAFMIP", - "GMMIP", - "GeoMIP", - "HighResMIP", - "LS3MIP", - "LUMIP", - "OMIP", - "PMIP", - "SIMIP", - "ScenarioMIP", - "VIACSAB", - "VolMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CAS" - ], - "label":"CAS-ESM 2.0", - "label_extended":"CAS-ESM 2.0 (Chinese Academy of Sciences Earth System Model version 2.0)", - "license_info":{ - "exceptions_contact":"@mail.iap.ac.cn <- zhanghe", - "history":"2020-03-01: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"IAP AACM", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"IAP AGCM 5.0 (Finite difference dynamical core; 256 x 128 longitude/latitude; 35 levels; top level 2.2 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"IAP AACM", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"CoLM", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"LICOM2.0 (LICOM2.0, primarily 1deg; 362 x 196 longitude/latitude; 30 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"IAP OBGCM", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"CICE4", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"CAS-ESM2-0" - }, - "CESM1-1-CAM5-CMIP5":{ - "activity_participation":[ - "CMIP", - "DCPP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NCAR" - ], - "label":"CESM1-1-CAM5-CMIP5", - "label_extended":"CESM1-1-CAM5-CMIP5", - "license_info":{ - "exceptions_contact":"@ucar.edu <- cesm_cmip6", - "history":"2019-10-07: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MAM3 (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"CAM5.2 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 32 levels; top level 2.25 mb)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"MAM3 (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"CLM4 (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"BEC (same grid as ocean)", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"CICE4 (same grid as ocean)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2011", - "source_id":"CESM1-1-CAM5-CMIP5" - }, - "CESM1-CAM5-SE-HR":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NCAR" - ], - "label":"CESM1-CAM5-SE-HR", - "label_extended":"CESM 1.3 CAM5 spectral element configuration with CMIP5 forcings, hi res", - "license_info":{ - "exceptions_contact":"@ucar.edu <- cesm_cmip6", - "history":"2020-07-24: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MAM3 (same grid as atmos)", - "native_nominal_resolution":"25 km" - }, - "atmos":{ - "description":"CAM5.2 (0.25 degree spectral element; 777602 cells; 30 levels; top level 2.25 mb)", - "native_nominal_resolution":"25 km" - }, - "atmosChem":{ - "description":"MAM3 (same grid as atmos)", - "native_nominal_resolution":"25 km" - }, - "land":{ - "description":"CLM4 (same grid as atmos)", - "native_nominal_resolution":"25 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"POP2 (3600x2400 longitude/latitude; 62 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"10 km" - }, - "ocnBgchem":{ - "description":"\"BEC (same grid as ocean)", - "native_nominal_resolution":"10 km" - }, - "seaIce":{ - "description":"CICE4 (same grid as ocean)", - "native_nominal_resolution":"10 km" - } - }, - "release_year":"2012", - "source_id":"CESM1-CAM5-SE-HR" - }, - "CESM1-CAM5-SE-LR":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NCAR" - ], - "label":"CESM1-CAM5-SE-LR", - "label_extended":"CESM 1.3 CAM5 spectral element configuration with CMIP5 forcings, lo res", - "license_info":{ - "exceptions_contact":"@ucar.edu <- cesm_cmip6", - "history":"2020-07-08: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MAM3 (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"CAM5.2 (1 degree spectral element; 48602 cells; 30 levels; top level 2.25 mb)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"MAM3 (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"CLM4 (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"\"BEC (same grid as ocean)", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"CICE4 (same grid as ocean)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2012", - "source_id":"CESM1-CAM5-SE-LR" - }, - "CESM1-WACCM-SC":{ - "activity_participation":[ - "PAMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "UCI", - "NCAR" - ], - "label":"CESM1-WACCM-SC", - "label_extended":"Community Earth System Model 1, with the Whole Atmosphere Community Climate Model and Specified Chemistry", - "license_info":{ - "exceptions_contact":"@ucar.edu <- cesm_cmip6", - "history":"2020-10-12: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MOZART-specified (same grid as atmos)", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"WACCM4 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 66 levels; top level 5.9e-06 mb)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"MOZART-specified (same grid as atmos)", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"CLM4.0", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"POP2 (320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"BEC (same grid as ocean)", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"CICE4 (same as grid as ocean)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2011", - "source_id":"CESM1-WACCM-SC" - }, - "CESM2":{ - "activity_participation":[ - "AerChemMIP", - "C4MIP", - "CDRMIP", - "CFMIP", - "CMIP", - "CORDEX", - "DAMIP", - "DCPP", - "DynVarMIP", - "FAFMIP", - "GMMIP", - "GeoMIP", - "HighResMIP", - "ISMIP6", - "LS3MIP", - "LUMIP", - "OMIP", - "PAMIP", - "PMIP", - "RFMIP", - "RFMIP", - "SIMIP", - "ScenarioMIP", - "VIACSAB", - "VolMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NCAR" - ], - "label":"CESM2", - "label_extended":"CESM2", - "license_info":{ - "exceptions_contact":"@ucar.edu <- cesm_cmip6", - "history":"2019-02-18: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MAM4 (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"CAM6 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 32 levels; top level 2.25 mb)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"MAM4 (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"CLM5 (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"CISM2.1", - "native_nominal_resolution":"5 km" - }, - "ocean":{ - "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"MARBL (same grid as ocean)", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"CICE5.1 (same grid as ocean)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2018", - "source_id":"CESM2" - }, - "CESM2-FV2":{ - "activity_participation":[ - "CMIP", - "PMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NCAR" - ], - "label":"CESM2-FV2", - "label_extended":"CESM2-FV2", - "license_info":{ - "exceptions_contact":"@ucar.edu <- cesm_cmip6", - "history":"2019-11-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MAM4 (same grid as atmos)", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"CAM6 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 32 levels; top level 2.25 mb)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"MAM4 (same grid as atmos)", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"CLM5 (same grid as atmos)", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"CISM2.1", - "native_nominal_resolution":"5 km" - }, - "ocean":{ - "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"MARBL (same grid as ocean)", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"CICE5.1 (same grid as ocean)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"CESM2-FV2" - }, - "CESM2-WACCM":{ - "activity_participation":[ - "AerChemMIP", - "CMIP", - "GeoMIP", - "RFMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NCAR" - ], - "label":"CESM2-WACCM", - "label_extended":"CESM2-WACCM", - "license_info":{ - "exceptions_contact":"@ucar.edu <- cesm_cmip6", - "history":"2019-02-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MAM4 (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"WACCM6 (0.9x1.25 finite volume grid; 288 x 192 longitude/latitude; 70 levels; top level 4.5e-06 mb)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"MAM4 (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"CLM5 (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"CISM2.1", - "native_nominal_resolution":"5 km" - }, - "ocean":{ - "description":"POP2 (320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"MARBL (same grid as ocean)", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"CICE5.1 (same grid as ocean)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2018", - "source_id":"CESM2-WACCM" - }, - "CESM2-WACCM-FV2":{ - "activity_participation":[ - "CMIP", - "PMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NCAR" - ], - "label":"CESM2-WACCM-FV2", - "label_extended":"CESM2-WACCM-FV2", - "license_info":{ - "exceptions_contact":"@ucar.edu <- cesm_cmip6", - "history":"2019-11-20: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MAM4 (same grid as atmos)", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"WACCM6 (1.9x2.5 finite volume grid; 144 x 96 longitude/latitude; 70 levels; top level 4.5e-06 mb)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"MAM4 (same grid as atmos)", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"CLM5 (same grid as atmos)", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"CISM2.1", - "native_nominal_resolution":"5 km" - }, - "ocean":{ - "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"MARBL (same grid as ocean)", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"CICE5.1 (same grid as ocean)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"CESM2-WACCM-FV2" - }, - "CIESM":{ - "activity_participation":[ - "CFMIP", - "CMIP", - "CORDEX", - "GMMIP", - "HighResMIP", - "OMIP", - "SIMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "THU" - ], - "label":"CIESM", - "label_extended":"Community Integrated Earth System Model", - "license_info":{ - "exceptions_contact":"@tsinghua.edu.cn <- yanluan", - "history":"2019-12-02: initially published under CC BY-SA 4.0; 2022-07-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MAM4", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"CIESM-AM (FV/FD; 288 x 192 longitude/latitude; 30 levels; top level 2.255 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"trop_mam4", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"CIESM-LM (modified CLM4.5)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"CIESM-OM (FD, SCCGrid Displaced Pole; 720 x 560 longitude/latitude; 46 levels; top grid cell 0-6 m)", - "native_nominal_resolution":"50 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE4", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2017", - "source_id":"CIESM" - }, - "CMCC-CM2-HR4":{ - "activity_participation":[ - "CMIP", - "HighResMIP", - "OMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CMCC" - ], - "label":"CMCC-CM2-HR4", - "label_extended":"CMCC-CM2-HR4", - "license_info":{ - "exceptions_contact":"@cmcc.it <- silvio.gualdi", - "history":"2017-07-06: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"prescribed MACv2-SP", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"CAM4 (1deg; 288 x 192 longitude/latitude; 26 levels; top at ~2 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"CLM4.5 (SP mode)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE4.0", - "native_nominal_resolution":"25 km" - } - }, - "release_year":"2016", - "source_id":"CMCC-CM2-HR4" - }, - "CMCC-CM2-SR5":{ - "activity_participation":[ - "AerChemMIP", - "CMIP", - "DAMIP", - "DCPP", - "GMMIP", - "OMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CMCC" - ], - "label":"CMCC-CM2-SR5", - "label_extended":"CMCC-CM2-SR5", - "license_info":{ - "exceptions_contact":"@cmcc.it <- silvio.gualdi", - "history":"2020-02-26: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MAM3", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"CLM4.5 (BGC mode)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE4.0", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2016", - "source_id":"CMCC-CM2-SR5" - }, - "CMCC-CM2-VHR4":{ - "activity_participation":[ - "CMIP", - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CMCC" - ], - "label":"CMCC-CM2-VHR4", - "label_extended":"CMCC-CM2-VHR4", - "license_info":{ - "exceptions_contact":"@cmcc.it <- enrico.scoccimarro", - "history":"2017-09-27: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"prescribed MACv2-SP", - "native_nominal_resolution":"25 km" - }, - "atmos":{ - "description":"CAM4 (1/4deg; 1152 x 768 longitude/latitude; 26 levels; top at ~2 hPa)", - "native_nominal_resolution":"25 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"CLM4.5 (SP mode)", - "native_nominal_resolution":"25 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO3.6 (ORCA0.25 1/4 deg from the Equator degrading at the poles; 1442 x 1051 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE4.0", - "native_nominal_resolution":"25 km" - } - }, - "release_year":"2017", - "source_id":"CMCC-CM2-VHR4" - }, - "CMCC-ESM2":{ - "activity_participation":[ - "C4MIP", - "CMIP", - "LS3MIP", - "LUMIP", - "OMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CMCC" - ], - "label":"CMCC-ESM2", - "label_extended":"CMCC-ESM2", - "license_info":{ - "exceptions_contact":"@cmcc.it <- tomas.lovato", - "history":"2020-02-03: initially published under CC BY-SA 4.0; 2022-06-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MAM3", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"CLM4.5 (BGC mode)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarly 1 deg lat/lon with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 50 vertical levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"BFM5.2", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"CICE4.0", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2017", - "source_id":"CMCC-ESM2" - }, - "CNRM-CM6-1":{ - "activity_participation":[ - "CFMIP", - "CMIP", - "DAMIP", - "DCPP", - "FAFMIP", - "GMMIP", - "HighResMIP", - "ISMIP6", - "LS3MIP", - "OMIP", - "PAMIP", - "PMIP", - "RFMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CNRM-CERFACS" - ], - "label":"CNRM-CM6-1", - "label_extended":"CNRM-CM6-1", - "license_info":{ - "exceptions_contact":"@cerfacs.fr <- contact.cmip6", - "history":"2018-06-26: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"prescribed monthly fields computed by TACTIC_v2 scheme", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"OZL_v2", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"Surfex 8.0c", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"Gelato 6.1", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2017", - "source_id":"CNRM-CM6-1" - }, - "CNRM-CM6-1-HR":{ - "activity_participation":[ - "CMIP", - "DCPP", - "GMMIP", - "HighResMIP", - "OMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CNRM-CERFACS" - ], - "label":"CNRM-CM6-1-HR", - "label_extended":"CNRM-CM6-1-HR", - "license_info":{ - "exceptions_contact":"@cerfacs.fr <- contact.cmip6", - "history":"2019-02-21: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"prescribed monthly fields computed by TACTIC_v2 scheme", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"Arpege 6.3 (T359; Gaussian Reduced with 181724 grid points in total distributed over 360 latitude circles (with 720 grid points per latitude circle between 32.2degN and 32.2degS reducing to 18 grid points per latitude circle at 89.6degN and 89.6degS); 91 levels; top level 78.4 km)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"OZL_v2", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"Surfex 8.0c", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"Nemo 3.6 (eORCA025, tripolar primarily 1/4deg; 1442 x 1050 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"Gelato 6.1", - "native_nominal_resolution":"25 km" - } - }, - "release_year":"2017", - "source_id":"CNRM-CM6-1-HR" - }, - "CNRM-ESM2-1":{ - "activity_participation":[ - "AerChemMIP", - "C4MIP", - "CDRMIP", - "CMIP", - "CORDEX", - "DCPP", - "GMMIP", - "GeoMIP", - "LS3MIP", - "LUMIP", - "OMIP", - "RFMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CNRM-CERFACS" - ], - "label":"CNRM-ESM2-1", - "label_extended":"CNRM-ESM2-1", - "license_info":{ - "exceptions_contact":"@meteo.fr <- contact.cmip", - "history":"2018-09-14: initially published under CC BY-NC-SA 4.0; 2022-06-17: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"TACTIC_v2", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"Arpege 6.3 (T127; Gaussian Reduced with 24572 grid points in total distributed over 128 latitude circles (with 256 grid points per latitude circle between 30degN and 30degS reducing to 20 grid points per latitude circle at 88.9degN and 88.9degS); 91 levels; top level 78.4 km)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"REPROBUS-C_v2", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"Surfex 8.0c", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"Pisces 2.s", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"Gelato 6.1", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2017", - "source_id":"CNRM-ESM2-1" - }, - "CanESM5":{ - "activity_participation":[ - "C4MIP", - "CDRMIP", - "CFMIP", - "CMIP", - "CORDEX", - "DAMIP", - "DCPP", - "DynVarMIP", - "FAFMIP", - "GMMIP", - "GeoMIP", - "ISMIP6", - "LS3MIP", - "LUMIP", - "OMIP", - "PAMIP", - "RFMIP", - "SIMIP", - "ScenarioMIP", - "VIACSAB", - "VolMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CCCma" - ], - "label":"CanESM5", - "label_extended":"CanESM5", - "license_info":{ - "exceptions_contact":"@ec.gc.ca <- f.cccma.info-info.ccmac.f", - "history":"2019-03-06: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"interactive", - "native_nominal_resolution":"500 km" - }, - "atmos":{ - "description":"CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", - "native_nominal_resolution":"500 km" - }, - "atmosChem":{ - "description":"specified oxidants for aerosols", - "native_nominal_resolution":"500 km" - }, - "land":{ - "description":"CLASS3.6/CTEM1.2", - "native_nominal_resolution":"500 km" - }, - "landIce":{ - "description":"specified ice sheets", - "native_nominal_resolution":"500 km" - }, - "ocean":{ - "description":"NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"LIM2", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"CanESM5" - }, - "CanESM5-1":{ - "activity_participation":[ - "C4MIP", - "CDRMIP", - "CFMIP", - "CMIP", - "CORDEX", - "DAMIP", - "DCPP", - "DynVarMIP", - "FAFMIP", - "GMMIP", - "GeoMIP", - "ISMIP6", - "LS3MIP", - "LUMIP", - "OMIP", - "PAMIP", - "RFMIP", - "SIMIP", - "ScenarioMIP", - "VIACSAB", - "VolMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CCCma" - ], - "label":"CanESM5.1", - "label_extended":"CanESM5.1", - "license_info":{ - "exceptions_contact":"@ec.gc.ca <- f.cccma.info-info.ccmac.f", - "history":"2022-12-02: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"interactive", - "native_nominal_resolution":"500 km" - }, - "atmos":{ - "description":"CanAM5.1 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", - "native_nominal_resolution":"500 km" - }, - "atmosChem":{ - "description":"specified oxidants for aerosols", - "native_nominal_resolution":"500 km" - }, - "land":{ - "description":"CLASS3.6/CTEM1.2", - "native_nominal_resolution":"500 km" - }, - "landIce":{ - "description":"specified ice sheets", - "native_nominal_resolution":"500 km" - }, - "ocean":{ - "description":"NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"Canadian Model of Ocean Carbon (CMOC); NPZD ecosystem with OMIP prescribed carbonate chemistry", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"LIM2", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2022", - "source_id":"CanESM5-1" - }, - "CanESM5-CanOE":{ - "activity_participation":[ - "C4MIP", - "CDRMIP", - "CMIP", - "OMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CCCma" - ], - "label":"CanESM5-CanOE", - "label_extended":"CanESM5-CanOE", - "license_info":{ - "exceptions_contact":"@ec.gc.ca <- f.cccma.info-info.ccmac.f", - "history":"2019-04-29: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"interactive", - "native_nominal_resolution":"500 km" - }, - "atmos":{ - "description":"CanAM5 (T63L49 native atmosphere, T63 Linear Gaussian Grid; 128 x 64 longitude/latitude; 49 levels; top level 1 hPa)", - "native_nominal_resolution":"500 km" - }, - "atmosChem":{ - "description":"specified oxidants for aerosols", - "native_nominal_resolution":"500 km" - }, - "land":{ - "description":"CLASS3.6/CTEM1.2", - "native_nominal_resolution":"500 km" - }, - "landIce":{ - "description":"specified ice sheets", - "native_nominal_resolution":"500 km" - }, - "ocean":{ - "description":"NEMO3.4.1 (ORCA1 tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 361 x 290 longitude/latitude; 45 vertical levels; top grid cell 0-6.19 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"Canadian Ocean Ecosystem (CanOE) with OMIP prescribed carbon chemistry", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"LIM2", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"CanESM5-CanOE" - }, - "E3SM-1-0":{ - "activity_participation":[ - "CFMIP", - "CMIP", - "DAMIP", - "PAMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "E3SM-Project", - "LLNL", - "UCI", - "UCSB" - ], - "label":"E3SM 1.0", - "label_extended":"E3SM 1.0 (Energy Exascale Earth System Model)", - "license_info":{ - "exceptions_contact":"@llnl.gov <- e3sm-data-support", - "history":"2019-02-06: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"EAM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"ELM (v1.0, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; satellite phenology mode), MOSART (v1.0, 0.5 degree latitude/longitude grid)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"MPAS-Seaice (v6.0, same grid as ocean)", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2018", - "source_id":"E3SM-1-0" - }, - "E3SM-1-1":{ - "activity_participation":[ - "C4MIP", - "CMIP", - "DAMIP", - "LS3MIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "E3SM-Project", - "RUBISCO" - ], - "label":"E3SM 1.1", - "label_extended":"E3SM 1.1 (Energy Exascale Earth System Model)", - "license_info":{ - "exceptions_contact":"@llnl.gov <- e3sm-data-support", - "history":"2019-10-29: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"EAM (v1.1, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"ELM (v1.1, same grid as atmos; active biogeochemistry using the Converging Trophic Cascade plant and soil carbon and nutrient mechanisms to represent carbon, nitrogen and phosphorus cycles), MOSART (v1.1, 0.5 degree latitude/longitude grid)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" - }, - "ocnBgchem":{ - "description":"BEC (Biogeochemical Elemental Cycling model, NPZD-type with C/N/P/Fe/Si/O; same grid as ocean)", - "native_nominal_resolution":"50 km" - }, - "seaIce":{ - "description":"MPAS-Seaice (v6.0; same grid as ocean)", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2019", - "source_id":"E3SM-1-1" - }, - "E3SM-1-1-ECA":{ - "activity_participation":[ - "C4MIP", - "CMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "E3SM-Project" - ], - "label":"E3SM 1.1 ECA", - "label_extended":"E3SM 1.1 (Energy Exascale Earth System Model) with an experimental land BGC ECA configuration", - "license_info":{ - "exceptions_contact":"@llnl.gov <- e3sm-data-support", - "history":"2019-12-16: initially published under CC BY-SA 4.0; 2022-06-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"EAM (v1.1, cubed sphere spectral-element grid; 5400 elements with p=3; 1 deg average grid spacing; 90 x 90 x 6 longitude/latitude/cubeface; 72 levels; top level 0.1 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"ELM (v1.1, same as atmos; active biogeochemistry using the Equilibrium Chemistry Approximation to represent plant and soil carbon and nutrient mechanisms especially carbon, nitrogen and phosphorus limitation), MOSART (v1.1, 0.5 degree latitude/longitude grid)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MPAS-Ocean (v6.0, oEC60to30 unstructured SVTs mesh with 235160 cells and 714274 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" - }, - "ocnBgchem":{ - "description":"BEC (Biogeochemical Elemental Cycling model, NPZD-type with C/N/P/Fe/Si/O; same grid as ocean)", - "native_nominal_resolution":"50 km" - }, - "seaIce":{ - "description":"MPAS-Seaice (v6.0; same grid as ocean)", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2019", - "source_id":"E3SM-1-1-ECA" - }, - "E3SM-2-0":{ - "activity_participation":[ - "CFMIP", - "CMIP", - "DAMIP", - "RFMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "E3SM-Project" - ], - "label":"E3SM 2.0", - "label_extended":"E3SM 2.0 (Energy Exascale Earth System Model)", - "license_info":{ - "exceptions_contact":"@llnl.gov <- e3sm-data-support", - "history":"2022-08-23: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MAM4 with new resuspension, marine organics, secondary organics, and dust (atmos grid)", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"EAM (v2.0, cubed sphere spectral-element grid; 5400 elements, 30x30 per cube face. Dynamics: degree 3 (p=3) polynomials within each spectral element, 112 km average resolution. Physics: 2x2 finite volume cells within each spectral element, 1.5 degree (168 km) average grid spacing; 72 vertical layers; top level 60 km)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos grid)", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"ELM (v1.0, satellite phenology mode, atmos grid), MOSART (v1.0, 0.5 degree latitude/longitude)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MPAS-Ocean (E3SMv2.0, EC30to60E2r2 unstructured SVTs mesh with 236853 cells, 719506 edges, variable resolution 60 to 30 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"MPAS-Seaice (E3SMv2.0, ocean grid; 5 ice categories; 7 ice, 5 snow layers)", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2022", - "source_id":"E3SM-2-0" - }, - "E3SM-2-0-NARRM":{ - "activity_participation":[ - "CMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "E3SM-Project" - ], - "label":"E3SM 2.0 NARRM", - "label_extended":"E3SM 2.0 NARRM (Energy Exascale Earth System Model version 2.0 North American Regionally Refined Model)", - "license_info":{ - "exceptions_contact":"@llnl.gov <- e3sm-data-support", - "history":"2023-04-26: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MAM4 w/ new resuspension, marine organics, secondary organics, and dust (atmos grid)", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"EAM (v2.0, Dynamics: cubed sphere spectral-element grid, 130,088 columns; Physics: 2x2 finite volume cells within each spectral element, 57,816 columns. N. American (NA): 25 to 100 km; outside ~100 km. 72 vertical layers w/ top at 60 km)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos grid)", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"ELM (v1.0, satellite phenology mode, atmos grid), MOSART (v1.0, 0.125 degree latitude/longitude)", - "native_nominal_resolution":"10 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MPAS-Ocean (E3SMv2.0, WC14to60E2r5 unstructured SCVTs mesh with 407420 cells, 1240672 edges, NA: ~14 km; outside: 30 to 60 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"MPAS-Seaice (E3SMv2.0, ocean grid, variable resolution 30 to 60 km; 5 ice categories; 7 ice, 5 snow layers)", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2022", - "source_id":"E3SM-2-0-NARRM" - }, - "E3SM-2-1":{ - "activity_participation":[ - "CMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "E3SM-Project" - ], - "label":"E3SM 2.1", - "label_extended":"E3SM 2.1 (Energy Exascale Earth System Model)", - "license_info":{ - "exceptions_contact":"@llnl.gov <- e3sm-data-support", - "history":"2024-02-05: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MAM4 w/ new resuspension, marine organics, secondary organics, and dust (atmos physics grid)", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"EAM (E3SMv2.1, cubed sphere spectral-element; 5400 els., 30x30 per cube face. Dynamics: degree 3 (p=3) polynomials within each spectral els., 112 km ave. resolution. Physics: 2x2 finite volume cells within each spectral els., 1.5 degree (168 km) average grid spacing; 72 vertical layers w/ top at 60 km)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"Troposphere specified oxidants (except passive ozone with the lower boundary sink) for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (atmos physics grid)", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"ELM (E3SMv2.1, atmos physics grid, satellite phenology mode), MOSART (E3SMv2.1, 0.5 deg lat/lon grid)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MPAS-Ocean (E3SMv2.1, EC30to60E2r2 unstructured SVTs mesh with 236853 cells and 719506 edges, variable resolution 60 km to 30 km; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"50 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"MPAS-Seaice (E3SMv2.1, MPAS-Ocean grid; 5 ice categories, 7 ice layers, 5 snow layers)", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2024", - "source_id":"E3SM-2-1" - }, - "EC-Earth3":{ - "activity_participation":[ - "CMIP", - "CORDEX", - "DAMIP", - "DCPP", - "DynVarMIP", - "LS3MIP", - "OMIP", - "PAMIP", - "PMIP", - "RFMIP", - "SIMIP", - "ScenarioMIP", - "VIACSAB", - "VolMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "EC-Earth-Consortium" - ], - "label":"EC-Earth3", - "label_extended":"EC Earth 3.3", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2019-04-05: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"EC-Earth3" - }, - "EC-Earth3-AerChem":{ - "activity_participation":[ - "AerChemMIP", - "CMIP", - "RFMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "EC-Earth-Consortium" - ], - "label":"EC-Earth3-AerChem", - "label_extended":"EC-Earth3-AerChem", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2020-06-22: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"EC-Earth3-AerChem" - }, - "EC-Earth3-CC":{ - "activity_participation":[ - "C4MIP", - "CDRMIP", - "CMIP", - "DCPP", - "LUMIP", - "OMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "EC-Earth-Consortium" - ], - "label":"EC-Earth3-CC", - "label_extended":"EC-Earth3-CC", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2020-12-29: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"PISCES v2", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"EC-Earth3-CC" - }, - "EC-Earth3-ESM-1":{ - "activity_participation":[ - "C4MIP", - "CDRMIP", - "CMIP", - "DCPP", - "LUMIP", - "OMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "EC-Earth-Consortium" - ], - "label":"EC-Earth3-ESM-1", - "label_extended":"EC-Earth3-ESM-1", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2024-09-25: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa) and co2box v1.0 (CO2 box model; global grid)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4.1.2 (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"PISM v1.2 (5 km x 5 km for Greenland, 31 levels)", - "native_nominal_resolution":"5 km" - }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m) and MWE v1.0 (Melt Water Emulator; same grid as ocean for Antarctic surroundings)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"PISCES v2 (same grid as ocean)", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"LIM3 (same grid as ocean)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2024", - "source_id":"EC-Earth3-ESM-1" - }, - "EC-Earth3-HR":{ - "activity_participation":[ - "CMIP", - "DCPP", - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "EC-Earth-Consortium" - ], - "label":"EC-Earth3-HR", - "label_extended":"EC-Earth3-HR", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2022-06-27: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"50 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution":"50 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO3.6 (ORCA025 tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"25 km" - } - }, - "release_year":"2019", - "source_id":"EC-Earth3-HR" - }, - "EC-Earth3-LR":{ - "activity_participation":[ - "CMIP", - "PMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "EC-Earth-Consortium" - ], - "label":"EC-Earth3-LR", - "label_extended":"EC-Earth3-LR", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2019-01-03: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"EC-Earth3-LR" - }, - "EC-Earth3-Veg":{ - "activity_participation":[ - "CDRMIP", - "CMIP", - "CORDEX", - "LS3MIP", - "LUMIP", - "PMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "EC-Earth-Consortium" - ], - "label":"EC-Earth3-Veg", - "label_extended":"EC-Earth3-Veg", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2019-04-10: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"EC-Earth3-Veg" - }, - "EC-Earth3-Veg-LR":{ - "activity_participation":[ - "CMIP", - "PMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "EC-Earth-Consortium" - ], - "label":"EC-Earth3-Veg-LR", - "label_extended":"EC-Earth3-Veg-LR", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2020-02-13: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"IFS cy36r4 (TL159, linearly reduced Gaussian grid equivalent to 320 x 160 longitude/latitude; 62 levels; top level 5 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"EC-Earth3-Veg-LR" - }, - "EC-Earth3P":{ - "activity_participation":[ - "CMIP", - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "EC-Earth-Consortium" - ], - "label":"EC-Earth3P", - "label_extended":"EC-Earth 3.2 in PRIMAVERA", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2017-09-11: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"IFS cy36r4 (TL255, linearly reduced Gaussian grid equivalent to 512 x 256 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO3.6 (ORCA1 tripolar primarily 1 degree with meridional refinement down to 1/3 degree in the tropics; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2017", - "source_id":"EC-Earth3P" - }, - "EC-Earth3P-HR":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "EC-Earth-Consortium" - ], - "label":"EC-Earth3P-HR", - "label_extended":"EC-Earth3P-HR in PRIMAVERA", - "license_info":{ - "exceptions_contact":"@ec-earth.org <- cmip6-data", - "history":"2017-08-11: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"IFS cy36r4 (TL511, linearly reduced Gaussian grid equivalent to 1024 x 512 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"50 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution":"50 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO3.6 (ORCA025; tripolar primarily 0.25 degrees; 1442 x 1921 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"25 km" - } - }, - "release_year":"2017", - "source_id":"EC-Earth3P-HR" - }, - "EC-Earth3P-VHR":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "EC-Earth-Consortium" - ], - "label":"EC-Earth3P-VHR", - "label_extended":"EC-Earth3P-VHR in PRIMAVERA", - "license_info":{ - "exceptions_contact":"@bsc.es <- pierre-antoine.bretonniere", - "history":"2020-10-07: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"IFS cy36r4 (TL1279, linearly reduced Gaussian grid equivalent to 2560 x 1280 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"25 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"HTESSEL (land surface scheme built in IFS)", - "native_nominal_resolution":"25 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO3.6 (ORCA012 tripolar primarily 0.08 degrees; 4322 x 3059 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"10 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"LIM3", - "native_nominal_resolution":"10 km" - } - }, - "release_year":"2017", - "source_id":"EC-Earth3P-VHR" - }, - "ECMWF-IFS-HR":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "ECMWF" - ], - "label":"ECMWF-IFS-HR", - "label_extended":"ECMWF-IFS-HR (25 km atmosphere and 25 km ocean)", - "license_info":{ - "exceptions_contact":"@ecmwf.int <- christopher.roberts", - "history":"2017-09-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"IFS (IFS CY43R1, Tco399, cubic octahedral reduced Gaussian grid equivalent to 1600 x 800 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"25 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"HTESSEL (as implemented in IFS CY43R1)", - "native_nominal_resolution":"25 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)", - "native_nominal_resolution":"25 km" - } - }, - "release_year":"2017", - "source_id":"ECMWF-IFS-HR" - }, - "ECMWF-IFS-LR":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "ECMWF" - ], - "label":"ECMWF-IFS-LR", - "label_extended":"ECMWF-IFS-LR (50 km atmosphere and 100 km ocean)", - "license_info":{ - "exceptions_contact":"@ecmwf.int <- christopher.roberts", - "history":"2017-09-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"50 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"HTESSEL (as implemented in IFS CY43R1)", - "native_nominal_resolution":"50 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO3.4 (NEMO v3.4; ORCA1 tripolar grid; 362 x 292 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"LIM2 (LIM v2; ORCA1 tripolar grid; 362 x 292 longitude/latitude)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2017", - "source_id":"ECMWF-IFS-LR" - }, - "ECMWF-IFS-MR":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "ECMWF" - ], - "label":"ECMWF-IFS-MR", - "label_extended":"ECMWF-IFS-MR (50 km atmosphere and 25 km ocean)", - "license_info":{ - "exceptions_contact":"@ecmwf.int <- christopher.roberts", - "history":"2018-11-15: initially published under CC BY-NC-SA 4.0; 2022-07-26: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"IFS (IFS CY43R1, Tco199, cubic octahedral reduced Gaussian grid equivalent to 800 x 400 longitude/latitude; 91 levels; top level 0.01 hPa)", - "native_nominal_resolution":"50 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"HTESSEL (as implemented in IFS CY43R1)", - "native_nominal_resolution":"50 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO3.4 (NEMO v3.4; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)", - "native_nominal_resolution":"25 km" - } - }, - "release_year":"2017", - "source_id":"ECMWF-IFS-MR" - }, - "FGOALS-f3-H":{ - "activity_participation":[ - "CMIP", - "HighResMIP", - "OMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CAS" - ], - "label":"FGOALS-f3-H", - "label_extended":"FGOALS-f3-H", - "license_info":{ - "exceptions_contact":"@mail.iap.ac.cn <- linpf", - "history":"2019-08-16: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"FAMIL2.2 (Cubed-sphere, c384; 1440 x 720 longitude/latitude; 32 levels; top level 2.16 hPa)", - "native_nominal_resolution":"25 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"CLM4.0", - "native_nominal_resolution":"25 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"LICOM3.0 (LICOM3.0, tripolar primarily 0.1deg; 3600 x 2302 longitude/latitude; 55 levels; top grid cell 0-5 m)", - "native_nominal_resolution":"10 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE4.0", - "native_nominal_resolution":"10 km" - } - }, - "release_year":"2017", - "source_id":"FGOALS-f3-H" - }, - "FGOALS-f3-L":{ - "activity_participation":[ - "CMIP", - "DCPP", - "GMMIP", - "HighResMIP", - "OMIP", - "PAMIP", - "PMIP", - "SIMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CAS" - ], - "label":"FGOALS-f3-L", - "label_extended":"FGOALS-f3-L", - "license_info":{ - "exceptions_contact":"@mail.iap.ac.cn <- linpf", - "history":"2018-11-08: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"FAMIL2.2 (Cubed-sphere, c96; 360 x 180 longitude/latitude; 32 levels; top level 2.16 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"CLM4.0", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE4.0", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2017", - "source_id":"FGOALS-f3-L" - }, - "FGOALS-g3":{ - "activity_participation":[ - "CMIP", - "CORDEX", - "DAMIP", - "DCPP", - "FAFMIP", - "GMMIP", - "LS3MIP", - "OMIP", - "PMIP", - "SIMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CAS" - ], - "label":"FGOALS-g3", - "label_extended":"FGOALS-g3", - "license_info":{ - "exceptions_contact":"@mail.iap.ac.cn <- linpf", - "history":"2019-08-18: initially published under CC BY-SA 4.0; 2022-10-04: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"GAMIL3 (180 x 80 longitude/latitude; 26 levels; top level 2.19hPa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"CAS-LSM", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"LICOM3.0 (LICOM3.0, tripolar primarily 1deg; 360 x 218 longitude/latitude; 30 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE4.0", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2017", - "source_id":"FGOALS-g3" - }, - "FIO-ESM-2-0":{ - "activity_participation":[ - "CMIP", - "DCPP", - "GMMIP", - "OMIP", - "ScenarioMIP", - "SIMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "FIO-QLNM" - ], - "label":"FIO-ESM 2.0", - "label_extended":"FIO-ESM 2.0", - "license_info":{ - "exceptions_contact":"@fio.org.cn <- songroy", - "history":"2019-09-10: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"Prescribed monthly fields", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"CAM4 (0.9x1.25 finite volume grid; 192 x 288 longitude/latitude; 26 levels; top level ~2 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"CLM4.0 (same grid at atmos)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"POP2-W (POP2 coupled with MASNUM surface wave model, Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE4.0 (same grid as ocean)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2018", - "source_id":"FIO-ESM-2-0" - }, - "GFDL-AM4":{ - "activity_participation":[ - "CMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NOAA-GFDL" - ], - "label":"GFDL-AM4", - "label_extended":"GFDL-AM4", - "license_info":{ - "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", - "history":"2018-03-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"interactive", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"GFDL-AM4.0 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"fast chemistry, aerosol only", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"GFDL-LM4.0", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"GFDL-LM4.0", - "native_nominal_resolution":"100 km" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" - } - }, - "release_year":"2018", - "source_id":"GFDL-AM4" - }, - "GFDL-CM4":{ - "activity_participation":[ - "CFMIP", - "CMIP", - "DAMIP", - "DynVarMIP", - "FAFMIP", - "GMMIP", - "OMIP", - "RFMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NOAA-GFDL" - ], - "label":"GFDL-CM4", - "label_extended":"GFDL-CM4", - "license_info":{ - "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", - "history":"2018-03-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"interactive", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"GFDL-AM4.0.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"fast chemistry, aerosol only", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"GFDL-LM4.0.1 (1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 20 levels; bottom level 10m); land-Veg:unnamed (dynamic vegetation, dynamic land use); land-Hydro:unnamed (soil water and ice, multi-layer snow, rivers and lakes)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"GFDL-LM4.0.1", - "native_nominal_resolution":"100 km" - }, - "ocean":{ - "description":"GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"25 km" - }, - "ocnBgchem":{ - "description":"GFDL-BLINGv2", - "native_nominal_resolution":"25 km" - }, - "seaIce":{ - "description":"GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)", - "native_nominal_resolution":"25 km" - } - }, - "release_year":"2018", - "source_id":"GFDL-CM4" - }, - "GFDL-CM4C192":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NOAA-GFDL" - ], - "label":"GFDL-CM4C192", - "label_extended":"GFDL-CM4C192", - "license_info":{ - "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", - "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"interactive", - "native_nominal_resolution":"50 km" - }, - "atmos":{ - "description":"GFDL-AM4C192 (Cubed-sphere (c192) - 0.5 degree nominal horizontal resolution; 720 x 360 longitude/latitude; 33 levels; top level 1 hPa)", - "native_nominal_resolution":"50 km" - }, - "atmosChem":{ - "description":"fast chemistry, aerosol only", - "native_nominal_resolution":"50 km" - }, - "land":{ - "description":"GFDL-LM4.0.1", - "native_nominal_resolution":"50 km" - }, - "landIce":{ - "description":"GFDL-LM4.0.1", - "native_nominal_resolution":"50 km" - }, - "ocean":{ - "description":"GFDL-OM4p25 (GFDL-MOM6, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"25 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"GFDL-SIM4p25 (GFDL-SIS2.0, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 5 layers; 5 thickness categories)", - "native_nominal_resolution":"25 km" - } - }, - "release_year":"2018", - "source_id":"GFDL-CM4C192" - }, - "GFDL-ESM2M":{ - "activity_participation":[ - "FAFMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NOAA-GFDL" - ], - "label":"GFDL-ESM2M", - "label_extended":"GFDL-ESM2M", - "license_info":{ - "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", - "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"prescribed", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"GFDL-AM2 (144 x 90 longitude/latitude; 24 levels; top level 1 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"prescribed", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"GFDL-LM3.0", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"GFDL-LM3.0", - "native_nominal_resolution":"250 km" - }, - "ocean":{ - "description":"GFDL-MOM4p1 (tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"GFDL-TOPAZ2", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"GFDL-SIM2 (GFDL-SIS, tripolar - nominal 1 deg; 360 x 200 longitude/latitude; 3 layers; 5 thickness categories)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2012", - "source_id":"GFDL-ESM2M" - }, - "GFDL-ESM4":{ - "activity_participation":[ - "AerChemMIP", - "C4MIP", - "CDRMIP", - "CMIP", - "DAMIP", - "DynVarMIP", - "FAFMIP", - "LUMIP", - "RFMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NOAA-GFDL" - ], - "label":"GFDL-ESM4", - "label_extended":"GFDL-ESM4", - "license_info":{ - "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", - "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"interactive", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"GFDL-AM4.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 49 levels; top level 1 Pa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"GFDL-ATMCHEM4.1 (full atmospheric chemistry)", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"GFDL-LM4.1", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"GFDL-LM4.1", - "native_nominal_resolution":"100 km" - }, - "ocean":{ - "description":"GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"50 km" - }, - "ocnBgchem":{ - "description":"GFDL-COBALTv2", - "native_nominal_resolution":"50 km" - }, - "seaIce":{ - "description":"GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2018", - "source_id":"GFDL-ESM4" - }, - "GFDL-GRTCODE":{ - "activity_participation":[ - "RFMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NOAA-GFDL" - ], - "label":"GFDL-GRTCODE", - "label_extended":"GFDL GPU radiative transfer code with two stream solver (March 2019)", - "license_info":{ - "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", - "history":"2018-07-01: initially published under CC BY-NC-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" - } - }, - "release_year":"2019", - "source_id":"GFDL-GRTCODE" - }, - "GFDL-OM4p5B":{ - "activity_participation":[ - "OMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NOAA-GFDL" - ], - "label":"GFDL-OM4p5B", - "label_extended":"GFDL-OM4p5B", - "license_info":{ - "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", - "history":"2018-07-01: initially published under CC BY-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"GFDL-OM4p5 (GFDL-MOM6, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"50 km" - }, - "ocnBgchem":{ - "description":"GFDL-BLINGv2", - "native_nominal_resolution":"50 km" - }, - "seaIce":{ - "description":"GFDL-SIM4p5 (GFDL-SIS2.0, tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 5 layers; 5 thickness categories)", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2018", - "source_id":"GFDL-OM4p5B" - }, - "GFDL-RFM-DISORT":{ - "activity_participation":[ - "RFMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NOAA-GFDL" - ], - "label":"GFDL-RFM-DISORT", - "label_extended":"GFDL Reference Forward Model Line-by-Line with DISORT solver (March 2019)", - "license_info":{ - "exceptions_contact":"@noaa.gov <- gfdl.climate.model.info", - "history":"2018-07-01: initially published under CC BY-NC-SA 4.0; 2022-06-08: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" - } - }, - "release_year":"2019", - "source_id":"GFDL-RFM-DISORT" - }, - "GISS-E2-1-G":{ - "activity_participation":[ - "AerChemMIP", - "C4MIP", - "CFMIP", - "CMIP", - "DAMIP", - "DynVarMIP", - "FAFMIP", - "GMMIP", - "ISMIP6", - "LS3MIP", - "LUMIP", - "OMIP", - "PAMIP", - "PMIP", - "RFMIP", - "SIMIP", - "ScenarioMIP", - "VIACSAB", - "VolMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NASA-GISS" - ], - "label":"GISS-E2.1G", - "label_extended":"GISS-E2.1G", - "license_info":{ - "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", - "history":"2018-08-21: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id":"CC0 1.0", - "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url":"https://creativecommons.org/publicdomain/zero/1.0/" - }, - "model_component":{ - "aerosol":{ - "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"GISS LSM", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"GISS Ocean (GO1, 1 degree; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"GISS SI", - "native_nominal_resolution":"250 km" - } - }, - "release_year":"2019", - "source_id":"GISS-E2-1-G" - }, - "GISS-E2-1-G-CC":{ - "activity_participation":[ - "C4MIP", - "CMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NASA-GISS" - ], - "label":"GISS-E2-1-G-CC", - "label_extended":"GISS-E2-1-G-CC", - "license_info":{ - "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", - "history":"2019-03-25: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id":"CC0 1.0", - "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url":"https://creativecommons.org/publicdomain/zero/1.0/" - }, - "model_component":{ - "aerosol":{ - "description":"varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"GISS-E2.1 (2 x 2.5 degrees; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"GISS LSM", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"Fixed", - "native_nominal_resolution":"250 km" - }, - "ocean":{ - "description":"GISS Ocean (1 deg; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"NOBM (NASA Ocean Biogeochemistry Model; same grid as ocean)", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"GISS SI (same grid as ocean)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"GISS-E2-1-G-CC" - }, - "GISS-E2-1-H":{ - "activity_participation":[ - "AerChemMIP", - "CFMIP", - "CMIP", - "OMIP", - "PAMIP", - "SIMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NASA-GISS" - ], - "label":"GISS-E2.1H", - "label_extended":"GISS-E2.1H", - "license_info":{ - "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", - "history":"2018-08-24: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id":"CC0 1.0", - "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url":"https://creativecommons.org/publicdomain/zero/1.0/" - }, - "model_component":{ - "aerosol":{ - "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"GISS LSM", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"HYCOM Ocean (~1 degree tripolar grid; 360 x 180 longitude/latitude; 33 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"GISS SI", - "native_nominal_resolution":"250 km" - } - }, - "release_year":"2019", - "source_id":"GISS-E2-1-H" - }, - "GISS-E2-2-G":{ - "activity_participation":[ - "AerChemMIP", - "CFMIP", - "CMIP", - "DAMIP", - "DynVarMIP", - "FAFMIP", - "GMMIP", - "ISMIP6", - "LS3MIP", - "LUMIP", - "OMIP", - "PAMIP", - "PMIP", - "RFMIP", - "SIMIP", - "ScenarioMIP", - "VIACSAB", - "VolMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NASA-GISS" - ], - "label":"GISS-E2-2-G", - "label_extended":"GISS-E2-2-G", - "license_info":{ - "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", - "history":"2019-11-20: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id":"CC0 1.0", - "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url":"https://creativecommons.org/publicdomain/zero/1.0/" - }, - "model_component":{ - "aerosol":{ - "description":"varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"GISS-E2.2 (High-top, 2 x 2.5 degrees; 144 x 90 longitude/latitude; 102 levels; top level 0.002 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"GISS LSM", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"Fixed", - "native_nominal_resolution":"250 km" - }, - "ocean":{ - "description":"GISS Ocean (GO1, 1 degree; 360 x 180 longitude/latitude; 40 levels; top grid cell 0-10m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"GISS SI", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"GISS-E2-2-G" - }, - "GISS-E2-2-H":{ - "activity_participation":[ - "CFMIP", - "CMIP", - "SIMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NASA-GISS" - ], - "label":"GISS-E2.2H", - "label_extended":"GISS-E2.2H", - "license_info":{ - "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", - "history":"2019-11-20: initially published under CC BY-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id":"CC0 1.0", - "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url":"https://creativecommons.org/publicdomain/zero/1.0/" - }, - "model_component":{ - "aerosol":{ - "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"GISS-E2.2 (High Top, 2.5x2 degree; 144 x 90 longitude/latitude; 102 levels; top level 0.002 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"GISS LSM", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"HYCOM Ocean (~1 degree tripolar grid; 360 x 180 longitude/latitude; 33 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"GISS SI (same grid as atmos)", - "native_nominal_resolution":"250 km" - } - }, - "release_year":"2021", - "source_id":"GISS-E2-2-H" - }, - "GISS-E3-G":{ - "activity_participation":[ - "AerChemMIP", - "C4MIP", - "CFMIP", - "CMIP", - "DAMIP", - "DynVarMIP", - "FAFMIP", - "GMMIP", - "ISMIP6", - "LS3MIP", - "LUMIP", - "OMIP", - "PAMIP", - "PMIP", - "RFMIP", - "SIMIP", - "ScenarioMIP", - "VIACSAB", - "VolMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NASA-GISS" - ], - "label":"GISS-E3-G", - "label_extended":"GISS-E3-G", - "license_info":{ - "exceptions_contact":"@lists.nasa.gov <- cmip-giss-l", - "history":"2019-12-30: initially published under CC BY-NC-SA 4.0; 2021-12-01: relaxed to CC0 1.0", - "id":"CC0 1.0", - "license":"Creative Commons CC0 1.0 Universal Public Domain Dedication (CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/)", - "source_specific_info":"https://data.giss.nasa.gov/modelE/cmip6/#datalicense", - "url":"https://creativecommons.org/publicdomain/zero/1.0/" - }, - "model_component":{ - "aerosol":{ - "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"GISS-E3 (Cubed sphere, C90; 90 x 90 x 6 gridboxes/cubeface, grid resolution aligns with longitude/latitude along central lines for each cubeface; 102 levels; top level 0.002 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"GISS LSM", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"GISS Ocean (1 degree; 360 x 180 longitude/latitude; 32 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"GISS SI", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2020", - "source_id":"GISS-E3-G" - }, - "HadGEM3-GC31-HH":{ - "activity_participation":[ - "CMIP", - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MOHC", - "NERC" - ], - "label":"HadGEM3-GC31-HH", - "label_extended":"HadGEM3-GC3.1-N512ORCA12", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", - "history":"2018-09-27: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"50 km" - }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"50 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JULES-HadGEM3-GL7.1", - "native_nominal_resolution":"50 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"10 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)", - "native_nominal_resolution":"10 km" - } - }, - "release_year":"2016", - "source_id":"HadGEM3-GC31-HH" - }, - "HadGEM3-GC31-HM":{ - "activity_participation":[ - "CMIP", - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MOHC", - "NERC" - ], - "label":"HadGEM3-GC31-HM", - "label_extended":"HadGEM3-GC3.1-N512ORCA025", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", - "history":"2017-08-31: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"50 km" - }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"50 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JULES-HadGEM3-GL7.1", - "native_nominal_resolution":"50 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", - "native_nominal_resolution":"25 km" - } - }, - "release_year":"2016", - "source_id":"HadGEM3-GC31-HM" - }, - "HadGEM3-GC31-LL":{ - "activity_participation":[ - "CFMIP", - "CMIP", - "DAMIP", - "FAFMIP", - "HighResMIP", - "LS3MIP", - "LUMIP", - "PMIP", - "RFMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MOHC", - "NERC" - ], - "label":"HadGEM3-GC31-LL", - "label_extended":"HadGEM3-GC3.1-N96ORCA1", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", - "history":"2017-09-21: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JULES-HadGEM3-GL7.1", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2016", - "source_id":"HadGEM3-GC31-LL" - }, - "HadGEM3-GC31-LM":{ - "activity_participation":[ - "CMIP", - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MOHC" - ], - "label":"HadGEM3-GC31-LM", - "label_extended":"HadGEM3-GC3.1-N96ORCA025", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", - "history":"2017-09-06: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JULES-HadGEM3-GL7.1", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", - "native_nominal_resolution":"25 km" - } - }, - "release_year":"2016", - "source_id":"HadGEM3-GC31-LM" - }, - "HadGEM3-GC31-MH":{ - "activity_participation":[ - "CMIP", - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MOHC" - ], - "label":"HadGEM3-GC31-MH", - "label_extended":"HadGEM3-GC3.1-N216ORCA12", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", - "history":"2017-12-27: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JULES-HadGEM3-GL7.1", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"10 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)", - "native_nominal_resolution":"10 km" - } - }, - "release_year":"2016", - "source_id":"HadGEM3-GC31-MH" - }, - "HadGEM3-GC31-MM":{ - "activity_participation":[ - "CMIP", - "DCPP", - "GMMIP", - "HighResMIP", - "LS3MIP", - "OMIP", - "PAMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MOHC" - ], - "label":"HadGEM3-GC31-MM", - "label_extended":"HadGEM3-GC3.1-N216ORCA025", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.hadgem3", - "history":"2017-08-18: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JULES-HadGEM3-GL7.1", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"25 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", - "native_nominal_resolution":"25 km" - } - }, - "release_year":"2016", - "source_id":"HadGEM3-GC31-MM" - }, - "HiRAM-SIT-HR":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "AS-RCEC" - ], - "label":"HiRAM-SIT-HR", - "label_extended":"HiRAM Coupling 1-D SIT (25 km atmosphere and 25 km ocean)", - "license_info":{ - "exceptions_contact":"@gate.sinica.edu.tw <- cytu", - "history":"2020-12-23: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"GFDL-HiRAM (Cubed-sphere (c384) - 0.25 degree nominal horizontal resolution; 1536 x 768 longitude/latitude; 32 levels; top level 1 hPa)", - "native_nominal_resolution":"25 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"GFDL-LM3 (same grid as atmos)", - "native_nominal_resolution":"25 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"SIT (1-D, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 50 levels with skin layer and 1 m resolution for uppermost 10 m)", - "native_nominal_resolution":"25 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" - } - }, - "release_year":"2018", - "source_id":"HiRAM-SIT-HR" - }, - "HiRAM-SIT-LR":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "AS-RCEC" - ], - "label":"HiRAM-SIT-LR", - "label_extended":"HiRAM Coupling 1-D SIT (50 km atmosphere and 25 km ocean)", - "license_info":{ - "exceptions_contact":"@gate.sinica.edu.tw <- cytu", - "history":"2020-12-29: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"GFDL-HiRAM (Cubed-sphere (c192) - 0.5 degree nominal horizontal resolution; 768 x 384 longitude/latitude; 32 levels; top level 1 hPa)", - "native_nominal_resolution":"50 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"GFDL-LM3 (same grid as atmos)", - "native_nominal_resolution":"50 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"SIT (1-D, tripolar - nominal 0.25 deg; 1440 x 1080 longitude/latitude; 50 levels with skin layer and 1 m resolution for uppermost 10 m)", - "native_nominal_resolution":"25 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" - } - }, - "release_year":"2018", - "source_id":"HiRAM-SIT-LR" - }, - "ICON-ESM-LR":{ - "activity_participation":[ - "CMIP", - "OMIP", - "SIMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MPI-M" - ], - "label":"ICON-ESM-LR", - "label_extended":"ICON-ESM-LR", - "license_info":{ - "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", - "history":"2021-02-15: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none, prescribed MACv2-SP", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"ICON-A (icosahedral/triangles; 160 km; 47 levels; top level 80 km)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JSBACH4.20", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none/prescribed", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"ICON-O (icosahedral/triangles; 40 km; 40 levels; top grid cell 0-12 m)", - "native_nominal_resolution":"50 km" - }, - "ocnBgchem":{ - "description":"HAMOCC", - "native_nominal_resolution":"50 km" - }, - "seaIce":{ - "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2017", - "source_id":"ICON-ESM-LR" - }, - "IITM-ESM":{ - "activity_participation":[ - "CMIP", - "GMMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "CCCR-IITM" - ], - "label":"IITM-ESM", - "label_extended":"IITM-ESM", - "license_info":{ - "exceptions_contact":"@tropmet.res.in <- iitm-esm", - "history":"2019-07-19: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"prescribed MAC-v2", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"IITM-GFSv1 (T62L64, Linearly Reduced Gaussian Grid; 192 x 94 longitude/latitude; 64 levels; top level 0.2 mb)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"NOAH LSMv2.7.1", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MOM4p1 (tripolar, primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"TOPAZv2.0", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"SISv1.0", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2015", - "source_id":"IITM-ESM" - }, - "INM-CM4-8":{ - "activity_participation":[ - "CMIP", - "PMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "INM" - ], - "label":"INM-CM4-8", - "label_extended":"INM-CM4-8", - "license_info":{ - "exceptions_contact":"@gmail.com <- volodinev", - "history":"2019-05-28: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"INM-AER1", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"INM-AM4-8 (2x1.5; 180 x 120 longitude/latitude; 21 levels; top level sigma = 0.01)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"INM-LND1", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"INM-OM5 (North Pole shifted to 60N, 90E; 360 x 318 longitude/latitude; 40 levels; sigma vertical coordinate)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"INM-ICE1", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2016", - "source_id":"INM-CM4-8" - }, - "INM-CM5-0":{ - "activity_participation":[ - "CMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "INM" - ], - "label":"INM-CM5-0", - "label_extended":"INM-CM5-0", - "license_info":{ - "exceptions_contact":"@gmail.com <- volodinev", - "history":"2019-06-10: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"INM-AER1", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"INM-AM5-0 (2x1.5; 180 x 120 longitude/latitude; 73 levels; top level sigma = 0.0002)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"INM-LND1", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"INM-OM5 (North Pole shifted to 60N, 90E. 0.5x0.25; 720 x 720 longitude/latitude; 40 levels; vertical sigma coordinate)", - "native_nominal_resolution":"50 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"INM-ICE1", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2016", - "source_id":"INM-CM5-0" - }, - "INM-CM5-H":{ - "activity_participation":[ - "CMIP", - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "INM" - ], - "label":"INM-CM5-H", - "label_extended":"INM-CM5-H", - "license_info":{ - "exceptions_contact":"@gmail.com <- volodinev", - "history":"2019-08-12: initially published under CC BY-SA 4.0; 2022-09-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"INM-AER1", - "native_nominal_resolution":"50 km" - }, - "atmos":{ - "description":"INM-AM5-H (0.67x0.5; 540 x 360 longitude/latitude; 73 levels; top level sigma = 0.0002)", - "native_nominal_resolution":"50 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"INM-LND1", - "native_nominal_resolution":"50 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"INM-OM5-H (North Pole shifted to 60N, 90E. 0.167x0.125; 2160x1440 longitude/latitude; 40 levels; vertical sigma coordinate)", - "native_nominal_resolution":"10 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"INM-ICE1", - "native_nominal_resolution":"10 km" - } - }, - "release_year":"2016", - "source_id":"INM-CM5-H" - }, - "IPSL-CM5A2-INCA":{ - "activity_participation":[ - "AerChemMIP", - "LUMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "IPSL" - ], - "label":"IPSL-CM5A2-INCA", - "label_extended":"IPSL-CM5A2-INCA", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2020-07-29: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"INCA v6 NMHC-AER-S", - "native_nominal_resolution":"500 km" - }, - "atmos":{ - "description":"LMDZ (APv5; 96 x 96 longitude/latitude; 39 levels; top level 80000 m)", - "native_nominal_resolution":"500 km" - }, - "atmosChem":{ - "description":"INCA v6 NMHC-AER-S", - "native_nominal_resolution":"500 km" - }, - "land":{ - "description":"ORCHIDEE (IPSLCM5A2.1, Water/Carbon/Energy mode)", - "native_nominal_resolution":"500 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO-OPA (v3.6, ORCA2 tripolar primarily 2deg; 182 x 149 longitude/latitude; 31 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"250 km" - }, - "ocnBgchem":{ - "description":"NEMO-PISCES", - "native_nominal_resolution":"250 km" - }, - "seaIce":{ - "description":"NEMO-LIM2", - "native_nominal_resolution":"250 km" - } - }, - "release_year":"2019", - "source_id":"IPSL-CM5A2-INCA" - }, - "IPSL-CM6A-ATM-HR":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "IPSL" - ], - "label":"IPSL-CM6A-ATM-HR", - "label_extended":"IPSL-CM6A-ATM-HR", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2019-01-22: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"LMDZ (NPv6, N256; 512 x 360 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution":"50 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"ORCHIDEE (v2.0, Water/Carbon/Energy mode)", - "native_nominal_resolution":"50 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" - } - }, - "release_year":"2018", - "source_id":"IPSL-CM6A-ATM-HR" - }, - "IPSL-CM6A-ATM-ICO-HR":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "IPSL" - ], - "label":"IPSL-CM6A-ATM-ICO-HR", - "label_extended":"IPSL-CM6A-ATM-ICO-HR", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2022-07-21: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"DYNAMICO-LMDZ (NPv6; 256000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", - "native_nominal_resolution":"50 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode)", - "native_nominal_resolution":"50 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_ominal_resolution":"none" - } - }, - "release_year":"2021", - "source_id":"IPSL-CM6A-ATM-ICO-HR" - }, - "IPSL-CM6A-ATM-ICO-LR":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "IPSL" - ], - "label":"IPSL-CM6A-ATM-ICO-LR", - "label_extended":"IPSL-CM6A-ATM-ICO-LR", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2022-07-21: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"DYNAMICO-LMDZ (NPv6; 16000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode)", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_ominal_resolution":"none" - } - }, - "release_year":"2021", - "source_id":"IPSL-CM6A-ATM-ICO-LR" - }, - "IPSL-CM6A-ATM-ICO-MR":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "IPSL" - ], - "label":"IPSL-CM6A-ATM-ICO-MR", - "label_extended":"IPSL-CM6A-ATM-ICO-MR", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2022-07-20: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"DYNAMICO-LMDZ (NPv6; 64000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_ominal_resolution":"none" - } - }, - "release_year":"2021", - "source_id":"IPSL-CM6A-ATM-ICO-MR" - }, - "IPSL-CM6A-ATM-ICO-VHR":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "IPSL" - ], - "label":"IPSL-CM6A-ATM-ICO-VHR", - "label_extended":"IPSL-CM6A-ATM-ICO-VHR", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2022-07-21: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"DYNAMICO-LMDZ (NPv6; 1024000-point icosahedral-hexagonal; 79 levels; top level 80000 m)", - "native_nominal_resolution":"25 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode)", - "native_nominal_resolution":"25 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_ominal_resolution":"none" - } - }, - "release_year":"2021", - "source_id":"IPSL-CM6A-ATM-ICO-VHR" - }, - "IPSL-CM6A-ATM-LR-REPROBUS":{ - "activity_participation":[ - "AerChemMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "IPSL" - ], - "label":"IPSL-CM6A-ATM-LR-REPROBUS", - "label_extended":"IPSL-CM6A-ATM-LR-REPROBUS", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2024-06-18: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"REPROBUS v6 (same grid as atmos)", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" - } - }, - "release_year":"2021", - "source_id":"IPSL-CM6A-ATM-LR-REPROBUS" - }, - "IPSL-CM6A-LR":{ - "activity_participation":[ - "AerChemMIP", - "C4MIP", - "CDRMIP", - "CFMIP", - "CMIP", - "DAMIP", - "DCPP", - "FAFMIP", - "GMMIP", - "GeoMIP", - "HighResMIP", - "LS3MIP", - "LUMIP", - "OMIP", - "PAMIP", - "PMIP", - "RFMIP", - "ScenarioMIP", - "VolMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "IPSL" - ], - "label":"IPSL-CM6A-LR", - "label_extended":"IPSL-CM6A-LR", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2018-03-14: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"LMDZ (NPv6, N96; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"ORCHIDEE (v2.0, Water/Carbon/Energy mode)", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"NEMO-PISCES", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"NEMO-LIM3", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2017", - "source_id":"IPSL-CM6A-LR" - }, - "IPSL-CM6A-LR-INCA":{ - "activity_participation":[ - "AerChemMIP", - "RFMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "IPSL" - ], - "label":"IPSL-CM6A-LR-INCA", - "label_extended":"IPSL-CM6A-LR-INCA", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2020-07-17: initially published under CC BY-NC-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"INCA v6 AER", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"LMDZ (NPv6 ; 144 x 143 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"ORCHIDEE (v2.0, Water/Carbon/Energy mode)", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"NEMO-PISCES", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"NEMO-LIM3", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"IPSL-CM6A-LR-INCA" - }, - "IPSL-CM6A-MR1":{ - "activity_participation":[ - "CMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "IPSL" - ], - "label":"IPSL-CM6A-MR1", - "label_extended":"IPSL-CM6A-MR1", - "license_info":{ - "exceptions_contact":"@listes.ipsl.fr <- ipsl-cmip6", - "history":"2024-03-26: initially published under CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"LMDZ (NPv6; 256 x 256 longitude/latitude; 79 levels; top level 80000 m)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"ORCHIDEE (v2.2, Water/Carbon/Energy mode; same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO-OPA (eORCA1.3, tripolar primarily 1deg; 362 x 332 longitude/latitude; 75 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"NEMO-PISCES (same grid as ocean)", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"NEMO-LIM3 (same grid as ocean)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2021", - "source_id":"IPSL-CM6A-MR1" - }, - "KACE-1-0-G":{ - "activity_participation":[ - "CMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NIMS-KMA" - ], - "label":"KACE1.0-G", - "label_extended":"KACE1.0-GLOMAP", - "license_info":{ - "exceptions_contact":"@korea.kr <- sunghm122", - "history":"2019-08-13: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JULES-HadGEM3-GL7.1", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MOM4p1 (tripolar primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (tripolar primarily 1deg; 360 x 200 longitude/latitude)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2018", - "source_id":"KACE-1-0-G" - }, - "KIOST-ESM":{ - "activity_participation":[ - "C4MIP", - "CMIP", - "DynVarMIP", - "PMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "KIOST" - ], - "label":"KIOST-ESM", - "label_extended":"KIOST Earth System Model v2", - "license_info":{ - "exceptions_contact":"@pknu.ac.kr <- yhokim", - "history":"2019-11-04: initially published under CC BY-SA 4.0; 2022-09-28 relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"GFDL-AM2.0 (cubed sphere (C48); 192 x 96 longitude/latitude; 32 vertical levels; top level 2 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"Simple carbon aerosol model (emission type)", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"NCAR-CLM4", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"NCAR-CLM4", - "native_nominal_resolution":"250 km" - }, - "ocean":{ - "description":"GFDL-MOM5.0 (tripolar - nominal 1.0 deg; 360 x 200 longitude/latitude; 52 levels; top grid cell 0-2 m; NK mixed layer scheme)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"TOPAZ2", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"GFDL-SIS", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2018", - "source_id":"KIOST-ESM" - }, - "LBLRTM-12-8":{ - "activity_participation":[ - "RFMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "AER" - ], - "label":"LBLRTM 12.8", - "label_extended":"Line-By-Line Radiative Transfer Model v12.8, aer_v_3.6, MT_CKD_3.2", - "license_info":{ - "exceptions_contact":"@aer.com <- aer_lblrtm", - "history":"2019-05-14: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" - } - }, - "release_year":"2017", - "source_id":"LBLRTM-12-8" - }, - "MCM-UA-1-0":{ - "activity_participation":[ - "CMIP", - "FAFMIP", - "PMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "UA" - ], - "label":"MCM-UA-1-0", - "label_extended":"Manabe Climate Model v1.0 - University of Arizona", - "license_info":{ - "exceptions_contact":"@email.arizona.edu <- GEOS-CMIP", - "history":"2019-07-31: initially published under CC BY-SA 4.0; 2022-06-02: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"Modifies surface albedoes (Haywood et al. 1997, doi: 10.1175/1520-0442(1997)010<1562:GCMCOT>2.0.CO;2)", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"R30L14 (3.75 X 2.5 degree (long-lat) configuration; 96 x 80 longitude/latitude; 14 levels; top level 0.015 sigma, 15 mb)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"Standard Manabe bucket hydrology scheme (Manabe 1969, doi: 10.1175/1520-0493(1969)097<0739:CATOC>2.3.CO;2)", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"Specified location - invariant in time, has high albedo and latent heat capacity", - "native_nominal_resolution":"250 km" - }, - "ocean":{ - "description":"MOM1.0 (MOM1, 1.875 X 2.5 deg; 192 x 80 longitude/latitude; 18 levels; top grid cell 0-40 m)", - "native_nominal_resolution":"250 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"Thermodynamic ice model (free drift dynamics)", - "native_nominal_resolution":"250 km" - } - }, - "release_year":"1991", - "source_id":"MCM-UA-1-0" - }, - "MIROC-ES2H":{ - "activity_participation":[ - "AerChemMIP", - "C4MIP", - "CMIP", - "DynVarMIP", - "GeoMIP", - "ScenarioMIP", - "VIACSAB" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MIROC" - ], - "label":"MIROC-ES2H", - "label_extended":"MIROC-ES2H", - "license_info":{ - "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", - "history":"2021-01-25: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"SPRINTARS6.0", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"CHASER4.0 (T42; 128 x 64 longitude/latitude; 81 levels; top level 0.004 hPa)", - "native_nominal_resolution":"500 km" - }, - "land":{ - "description":"MATSIRO6.0+VISIT-e ver.1.0", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"COCO4.9", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2018", - "source_id":"MIROC-ES2H" - }, - "MIROC-ES2H-NB":{ - "activity_participation":[ - "AerChemMIP", - "CMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MIROC" - ], - "label":"MIROC-ES2H-NB", - "label_extended":"MIROC-ES2H with No BiogenicCycle", - "license_info":{ - "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", - "history":"2020-04-28: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"SPRINTARS6.0", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"CHASER4.0 (T42; 128 x 64 longitude/latitude; 81 levels; top level 0.004 hPa)", - "native_nominal_resolution":"500 km" - }, - "land":{ - "description":"MATSIRO6", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"COCO4.9", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"MIROC-ES2H-NB" - }, - "MIROC-ES2L":{ - "activity_participation":[ - "C4MIP", - "CDRMIP", - "CMIP", - "DAMIP", - "DynVarMIP", - "GeoMIP", - "LUMIP", - "OMIP", - "PMIP", - "ScenarioMIP", - "VIACSAB", - "VolMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MIROC" - ], - "label":"MIROC-ES2L", - "label_extended":"MIROC-ES2L", - "license_info":{ - "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", - "history":"2019-08-23: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"SPRINTARS6.0", - "native_nominal_resolution":"500 km" - }, - "atmos":{ - "description":"CCSR AGCM (T42; 128 x 64 longitude/latitude; 40 levels; top level 3 hPa)", - "native_nominal_resolution":"500 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"MATSIRO6.0+VISIT-e ver.1.0", - "native_nominal_resolution":"500 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"COCO4.9", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2018", - "source_id":"MIROC-ES2L" - }, - "MIROC6":{ - "activity_participation":[ - "AerChemMIP", - "CFMIP", - "CMIP", - "DAMIP", - "DCPP", - "DynVarMIP", - "FAFMIP", - "GMMIP", - "HighResMIP", - "LS3MIP", - "OMIP", - "PAMIP", - "RFMIP", - "SIMIP", - "ScenarioMIP", - "VIACSAB" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MIROC" - ], - "label":"MIROC6", - "label_extended":"MIROC6", - "license_info":{ - "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", - "history":"2018-12-12: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"SPRINTARS6.0", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"MATSIRO6.0", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"COCO4.9", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2017", - "source_id":"MIROC6" - }, - "MPI-ESM-1-2-HAM":{ - "activity_participation":[ - "AerChemMIP", - "CMIP", - "RFMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "HAMMOZ-Consortium" - ], - "label":"MPI-ESM1.2-HAM", - "label_extended":"MPI-ESM1.2-HAM", - "license_info":{ - "exceptions_contact":"@sympa.ethz.ch <- aerchemmip_echam-ham", - "history":"2019-06-27: initially published under CC BY-SA 4.0; 2022-07-27: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"HAM2.3", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"sulfur chemistry (unnamed)", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"JSBACH 3.20", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)", - "native_nominal_resolution":"250 km" - }, - "ocnBgchem":{ - "description":"HAMOCC6", - "native_nominal_resolution":"250 km" - }, - "seaIce":{ - "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", - "native_nominal_resolution":"250 km" - } - }, - "release_year":"2017", - "source_id":"MPI-ESM-1-2-HAM" - }, - "MPI-ESM1-2-HR":{ - "activity_participation":[ - "CMIP", - "CORDEX", - "DCPP", - "DynVarMIP", - "FAFMIP", - "GeoMIP", - "HighResMIP", - "OMIP", - "SIMIP", - "ScenarioMIP", - "VolMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MPI-M", - "DWD", - "DKRZ" - ], - "label":"MPI-ESM1.2-HR", - "label_extended":"MPI-ESM1.2-HR", - "license_info":{ - "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", - "history":"2017-10-03: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none, prescribed MACv2-SP", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"ECHAM6.3 (spectral T127; 384 x 192 longitude/latitude; 95 levels; top level 0.01 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JSBACH3.20", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none/prescribed", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MPIOM1.63 (tripolar TP04, approximately 0.4deg; 802 x 404 longitude/latitude; 40 levels; top grid cell 0-12 m)", - "native_nominal_resolution":"50 km" - }, - "ocnBgchem":{ - "description":"HAMOCC6", - "native_nominal_resolution":"50 km" - }, - "seaIce":{ - "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2017", - "source_id":"MPI-ESM1-2-HR" - }, - "MPI-ESM1-2-LR":{ - "activity_participation":[ - "C4MIP", - "CDRMIP", - "CFMIP", - "CMIP", - "DAMIP", - "DCPP", - "DynVarMIP", - "FAFMIP", - "GMMIP", - "GeoMIP", - "ISMIP6", - "LS3MIP", - "LUMIP", - "OMIP", - "PMIP", - "RFMIP", - "SIMIP", - "ScenarioMIP", - "VolMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MPI-M", - "AWI", - "DKRZ", - "DWD" - ], - "label":"MPI-ESM1.2-LR", - "label_extended":"MPI-ESM1.2-LR", - "license_info":{ - "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", - "history":"2019-07-10: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none, prescribed MACv2-SP", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JSBACH3.20", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none/prescribed", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MPIOM1.63 (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)", - "native_nominal_resolution":"250 km" - }, - "ocnBgchem":{ - "description":"HAMOCC6", - "native_nominal_resolution":"250 km" - }, - "seaIce":{ - "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", - "native_nominal_resolution":"250 km" - } - }, - "release_year":"2017", - "source_id":"MPI-ESM1-2-LR" - }, - "MPI-ESM1-2-XR":{ - "activity_participation":[ - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MPI-M" - ], - "label":"MPI-ESM1.2-XR", - "label_extended":"MPI-ESM1.2-XR", - "license_info":{ - "exceptions_contact":"@dkrz.de <- cmip6-mpi-esm", - "history":"2017-10-03: initially published under CC BY-SA 4.0; 2022-06-16: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none, prescribed MACv2-SP", - "native_nominal_resolution":"50 km" - }, - "atmos":{ - "description":"ECHAM6.3 (spectral T255; 768 x 384 longitude/latitude; 95 levels; top level 0.01 hPa)", - "native_nominal_resolution":"50 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JSBACH3.20", - "native_nominal_resolution":"50 km" - }, - "landIce":{ - "description":"none/prescribed", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MPIOM1.63 (tripolar TP04, approximately 0.4deg; 802 x 404 longitude/latitude; 40 levels; top grid cell 0-12 m)", - "native_nominal_resolution":"50 km" - }, - "ocnBgchem":{ - "description":"HAMOCC6", - "native_nominal_resolution":"50 km" - }, - "seaIce":{ - "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2017", - "source_id":"MPI-ESM1-2-XR" - }, - "MRI-AGCM3-2-H":{ - "activity_participation":[ - "DynVarMIP", - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MRI" - ], - "label":"MRI-AGCM3-2-H", - "label_extended":"MRI-AGCM3-2-H", - "license_info":{ - "exceptions_contact":"@mri-jma.go.jp <- rmizuta", - "history":"2019-07-11: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"Prescribed from MRI-ESM2.0", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"MRI-AGCM3.2H (TL319; 640 x 320 longitude/latitude; 64 levels; top level 0.01 hPa)", - "native_nominal_resolution":"50 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"SIB0109", - "native_nominal_resolution":"50 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" - } - }, - "release_year":"2017", - "source_id":"MRI-AGCM3-2-H" - }, - "MRI-AGCM3-2-S":{ - "activity_participation":[ - "CMIP", - "DynVarMIP", - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MRI" - ], - "label":"MRI-AGCM3-2-S", - "label_extended":"MRI-AGCM3-2-S", - "license_info":{ - "exceptions_contact":"@mri-jma.go.jp <- rmizuta", - "history":"2019-07-11: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"Prescribed from MRI-ESM2.0", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"MRI-AGCM3.2S (TL959; 1920 x 960 longitude/latitude; 64 levels; top level 0.01 hPa)", - "native_nominal_resolution":"25 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"SIB0109", - "native_nominal_resolution":"25 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" - } - }, - "release_year":"2017", - "source_id":"MRI-AGCM3-2-S" - }, - "MRI-ESM2-0":{ - "activity_participation":[ - "AerChemMIP", - "C4MIP", - "CFMIP", - "CMIP", - "CORDEX", - "DAMIP", - "DCPP", - "DynVarMIP", - "FAFMIP", - "GMMIP", - "GeoMIP", - "LS3MIP", - "OMIP", - "PMIP", - "RFMIP", - "SIMIP", - "ScenarioMIP", - "VolMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MRI" - ], - "label":"MRI-ESM2.0", - "label_extended":"MRI-ESM2.0", - "license_info":{ - "exceptions_contact":"@mri-jma.go.jp <- mdeushi", - "history":"2019-02-22: initially published under CC BY-SA 4.0; 2022-08-07: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MASINGAR mk2r4 (TL95; 192 x 96 longitude/latitude; 80 levels; top level 0.01 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"MRI-AGCM3.5 (TL159; 320 x 160 longitude/latitude; 80 levels; top level 0.01 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"MRI-CCM2.1 (T42; 128 x 64 longitude/latitude; 80 levels; top level 0.01 hPa)", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"HAL 1.0", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MRI.COM4.4 (tripolar primarily 0.5 deg latitude/1 deg longitude with meridional refinement down to 0.3 deg within 10 degrees north and south of the equator; 360 x 364 longitude/latitude; 61 levels; top grid cell 0-2 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"MRI.COM4.4", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"MRI.COM4.4", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2017", - "source_id":"MRI-ESM2-0" - }, - "NESM3":{ - "activity_participation":[ - "CMIP", - "DAMIP", - "DCPP", - "GMMIP", - "GeoMIP", - "PMIP", - "ScenarioMIP", - "VolMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NUIST" - ], - "label":"NESM v3", - "label_extended":"NUIST ESM v3", - "license_info":{ - "exceptions_contact":"@nuist.edu.cn <- esmc", - "history":"2019-06-25: initially published under CC BY-SA 4.0; 2022-10-05: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"ECHAM v6.3 (T63; 192 x 96 longitude/latitude; 47 levels; top level 1 Pa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JSBACH v3.1", - "native_nominal_resolution":"2.5 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO v3.4 (NEMO v3.4, tripolar primarily 1deg; 384 x 362 longitude/latitude; 46 levels; top grid cell 0-6 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE4.1", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2016", - "source_id":"NESM3" - }, - "NICAM16-7S":{ - "activity_participation":[ - "CMIP", - "DynVarMIP", - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MIROC" - ], - "label":"NICAM16-7S", - "label_extended":"NICAM.16 gl07-L38 with NSW6", - "license_info":{ - "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", - "history":"2019-03-18: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"Prescribed MACv2-SP", - "native_nominal_resolution":"50 km" - }, - "atmos":{ - "description":"NICAM.16 (56km icosahedral grid; 163,842 grid cells (=10*4^7+2); 38 levels; top level 40 km)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"MATSIRO6 (w/o MOSAIC)", - "native_nominal_resolution":"50 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"Fixed", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2017", - "source_id":"NICAM16-7S" - }, - "NICAM16-8S":{ - "activity_participation":[ - "CMIP", - "DynVarMIP", - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MIROC" - ], - "label":"NICAM16-8S", - "label_extended":"NICAM.16 gl08-L38 with NSW6", - "license_info":{ - "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", - "history":"2019-08-30: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"Prescribed MACv2-SP", - "native_nominal_resolution":"25 km" - }, - "atmos":{ - "description":"NICAM.16 (28km icosahedral grid; 655,362 grid cells (=10*4^8+2); 38 levels; top level 40 km)", - "native_nominal_resolution":"50 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"MATSIRO6 (w/o MOSAIC)", - "native_nominal_resolution":"25 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"Fixed", - "native_nominal_resolution":"25 km" - } - }, - "release_year":"2017", - "source_id":"NICAM16-8S" - }, - "NICAM16-9S":{ - "activity_participation":[ - "CMIP", - "DynVarMIP", - "HighResMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MIROC" - ], - "label":"NICAM16-9S", - "label_extended":"NICAM.16 gl09-L38 with NSW6", - "license_info":{ - "exceptions_contact":"@jamstec.go.jp <- miroc-cmip6", - "history":"2019-08-30: initially published under CC BY-SA 4.0; 2022-06-14: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"Prescribed MACv2-SP", - "native_nominal_resolution":"10 km" - }, - "atmos":{ - "description":"NICAM.16 (14km icosahedral grid; 2,621,442 grid cells (=10*4^9+2); 38 levels; top level 40 km)", - "native_nominal_resolution":"25 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"MATSIRO6 (w/o MOSAIC)", - "native_nominal_resolution":"10 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"Fixed", - "native_nominal_resolution":"10 km" - } - }, - "release_year":"2017", - "source_id":"NICAM16-9S" - }, - "NorCPM1":{ - "activity_participation":[ - "CMIP", - "DCPP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NCC" - ], - "label":"NorCPM1", - "label_extended":"Norwegian Climate Prediction Model version 1", - "license_info":{ - "exceptions_contact":"@uib.no <- norcpm", - "history":"2019-09-14: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"OsloAero4.1 (same grid as atmos)", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"CAM-OSLO4.1 (2 degree resolution; 144 x 96 longitude/latitude; 26 levels; top level ~2 hPa)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"OsloChemSimp4.1 (same grid as atmos)", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"CLM4 (same grid as atmos)", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"MICOM1.1 (1 degree resolution; 320 x 384 longitude/latitude; 53 levels; top grid cell 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"HAMOCC5.1 (same grid as ocean)", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"CICE4 (same grid as ocean)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"NorCPM1" - }, - "NorESM1-F":{ - "activity_participation":[ - "CMIP", - "PMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NCC" - ], - "label":"NorESM1-F", - "label_extended":"NorESM1-F (a fast version of NorESM that is designed for paleo and multi-ensemble simulations)", - "license_info":{ - "exceptions_contact":"@met.no <- noresm-ncc", - "history":"2019-09-20: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"CAM4 (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"CLM4", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"CISM", - "native_nominal_resolution":"250 km" - }, - "ocean":{ - "description":"MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"HAMOCC5.1", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"CICE4", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2018", - "source_id":"NorESM1-F" - }, - "NorESM2-LM":{ - "activity_participation":[ - "AerChemMIP", - "C4MIP", - "CDRMIP", - "CFMIP", - "CMIP", - "DAMIP", - "DCPP", - "LUMIP", - "OMIP", - "PAMIP", - "PMIP", - "RFMIP", - "ScenarioMIP", - "VolMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NCC" - ], - "label":"NorESM2-LM", - "label_extended":"NorESM2-LM (low atmosphere-medium ocean resolution, GHG concentration driven)", - "license_info":{ - "exceptions_contact":"@met.no <- noresm-ncc", - "history":"2019-08-15: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"OsloAero", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"CAM-OSLO (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"OsloChemSimp", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"CLM", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"CISM", - "native_nominal_resolution":"250 km" - }, - "ocean":{ - "description":"MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"HAMOCC", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"CICE", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2017", - "source_id":"NorESM2-LM" - }, - "NorESM2-MM":{ - "activity_participation":[ - "AerChemMIP", - "CFMIP", - "CMIP", - "DAMIP", - "OMIP", - "RFMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NCC" - ], - "label":"NorESM2-MM", - "label_extended":"NorESM2-MM (medium atmosphere-medium ocean resolution, GHG concentration driven)", - "license_info":{ - "exceptions_contact":"@met.no <- noresm-ncc", - "history":"2019-11-08: initially published under CC BY-SA 4.0; 2022-06-03: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"OsloAero", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"CAM-OSLO (1 degree resolution; 288 x 192; 32 levels; top level 3 mb)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"OsloChemSimp", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"CLM", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"CISM", - "native_nominal_resolution":"100 km" - }, - "ocean":{ - "description":"MICOM (1 degree resolution; 360 x 384; 70 levels; top grid cell minimum 0-2.5 m [native model uses hybrid density and generic upper-layer coordinate interpolated to z-level for contributed data])", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"HAMOCC", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"CICE", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2017", - "source_id":"NorESM2-MM" - }, - "PCMDI-test-1-0":{ - "activity_participation":[ - "CMIP" - ], - "cohort":[ - "Registered" - ], - "institution_id":[ - "PCMDI" - ], - "label":"PCMDI-test 1.0", - "label_extended":"PCMDI-test 1.0 (This entry is free text for users to contribute verbose information)", - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"Earth1.0-gettingHotter (360 x 180 longitude/latitude; 50 levels; top level 0.1 mb)", - "native_nominal_resolution":"1x1 degree" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"Earth1.0", - "native_nominal_resolution":"1x1 degree" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"BlueMarble1.0-warming (360 x 180 longitude/latitude; 50 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"1x1 degree" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"Declining1.0-warming (360 x 180 longitude/latitude)", - "native_nominal_resolution":"1x1 degree" - } - }, - "release_year":"1989", - "source_id":"PCMDI-test-1-0" - }, - "RRTMG-LW-4-91":{ - "activity_participation":[ - "RFMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "AER" - ], - "label":"RRTMG-LW 4.91", - "label_extended":"RRTM for GCMs v4.91, longwave", - "license_info":{ - "exceptions_contact":"@aer.com <- aer_rrtmg", - "history":"2020-01-10: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" - } - }, - "release_year":"2017", - "source_id":"RRTMG-LW-4-91" - }, - "RRTMG-SW-4-02":{ - "activity_participation":[ - "RFMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "AER" - ], - "label":"RRTMG-SW 4.02", - "label_extended":"RRTM for GCMs v4.02, shortwave", - "license_info":{ - "exceptions_contact":"@aer.com <- aer_rrtmg", - "history":"2020-01-10: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" - } - }, - "release_year":"2017", - "source_id":"RRTMG-SW-4-02" - }, - "RTE-RRTMGP-181204":{ - "activity_participation":[ - "RFMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "RTE-RRTMGP-Consortium" - ], - "label":"RTE+RRTMGP (2018-12-04 full-resolution)", - "label_extended":"Radiative Transfer for Energetics using RRTM for GCM applications - Parallel (2018-12-04 full-resolution)", - "license_info":{ - "exceptions_contact":"@aer.com <- aer_rrtmgp", - "history":"2019-10-07: initially published under CC BY-NC-SA 4.0; 2022-10-07: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmos":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"none", - "native_nominal_resolution":"none" - } - }, - "release_year":"2019", - "source_id":"RTE-RRTMGP-181204" - }, - "SAM0-UNICON":{ - "activity_participation":[ - "CMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "SNU" - ], - "label":"SAM0-UNICON", - "label_extended":"SAM0-UNICON (SNU Atmosphere Model version 0 with Unified Convection Scheme)", - "license_info":{ - "exceptions_contact":"@snu.ac.kr <- sungsup", - "history":"2019-03-23: initially published under CC BY-SA 4.0; 2022-10-12: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"MAM3", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"CAM5.3 with UNICON (1deg; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"CLM4.0", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"POP2 (Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE4.0", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2017", - "source_id":"SAM0-UNICON" - }, - "TaiESM1":{ - "activity_participation":[ - "AerChemMIP", - "CFMIP", - "CMIP", - "GMMIP", - "LUMIP", - "PAMIP", - "PMIP", - "RFMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "AS-RCEC" - ], - "label":"TaiESM 1.0", - "label_extended":"Taiwan Earth System Model 1.0", - "license_info":{ - "exceptions_contact":"@gate.sinica.edu.tw <- leelupin", - "history":"2019-12-25: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"SNAP (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"SNAP (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"CLM4.0 (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE4", - "native_nominal_resolution":"50 km" - } - }, - "release_year":"2018", - "source_id":"TaiESM1" - }, - "TaiESM1-TIMCOM":{ - "activity_participation":[ - "CMIP", - "OMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NTU" - ], - "label":"TaiESM1-TIMCOM", - "label_extended":"Taiwan Earth System Model 1.0 using TIMCOM ocean model", - "license_info":{ - "exceptions_contact":"@ntu.edu.tw <- tsengyh", - "history":"2020-09-29: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"SNAP (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"SNAP (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"CLM4.0 (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"TIMCOM (TIMCOMv1.7, primarily 1deg; 360 x 288 longitude/latitude; 45 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE4", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2020", - "source_id":"TaiESM1-TIMCOM" - }, - "TaiESM1-TIMCOM2":{ - "activity_participation":[ - "CMIP", - "OMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "NTU" - ], - "label":"TaiESM1-TIMCOM2", - "label_extended":"Taiwan Earth System Model 1.0 using TIMCOM ocean model 2.0", - "license_info":{ - "exceptions_contact":"@ntu.edu.tw <- tsengyh", - "history":"2021-12-13: initially published under CC BY-SA 4.0; 2022-06-10: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"SNAP (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "atmos":{ - "description":"TaiAM1 (0.9x1.25 degree; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", - "native_nominal_resolution":"100 km" - }, - "atmosChem":{ - "description":"SNAP (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "land":{ - "description":"CLM4.0 (same grid as atmos)", - "native_nominal_resolution":"100 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"TIMCOM (TIMCOMv2.2, primarily 1deg; 320 x 288 longitude/latitude; 55 levels; top grid cell 0-10 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE4 (same grid as ocean)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2021", - "source_id":"TaiESM1-TIMCOM2" - }, - "UKESM1-0-LL":{ - "activity_participation":[ - "AerChemMIP", - "C4MIP", - "CDRMIP", - "CMIP", - "DAMIP", - "GeoMIP", - "LS3MIP", - "LUMIP", - "OMIP", - "PMIP", - "RFMIP", - "ScenarioMIP", - "VolMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MOHC", - "NERC", - "NIMS-KMA", - "NIWA" - ], - "label":"UKESM1.0-LL", - "label_extended":"UKESM1.0-N96ORCA1", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.ukesm1", - "history":"2019-04-04: initially published under CC BY-SA 4.0; 2021-11-15: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"UKCA-StratTrop", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"JULES-ES-1.0", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"MEDUSA2", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2018", - "source_id":"UKESM1-0-LL" - }, - "UKESM1-1-LL":{ - "activity_participation":[ - "CMIP", - "ScenarioMIP" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MOHC", - "NERC", - "NIMS-KMA", - "NIWA" - ], - "label":"UKESM1.1-LL", - "label_extended":"UKESM1.1-N96ORCA1", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.ukesm1", - "history":"2022-05-04: initially published under CC BY-SA 4.0; 2022-05-04: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"UKCA-StratTrop", - "native_nominal_resolution":"250 km" - }, - "land":{ - "description":"JULES-ES-1.0", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"MEDUSA2", - "native_nominal_resolution":"100 km" - }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2021", - "source_id":"UKESM1-1-LL" - }, - "UKESM1-ice-LL":{ - "activity_participation":[ - "ISMIP6" - ], - "cohort":[ - "Published" - ], - "institution_id":[ - "MOHC", - "NERC" - ], - "label":"UKESM1.ice-LL", - "label_extended":"UKESM1.ice-N96ORCA1", - "license_info":{ - "exceptions_contact":"@metoffice.gov.uk <- cmip6.ukesm1", - "history":"2022-02-11: initially published under CC BY-SA 4.0; 2022-02-11: relaxed to CC BY 4.0", - "id":"CC BY 4.0", - "license":"Creative Commons Attribution 4.0 International License (CC BY 4.0; https://creativecommons.org/licenses/by/4.0/)", - "source_specific_info":"https://ukesm.ac.uk/licensing-of-met-office-nerc-and-niwa-cmip6-data/", - "url":"https://creativecommons.org/licenses/by/4.0/" - }, - "model_component":{ - "aerosol":{ - "description":"UKCA-GLOMAP-mode", - "native_nominal_resolution":"250 km" - }, - "atmos":{ - "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", - "native_nominal_resolution":"250 km" - }, - "atmosChem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "land":{ - "description":"JULES-ISMIP6-1.0", - "native_nominal_resolution":"250 km" - }, - "landIce":{ - "description":"BISICLES-UKESM-ISMIP6-1.0", - "native_nominal_resolution":"5 km" - }, - "ocean":{ - "description":"NEMO-HadGEM3-GO6.0 (eORCA1 tripolar primarily 1 deg with meridional refinement down to 1/3 degree in the tropics; 360 x 330 longitude/latitude; 75 levels; top grid cell 0-1 m)", - "native_nominal_resolution":"100 km" - }, - "ocnBgchem":{ - "description":"none", - "native_nominal_resolution":"none" - }, - "seaIce":{ - "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", - "native_nominal_resolution":"100 km" - } - }, - "release_year":"2019", - "source_id":"UKESM1-ice-LL" - } - }, - "version_metadata":{ - "CV_collection_modified":"Fri Apr 18 16:28:35 2025 -0700", - "CV_collection_version":"6.2.58.79", - "author":"Paul J. Durack ", - "institution_id":"PCMDI", - "previous_commit":"1e8961cb140d3246c70cdc24d2cc8404570de5dc", - "source_id_CV_modified":"Fri Apr 11 10:41:49 2025 -0700", - "source_id_CV_note":"Revised IPSL-CM6A-ATM-LR-REPROBUS source_id entry", - "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" - } -} diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_type.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_type.json deleted file mode 100644 index a39f57a3..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_source_type.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "source_type":{ - "AER":"aerosol treatment in an atmospheric model where concentrations are calculated based on emissions, transformation, and removal processes (rather than being prescribed or omitted entirely)", - "AGCM":"atmospheric general circulation model run with prescribed ocean surface conditions and usually a model of the land surface", - "AOGCM":"coupled atmosphere-ocean global climate model, additionally including explicit representation of at least the land and sea ice", - "BGC":"biogeochemistry model component that at the very least accounts for carbon reservoirs and fluxes in the atmosphere, terrestrial biosphere, and ocean", - "CHEM":"chemistry treatment in an atmospheric model that calculates atmospheric oxidant concentrations (including at least ozone), rather than prescribing them", - "ISM":"ice-sheet model that includes ice-flow", - "LAND":"land model run uncoupled from the atmosphere", - "OGCM":"ocean general circulation model run uncoupled from an AGCM but, usually including a sea-ice model", - "RAD":"radiation component of an atmospheric model run 'offline'", - "SLAB":"slab-ocean used with an AGCM in representing the atmosphere-ocean coupled system" - }, - "version_metadata":{ - "CV_collection_modified":"Fri Apr 18 16:28:35 2025 -0700", - "CV_collection_version":"6.2.58.79", - "author":"Paul J. Durack ", - "institution_id":"PCMDI", - "previous_commit":"1e8961cb140d3246c70cdc24d2cc8404570de5dc", - "source_type_CV_modified":"Fri Sep 8 17:57:00 2017 -0700", - "source_type_CV_note":"Issue396 durack1 augment source_type with description (#399)", - "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" - } -} diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_sub_experiment_id.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_sub_experiment_id.json deleted file mode 100644 index e7ccf6c2..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_sub_experiment_id.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "sub_experiment_id":{ - "none":"none", - "s1910":"initialized near end of year 1910", - "s1920":"initialized near end of year 1920", - "s1950":"initialized near end of year 1950", - "s1960":"initialized near end of year 1960", - "s1961":"initialized near end of year 1961", - "s1962":"initialized near end of year 1962", - "s1963":"initialized near end of year 1963", - "s1964":"initialized near end of year 1964", - "s1965":"initialized near end of year 1965", - "s1966":"initialized near end of year 1966", - "s1967":"initialized near end of year 1967", - "s1968":"initialized near end of year 1968", - "s1969":"initialized near end of year 1969", - "s1970":"initialized near end of year 1970", - "s1971":"initialized near end of year 1971", - "s1972":"initialized near end of year 1972", - "s1973":"initialized near end of year 1973", - "s1974":"initialized near end of year 1974", - "s1975":"initialized near end of year 1975", - "s1976":"initialized near end of year 1976", - "s1977":"initialized near end of year 1977", - "s1978":"initialized near end of year 1978", - "s1979":"initialized near end of year 1979", - "s1980":"initialized near end of year 1980", - "s1981":"initialized near end of year 1981", - "s1982":"initialized near end of year 1982", - "s1983":"initialized near end of year 1983", - "s1984":"initialized near end of year 1984", - "s1985":"initialized near end of year 1985", - "s1986":"initialized near end of year 1986", - "s1987":"initialized near end of year 1987", - "s1988":"initialized near end of year 1988", - "s1989":"initialized near end of year 1989", - "s1990":"initialized near end of year 1990", - "s1991":"initialized near end of year 1991", - "s1992":"initialized near end of year 1992", - "s1993":"initialized near end of year 1993", - "s1994":"initialized near end of year 1994", - "s1995":"initialized near end of year 1995", - "s1996":"initialized near end of year 1996", - "s1997":"initialized near end of year 1997", - "s1998":"initialized near end of year 1998", - "s1999":"initialized near end of year 1999", - "s2000":"initialized near end of year 2000", - "s2001":"initialized near end of year 2001", - "s2002":"initialized near end of year 2002", - "s2003":"initialized near end of year 2003", - "s2004":"initialized near end of year 2004", - "s2005":"initialized near end of year 2005", - "s2006":"initialized near end of year 2006", - "s2007":"initialized near end of year 2007", - "s2008":"initialized near end of year 2008", - "s2009":"initialized near end of year 2009", - "s2010":"initialized near end of year 2010", - "s2011":"initialized near end of year 2011", - "s2012":"initialized near end of year 2012", - "s2013":"initialized near end of year 2013", - "s2014":"initialized near end of year 2014", - "s2015":"initialized near end of year 2015", - "s2016":"initialized near end of year 2016", - "s2017":"initialized near end of year 2017", - "s2018":"initialized near end of year 2018", - "s2019":"initialized near end of year 2019", - "s2020":"initialized near end of year 2020", - "s2021":"initialized near end of year 2021", - "s2022":"initialized near end of year 2022", - "s2023":"initialized near end of year 2023", - "s2024":"initialized near end of year 2024", - "s2025":"initialized near end of year 2025", - "s2026":"initialized near end of year 2026", - "s2027":"initialized near end of year 2027", - "s2028":"initialized near end of year 2028", - "s2029":"initialized near end of year 2029" - }, - "version_metadata":{ - "CV_collection_modified":"Fri Apr 18 16:28:35 2025 -0700", - "CV_collection_version":"6.2.58.79", - "author":"Paul J. Durack ", - "institution_id":"PCMDI", - "previous_commit":"1e8961cb140d3246c70cdc24d2cc8404570de5dc", - "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)", - "sub_experiment_id_CV_modified":"Mon Jun 17 11:01:51 2019 -0700", - "sub_experiment_id_CV_note":"Revise sub_experiment_id values" - } -} diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_table_id.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_table_id.json deleted file mode 100644 index 1011ff26..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/CMIP6_table_id.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "table_id":[ - "3hr", - "6hrLev", - "6hrPlev", - "6hrPlevPt", - "AERday", - "AERhr", - "AERmon", - "AERmonZ", - "Amon", - "CF3hr", - "CFday", - "CFmon", - "CFsubhr", - "E1hr", - "E1hrClimMon", - "E3hr", - "E3hrPt", - "E6hrZ", - "Eday", - "EdayZ", - "Efx", - "Emon", - "EmonZ", - "Esubhr", - "Eyr", - "IfxAnt", - "IfxGre", - "ImonAnt", - "ImonGre", - "IyrAnt", - "IyrGre", - "LImon", - "Lmon", - "Oclim", - "Oday", - "Odec", - "Ofx", - "Omon", - "Oyr", - "SIday", - "SImon", - "day", - "fx" - ], - "version_metadata":{ - "CV_collection_modified":"Fri Apr 18 16:28:35 2025 -0700", - "CV_collection_version":"6.2.58.79", - "author":"Paul J. Durack ", - "institution_id":"PCMDI", - "previous_commit":"1e8961cb140d3246c70cdc24d2cc8404570de5dc", - "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)", - "table_id_CV_modified":"Fri Jan 13 09:27:00 2017 -0700", - "table_id_CV_note":"Issue199 durack1 update table_id to Data Request v1.0 (#200)" - } -} diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/LICENSE-CC-BY b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/LICENSE-CC-BY deleted file mode 100644 index 2f244ac8..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/LICENSE-CC-BY +++ /dev/null @@ -1,395 +0,0 @@ -Attribution 4.0 International - -======================================================================= - -Creative Commons Corporation ("Creative Commons") is not a law firm and -does not provide legal services or legal advice. Distribution of -Creative Commons public licenses does not create a lawyer-client or -other relationship. Creative Commons makes its licenses and related -information available on an "as-is" basis. Creative Commons gives no -warranties regarding its licenses, any material licensed under their -terms and conditions, or any related information. Creative Commons -disclaims all liability for damages resulting from their use to the -fullest extent possible. - -Using Creative Commons Public Licenses - -Creative Commons public licenses provide a standard set of terms and -conditions that creators and other rights holders may use to share -original works of authorship and other material subject to copyright -and certain other rights specified in the public license below. The -following considerations are for informational purposes only, are not -exhaustive, and do not form part of our licenses. - - Considerations for licensors: Our public licenses are - intended for use by those authorized to give the public - permission to use material in ways otherwise restricted by - copyright and certain other rights. Our licenses are - irrevocable. Licensors should read and understand the terms - and conditions of the license they choose before applying it. - Licensors should also secure all rights necessary before - applying our licenses so that the public can reuse the - material as expected. Licensors should clearly mark any - material not subject to the license. This includes other CC- - licensed material, or material used under an exception or - limitation to copyright. More considerations for licensors: - wiki.creativecommons.org/Considerations_for_licensors - - Considerations for the public: By using one of our public - licenses, a licensor grants the public permission to use the - licensed material under specified terms and conditions. If - the licensor's permission is not necessary for any reason--for - example, because of any applicable exception or limitation to - copyright--then that use is not regulated by the license. Our - licenses grant only permissions under copyright and certain - other rights that a licensor has authority to grant. Use of - the licensed material may still be restricted for other - reasons, including because others have copyright or other - rights in the material. A licensor may make special requests, - such as asking that all changes be marked or described. - Although not required by our licenses, you are encouraged to - respect those requests where reasonable. More_considerations - for the public: - wiki.creativecommons.org/Considerations_for_licensees - -======================================================================= - -Creative Commons Attribution 4.0 International Public License - -By exercising the Licensed Rights (defined below), You accept and agree -to be bound by the terms and conditions of this Creative Commons -Attribution 4.0 International Public License ("Public License"). To the -extent this Public License may be interpreted as a contract, You are -granted the Licensed Rights in consideration of Your acceptance of -these terms and conditions, and the Licensor grants You such rights in -consideration of benefits the Licensor receives from making the -Licensed Material available under these terms and conditions. - - -Section 1 -- Definitions. - - a. Adapted Material means material subject to Copyright and Similar - Rights that is derived from or based upon the Licensed Material - and in which the Licensed Material is translated, altered, - arranged, transformed, or otherwise modified in a manner requiring - permission under the Copyright and Similar Rights held by the - Licensor. For purposes of this Public License, where the Licensed - Material is a musical work, performance, or sound recording, - Adapted Material is always produced where the Licensed Material is - synched in timed relation with a moving image. - - b. Adapter's License means the license You apply to Your Copyright - and Similar Rights in Your contributions to Adapted Material in - accordance with the terms and conditions of this Public License. - - c. Copyright and Similar Rights means copyright and/or similar rights - closely related to copyright including, without limitation, - performance, broadcast, sound recording, and Sui Generis Database - Rights, without regard to how the rights are labeled or - categorized. For purposes of this Public License, the rights - specified in Section 2(b)(1)-(2) are not Copyright and Similar - Rights. - - d. Effective Technological Measures means those measures that, in the - absence of proper authority, may not be circumvented under laws - fulfilling obligations under Article 11 of the WIPO Copyright - Treaty adopted on December 20, 1996, and/or similar international - agreements. - - e. Exceptions and Limitations means fair use, fair dealing, and/or - any other exception or limitation to Copyright and Similar Rights - that applies to Your use of the Licensed Material. - - f. Licensed Material means the artistic or literary work, database, - or other material to which the Licensor applied this Public - License. - - g. Licensed Rights means the rights granted to You subject to the - terms and conditions of this Public License, which are limited to - all Copyright and Similar Rights that apply to Your use of the - Licensed Material and that the Licensor has authority to license. - - h. Licensor means the individual(s) or entity(ies) granting rights - under this Public License. - - i. Share means to provide material to the public by any means or - process that requires permission under the Licensed Rights, such - as reproduction, public display, public performance, distribution, - dissemination, communication, or importation, and to make material - available to the public including in ways that members of the - public may access the material from a place and at a time - individually chosen by them. - - j. Sui Generis Database Rights means rights other than copyright - resulting from Directive 96/9/EC of the European Parliament and of - the Council of 11 March 1996 on the legal protection of databases, - as amended and/or succeeded, as well as other essentially - equivalent rights anywhere in the world. - - k. You means the individual or entity exercising the Licensed Rights - under this Public License. Your has a corresponding meaning. - - -Section 2 -- Scope. - - a. License grant. - - 1. Subject to the terms and conditions of this Public License, - the Licensor hereby grants You a worldwide, royalty-free, - non-sublicensable, non-exclusive, irrevocable license to - exercise the Licensed Rights in the Licensed Material to: - - a. reproduce and Share the Licensed Material, in whole or - in part; and - - b. produce, reproduce, and Share Adapted Material. - - 2. Exceptions and Limitations. For the avoidance of doubt, where - Exceptions and Limitations apply to Your use, this Public - License does not apply, and You do not need to comply with - its terms and conditions. - - 3. Term. The term of this Public License is specified in Section - 6(a). - - 4. Media and formats; technical modifications allowed. The - Licensor authorizes You to exercise the Licensed Rights in - all media and formats whether now known or hereafter created, - and to make technical modifications necessary to do so. The - Licensor waives and/or agrees not to assert any right or - authority to forbid You from making technical modifications - necessary to exercise the Licensed Rights, including - technical modifications necessary to circumvent Effective - Technological Measures. For purposes of this Public License, - simply making modifications authorized by this Section 2(a) - (4) never produces Adapted Material. - - 5. Downstream recipients. - - a. Offer from the Licensor -- Licensed Material. Every - recipient of the Licensed Material automatically - receives an offer from the Licensor to exercise the - Licensed Rights under the terms and conditions of this - Public License. - - b. No downstream restrictions. You may not offer or impose - any additional or different terms or conditions on, or - apply any Effective Technological Measures to, the - Licensed Material if doing so restricts exercise of the - Licensed Rights by any recipient of the Licensed - Material. - - 6. No endorsement. Nothing in this Public License constitutes or - may be construed as permission to assert or imply that You - are, or that Your use of the Licensed Material is, connected - with, or sponsored, endorsed, or granted official status by, - the Licensor or others designated to receive attribution as - provided in Section 3(a)(1)(A)(i). - - b. Other rights. - - 1. Moral rights, such as the right of integrity, are not - licensed under this Public License, nor are publicity, - privacy, and/or other similar personality rights; however, to - the extent possible, the Licensor waives and/or agrees not to - assert any such rights held by the Licensor to the limited - extent necessary to allow You to exercise the Licensed - Rights, but not otherwise. - - 2. Patent and trademark rights are not licensed under this - Public License. - - 3. To the extent possible, the Licensor waives any right to - collect royalties from You for the exercise of the Licensed - Rights, whether directly or through a collecting society - under any voluntary or waivable statutory or compulsory - licensing scheme. In all other cases the Licensor expressly - reserves any right to collect such royalties. - - -Section 3 -- License Conditions. - -Your exercise of the Licensed Rights is expressly made subject to the -following conditions. - - a. Attribution. - - 1. If You Share the Licensed Material (including in modified - form), You must: - - a. retain the following if it is supplied by the Licensor - with the Licensed Material: - - i. identification of the creator(s) of the Licensed - Material and any others designated to receive - attribution, in any reasonable manner requested by - the Licensor (including by pseudonym if - designated); - - ii. a copyright notice; - - iii. a notice that refers to this Public License; - - iv. a notice that refers to the disclaimer of - warranties; - - v. a URI or hyperlink to the Licensed Material to the - extent reasonably practicable; - - b. indicate if You modified the Licensed Material and - retain an indication of any previous modifications; and - - c. indicate the Licensed Material is licensed under this - Public License, and include the text of, or the URI or - hyperlink to, this Public License. - - 2. You may satisfy the conditions in Section 3(a)(1) in any - reasonable manner based on the medium, means, and context in - which You Share the Licensed Material. For example, it may be - reasonable to satisfy the conditions by providing a URI or - hyperlink to a resource that includes the required - information. - - 3. If requested by the Licensor, You must remove any of the - information required by Section 3(a)(1)(A) to the extent - reasonably practicable. - - 4. If You Share Adapted Material You produce, the Adapter's - License You apply must not prevent recipients of the Adapted - Material from complying with this Public License. - - -Section 4 -- Sui Generis Database Rights. - -Where the Licensed Rights include Sui Generis Database Rights that -apply to Your use of the Licensed Material: - - a. for the avoidance of doubt, Section 2(a)(1) grants You the right - to extract, reuse, reproduce, and Share all or a substantial - portion of the contents of the database; - - b. if You include all or a substantial portion of the database - contents in a database in which You have Sui Generis Database - Rights, then the database in which You have Sui Generis Database - Rights (but not its individual contents) is Adapted Material; and - - c. You must comply with the conditions in Section 3(a) if You Share - all or a substantial portion of the contents of the database. - -For the avoidance of doubt, this Section 4 supplements and does not -replace Your obligations under this Public License where the Licensed -Rights include other Copyright and Similar Rights. - - -Section 5 -- Disclaimer of Warranties and Limitation of Liability. - - a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE - EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS - AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF - ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, - IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, - WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR - PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, - ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT - KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT - ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. - - b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE - TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, - NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, - INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, - COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR - USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN - ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR - DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR - IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. - - c. The disclaimer of warranties and limitation of liability provided - above shall be interpreted in a manner that, to the extent - possible, most closely approximates an absolute disclaimer and - waiver of all liability. - - -Section 6 -- Term and Termination. - - a. This Public License applies for the term of the Copyright and - Similar Rights licensed here. However, if You fail to comply with - this Public License, then Your rights under this Public License - terminate automatically. - - b. Where Your right to use the Licensed Material has terminated under - Section 6(a), it reinstates: - - 1. automatically as of the date the violation is cured, provided - it is cured within 30 days of Your discovery of the - violation; or - - 2. upon express reinstatement by the Licensor. - - For the avoidance of doubt, this Section 6(b) does not affect any - right the Licensor may have to seek remedies for Your violations - of this Public License. - - c. For the avoidance of doubt, the Licensor may also offer the - Licensed Material under separate terms or conditions or stop - distributing the Licensed Material at any time; however, doing so - will not terminate this Public License. - - d. Sections 1, 5, 6, 7, and 8 survive termination of this Public - License. - - -Section 7 -- Other Terms and Conditions. - - a. The Licensor shall not be bound by any additional or different - terms or conditions communicated by You unless expressly agreed. - - b. Any arrangements, understandings, or agreements regarding the - Licensed Material not stated herein are separate from and - independent of the terms and conditions of this Public License. - - -Section 8 -- Interpretation. - - a. For the avoidance of doubt, this Public License does not, and - shall not be interpreted to, reduce, limit, restrict, or impose - conditions on any use of the Licensed Material that could lawfully - be made without permission under this Public License. - - b. To the extent possible, if any provision of this Public License is - deemed unenforceable, it shall be automatically reformed to the - minimum extent necessary to make it enforceable. If the provision - cannot be reformed, it shall be severed from this Public License - without affecting the enforceability of the remaining terms and - conditions. - - c. No term or condition of this Public License will be waived and no - failure to comply consented to unless expressly agreed to by the - Licensor. - - d. Nothing in this Public License constitutes or may be interpreted - as a limitation upon, or waiver of, any privileges and immunities - that apply to the Licensor or You, including from the legal - processes of any jurisdiction or authority. - - -======================================================================= - -Creative Commons is not a party to its public -licenses. Notwithstanding, Creative Commons may elect to apply one of -its public licenses to material it publishes and in those instances -will be considered the “Licensor.” The text of the Creative Commons -public licenses is dedicated to the public domain under the CC0 Public -Domain Dedication. Except for the limited purpose of indicating that -material is shared under a Creative Commons public license or as -otherwise permitted by the Creative Commons policies published at -creativecommons.org/policies, Creative Commons does not authorize the -use of the trademark "Creative Commons" or any other trademark or logo -of Creative Commons without its prior written consent including, -without limitation, in connection with any unauthorized modifications -to any of its public licenses or any other arrangements, -understandings, or agreements concerning use of licensed material. For -the avoidance of doubt, this paragraph does not form part of the -public licenses. - -Creative Commons may be contacted at creativecommons.org. diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/README.md b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/README.md deleted file mode 100644 index 14932f15..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/README.md +++ /dev/null @@ -1,63 +0,0 @@ -# CMIP6_CVs [![stable version](https://img.shields.io/badge/Current%20version-6.2.58.79-brightgreen.svg)](https://github.com/WCRP-CMIP/CMIP6_CVs/releases/tag/6.2.58.79) [![DOI](https://zenodo.org/badge/62754800.svg)](https://zenodo.org/doi/10.5281/zenodo.12197150) - -Core Controlled Vocabularies (CVs) for use in CMIP6 - -## Registering Institutions, Models, or requesting changes to CVs: - -To register your institution or model or to register a new experiment, please submit an issue/ticket following the instructions on the [CMIP6_CVs issue page](https://github.com/WCRP-CMIP/CMIP6_CVs/issues/new). Follow the same procedure to request a change in any other CV. - -Some support for CMIP participating modeling groups is available: pcmdi-cmip@llnl.gov - -To view current repository contents in HTML format, point your browser to: - -| target | URL | -| :-- | :-- | -| `experiment_id` | [CMIP6_experiment_id.html](https://wcrp-cmip.github.io/CMIP6_CVs/docs/CMIP6_experiment_id.html) | -| `institution_id` | [CMIP6_institution_id.html](https://wcrp-cmip.github.io/CMIP6_CVs/docs/CMIP6_institution_id.html) | -| `source_id` | [CMIP6_source_id.html](https://wcrp-cmip.github.io/CMIP6_CVs/docs/CMIP6_source_id.html) | -| `source_id_licenses` | [CMIP6_source_id_licenses.html](https://wcrp-cmip.github.io/CMIP6_CVs/docs/CMIP6_source_id_licenses.html) | -| `citation information` | [CMIP6_source_id_citation.html](https://wcrp-cmip.github.io/CMIP6_CVs/docs/CMIP6_source_id_citation.html) | -| `citation information by experiment` | [CMIP6_source_id_experiment_citation.html](https://wcrp-cmip.github.io/CMIP6_CVs/docs/CMIP6_source_id_experiment_citation.html) | - -The CVs build on logic that is described in the [CMIP6 Global Attributes, DRS, Filenames, Directory Structure, and CV's](http://goo.gl/v1drZl) document. - -The controlled vocabularies for CMIP6 will be augmented (e.g., as new institutions, models and experiments are registered), but there should be no changes in the existing vocabulary that would impair searches of and access to already published data or that would in any way invalidate published data. - -## Contributors - -[![Contributors](https://contrib.rocks/image?repo=WCRP-CMIP/CMIP6_CVs)](https://github.com/WCRP-CMIP/CMIP6_CVs/graphs/contributors) - -Thanks to our contributors! - -## Acknowledgement - -The repository content has been collected from many contributors representing the Coupled Model Intercomparison Project phase 6 (CMIP6), including those from climate modeling groups and model intercomparison projects (MIPs) worldwide. The structure of content and tools required to maintain it was developed by climate and computer scientists from the Program for Climate Model Diagnosis and Intercomparison ([PCMDI](https://pcmdi.llnl.gov/)) at Lawrence Livermore National Laboratory ([LLNL](https://www.llnl.gov/)) with assistance from colleagues at the [UK MetOffice](https://www.metoffice.gov.uk/), UK Centre for Environmental Data Analysis ([CEDA](https://www.ceda.ac.uk/)), the Deutsches Klimarechenzentrum ([DKRZ](https://www.dkrz.de/en/)) in Germany and the members of the Infrastructure for the European Network for Earth System Modelling ([IS-ENES](https://is.enes.org/)) consortium. - -This work is sponsored by the Regional and Global Model Analysis ([RGMA](https://climatemodeling.science.energy.gov/program/regional-global-model-analysis)) program of the Earth and Environmental Systems Sciences Division ([EESSD](https://science.osti.gov/ber/Research/eessd)) in the Office of Biological and Environmental Research ([BER](https://science.osti.gov/ber)) within the Department of Energy's ([DOE](https://www.energy.gov/)) Office of Science ([OS](https://science.osti.gov/)). The work at PCMDI is performed under the auspices of the U.S. Department of Energy by Lawrence Livermore National Laboratory under Contract DE-AC52-07NA27344. - -

- Program for Climate Model Diagnosis and Intercomparison  - United States Department of Energy  - Lawrence Livermore National Laboratory  - UK Met Office -

diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/_config.yml b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/_config.yml deleted file mode 100644 index 277f1f2c..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/_config.yml +++ /dev/null @@ -1 +0,0 @@ -theme: jekyll-theme-cayman diff --git a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/mip_era.json b/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/mip_era.json deleted file mode 100644 index 097e5555..00000000 --- a/src/access_moppy/vocabularies/cmip6_cmor_tables/CMIP6_CVs/mip_era.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "mip_era":[ - "CMIP1", - "CMIP2", - "CMIP3", - "CMIP5", - "CMIP6" - ], - "version_metadata":{ - "CV_collection_modified":"Fri Apr 18 16:28:35 2025 -0700", - "CV_collection_version":"6.2.58.79", - "author":"Paul J. Durack ", - "institution_id":"PCMDI", - "mip_era_CV_modified":"Thu Aug 25 17:21:00 2016 -0700", - "mip_era_CV_note":"Fix #36 - Add CV name to json structure", - "previous_commit":"1e8961cb140d3246c70cdc24d2cc8404570de5dc", - "specs_doc":"v6.2.7 (10th September 2018; https://goo.gl/v1drZl)" - } -} diff --git a/src/access_moppy/vocabulary_processors.py b/src/access_moppy/vocabulary_processors.py index 81ff9ddb..890737b6 100644 --- a/src/access_moppy/vocabulary_processors.py +++ b/src/access_moppy/vocabulary_processors.py @@ -40,8 +40,11 @@ def __init__( class CMIP6Vocabulary: - cv_dir = "access_moppy.vocabularies.cmip6_cmor_tables.CMIP6_CVs" + cv_dir = "access_moppy.vocabularies.CMIP6_CVs" table_dir = "access_moppy.vocabularies.cmip6_cmor_tables.Tables" + cv_prefix = "CMIP6" + table_prefix = "CMIP6" + mip_era = "CMIP6" def __init__( self, @@ -148,7 +151,7 @@ def get_parent_experiment_attrs(self) -> Dict[str, Any]: def _load_table(self) -> Dict[str, Any]: # Resolve the file from the module path - entry = files(self.table_dir) / f"CMIP6_{self.table}.json" + entry = files(self.table_dir) / self._table_filename(self.table) if not entry.exists(): raise FileNotFoundError(f"Table file not found: {entry}") @@ -209,7 +212,7 @@ def _get_variable_suggestions(self) -> List[str]: continue # Skip current table try: - table_file = f"CMIP6_{table}.json" + table_file = self._table_filename(table) table_resource = files(self.table_dir) / table_file with as_file(table_resource) as table_path: @@ -278,7 +281,7 @@ def _get_variable_suggestions(self) -> List[str]: def _get_axes(self, mapping) -> Dict[str, Any]: # Resolve resource inside the module path - coord_entry = files(self.table_dir) / "CMIP6_coordinate.json" + coord_entry = files(self.table_dir) / self._table_filename("coordinate") with as_file(coord_entry) as path: with open(path, "r", encoding="utf-8") as f: @@ -318,7 +321,9 @@ def _get_axes(self, mapping) -> Dict[str, Any]: if i + 1 < len(parts) } - formula_entry = files(self.table_dir) / "CMIP6_formula_terms.json" + formula_entry = files(self.table_dir) / self._table_filename( + "formula_terms" + ) with as_file(formula_entry) as fpath: with open(fpath, "r", encoding="utf-8") as ff: formula_terms = json.load(ff)["formula_entry"] @@ -665,6 +670,12 @@ def _get_external_variables(self) -> Optional[str]: return " ".join(sorted(externals)) if externals else None + def _cv_filename(self, key: str) -> str: + return f"{self.cv_prefix}_{key}.json" + + def _table_filename(self, key: str) -> str: + return f"{self.table_prefix}_{key}.json" + def get_required_attribute_names(self) -> List[str]: """ Get the list of required global attribute names from CMIP6 controlled vocabulary. @@ -673,7 +684,7 @@ def get_required_attribute_names(self) -> List[str]: List[str]: List of required global attribute names """ # Load the CMIP6 required global attributes CV file - cv_file = files(self.cv_dir) / "CMIP6_required_global_attributes.json" + cv_file = files(self.cv_dir) / self._cv_filename("required_global_attributes") with as_file(cv_file) as path: with open(path, "r", encoding="utf-8") as f: @@ -681,6 +692,45 @@ def get_required_attribute_names(self) -> List[str]: return cv_data["required_global_attributes"] + def _load_drs_templates(self) -> Dict[str, str]: + """ + Load directory and filename templates from CMIP6_DRS.json. + + Returns: + Dict[str, str]: Mapping containing directory_path_template and + filename_template when available. + """ + drs_file = files(self.cv_dir) / self._cv_filename("DRS") + + with as_file(drs_file) as path: + with open(path, "r", encoding="utf-8") as f: + drs_data = json.load(f) + + return drs_data.get("DRS", {}) + + @staticmethod + def _render_template(template: str, values: Dict[str, Any]) -> str: + """ + Render a template containing and optional [segments]. + """ + + def replace_optional_segment(match: re.Match) -> str: + segment = match.group(1) + keys = re.findall(r"<([^>]+)>", segment) + if keys and all(values.get(key) not in (None, "") for key in keys): + rendered = segment + for key in keys: + rendered = rendered.replace(f"<{key}>", str(values.get(key, ""))) + return rendered + return "" + + rendered = re.sub(r"\[([^\]]+)\]", replace_optional_segment, template) + + for key, value in values.items(): + rendered = rendered.replace(f"<{key}>", "" if value is None else str(value)) + + return re.sub(r"<[^>]+>", "", rendered) + def generate_filename( self, attrs: Dict[str, Any], @@ -747,22 +797,14 @@ def generate_filename( # Time-independent variable - no time_range template_vars["time_range"] = None - # Build filename from template - # Template: "_____[_].nc" - filename_parts = [ - template_vars["variable_id"], - template_vars["table_id"], - template_vars["source_id"], - template_vars["experiment_id"].strip(), # Remove any extra spaces - template_vars["member_id"], - template_vars["grid_label"], - ] + drs_templates = self._load_drs_templates() + filename_template = drs_templates["filename_template"] - # Add time range if present - if template_vars["time_range"]: - filename_parts.append(template_vars["time_range"]) + rendered_filename = self._render_template(filename_template, template_vars) + if not rendered_filename.endswith(".nc"): + rendered_filename += ".nc" - return "_".join(filename_parts) + ".nc" + return rendered_filename def get_required_global_attributes(self) -> Dict[str, Any]: now = datetime.now(tz=timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ") @@ -781,12 +823,10 @@ def get_required_global_attributes(self) -> Dict[str, Any]: "grid": "native atmosphere N96 grid (145x192 latxlon)", "grid_label": self.grid_label, "initialization_index": variant["initialization_index"], - "institution": self.vocab["institution_id"][ - self.source["institution_id"][0] - ], + "institution": self._get_institution(), "institution_id": ",".join(self.source["institution_id"]), "license": self._get_license(), - "mip_era": "CMIP6", + "mip_era": self.mip_era, "nominal_resolution": self._get_nominal_resolution(), "physics_index": variant["physics_index"], "product": self.cmip_table["Header"].get("product"), @@ -820,6 +860,18 @@ def get_required_global_attributes(self) -> Dict[str, Any]: return attrs + def _get_institution(self) -> str: + institution_ids = self.source.get("institution_id", []) + if not institution_ids: + return "" + + institution_map = self.vocab.get("institution_id") + if isinstance(institution_map, dict): + first_id = institution_ids[0] + return institution_map.get(first_id, first_id) + + return ",".join(institution_ids) + def _get_nominal_resolution(self) -> Optional[str]: realm = self.variable.get("modeling_realm") try: @@ -861,7 +913,7 @@ def _format_source_string(self) -> str: ) def _get_further_info_url(self) -> str: - mip_era = "CMIP6" + mip_era = self.mip_era institution_id = self.source["institution_id"][0] source_id = self.source_id experiment_id = self.experiment_id @@ -880,7 +932,7 @@ def _get_license(self) -> str: license_info = self.source.get("license_info", {}) institution = self.source["institution_id"][0] - entry = files(self.cv_dir) / "CMIP6_license.json" + entry = files(self.cv_dir) / self._cv_filename("license") if not entry.exists(): raise FileNotFoundError(f"License CV file not found: {entry}") @@ -924,26 +976,58 @@ def build_drs_path(self, drs_root: Path, version_date: str) -> Path: Complete DRS path following CMIP6 template: ///////// """ - # Build DRS components according to CMIP6 template - drs_components = [ - "CMIP6", # mip_era - self._resolve_activity_id(), # activity_id - ",".join(self.source["institution_id"]), # institution_id - self.source_id, # source_id - self.experiment_id, # experiment_id - self.variant_label, # member_id (variant_label in CMIP6) - self.table, # table_id - self.cmor_name, # variable_id - self.grid_label, # grid_label - f"v{version_date}", # version - ] + template_vars = { + "mip_era": self.mip_era, + "activity_id": self._resolve_activity_id(), + "institution_id": ",".join(self.source["institution_id"]), + "source_id": self.source_id, + "experiment_id": self.experiment_id, + "member_id": self.variant_label, + "table_id": self.table, + "variable_id": self.cmor_name, + "grid_label": self.grid_label, + "version": f"v{version_date}", + } - return drs_root.joinpath(*drs_components) + drs_templates = self._load_drs_templates() + directory_template = drs_templates["directory_path_template"] + + ordered_keys = re.findall(r"<([^>]+)>", directory_template) + rendered_components = [str(template_vars[key]).strip() for key in ordered_keys] + + return drs_root.joinpath(*rendered_components) def __repr__(self) -> str: return f"" +class CMIP6PlusVocabulary(CMIP6Vocabulary): + cv_dir = "access_moppy.vocabularies.CMIP6Plus_CVs" + cv_prefix = "CMIP6Plus" + table_prefix = "CMIP6" + mip_era = "CMIP6Plus" + + def _get_license(self) -> str: + license_info = self.source.get("license_info", {}) + institution = self.source["institution_id"][0] + license_id = license_info.get("id", "CC BY 4.0") + license_url = license_info.get( + "url", "https://creativecommons.org/licenses/by/4.0/" + ) + + return ( + f"CMIP6Plus model data produced by {institution} is licensed under a " + f"Creative Commons {license_id} License ({license_url}). " + "Consult https://pcmdi.llnl.gov/CMIP6Plus/TermsOfUse for terms of use " + "governing CMIP6Plus output, including citation requirements and proper " + "acknowledgment. The data producers and data providers make no warranty, " + "either express or implied, including, but not limited to, warranties of " + "merchantability and fitness for a particular purpose. All liabilities " + "arising from the supply of the information (including any liability " + "arising in negligence) are excluded to the fullest extent permitted by law." + ) + + class CMIP7Vocabulary: cv_dir = "access_moppy.vocabularies.CMIP7_CVs" table_dir = "access_moppy.vocabularies.cmip7-cmor-tables.tables" diff --git a/tests/unit/test_cmip6plus_vocabulary.py b/tests/unit/test_cmip6plus_vocabulary.py new file mode 100644 index 00000000..2c248f22 --- /dev/null +++ b/tests/unit/test_cmip6plus_vocabulary.py @@ -0,0 +1,145 @@ +from pathlib import Path +from unittest.mock import patch + +import pytest +import xarray as xr + +from access_moppy.vocabulary_processors import CMIP6PlusVocabulary + + +class TestCMIP6PlusVocabulary: + @pytest.fixture + def mock_vocab_data(self): + return { + "experiment_id": { + "historical": { + "experiment": "historical", + "activity_id": ["CMIP"], + "required_model_components": ["AOGCM"], + } + }, + "activity_id": {"CMIP": "CMIP DECK"}, + "source_id": { + "ACCESS-CM2": { + "label": "ACCESS-CM2", + "institution_id": ["CSIRO-ARCCSS"], + "license_info": { + "id": "CC BY 4.0", + "url": "https://creativecommons.org/licenses/by/4.0/", + }, + "release_year": "2019", + "model_component": { + "atmos": { + "description": "mock atmosphere", + "native_nominal_resolution": "250 km", + } + }, + } + }, + } + + @pytest.fixture + def mock_table_data(self): + return { + "Header": { + "Conventions": "CF-1.7 CMIP-6.2", + "data_specs_version": "01.00.33", + "product": "model-output", + }, + "variable_entry": { + "tas": { + "frequency": "mon", + "modeling_realm": "atmos", + "units": "K", + "type": "real", + "dimensions": "longitude latitude time", + } + }, + } + + @pytest.fixture + def vocabulary_instance(self, mock_vocab_data, mock_table_data): + parent_info = { + "parent_experiment_id": "historical", + "parent_activity_id": "CMIP", + "parent_mip_era": "CMIP6Plus", + "parent_source_id": "ACCESS-CM2", + "parent_variant_label": "r1i1p1f1", + "parent_time_units": "days since 0001-01-01 00:00:00", + "branch_time_in_child": 0.0, + "branch_time_in_parent": 0.0, + "branch_method": "standard", + } + with ( + patch.object( + CMIP6PlusVocabulary, + "_load_controlled_vocab", + return_value=mock_vocab_data, + ), + patch.object( + CMIP6PlusVocabulary, "_load_table", return_value=mock_table_data + ), + ): + return CMIP6PlusVocabulary( + compound_name="Amon.tas", + experiment_id="historical", + source_id="ACCESS-CM2", + variant_label="r1i1p1f1", + grid_label="gn", + activity_id="CMIP", + parent_info=parent_info, + ) + + @pytest.mark.unit + def test_required_global_attributes_use_cmip6plus_values(self, vocabulary_instance): + attrs = vocabulary_instance.get_required_global_attributes() + + assert attrs["mip_era"] == "CMIP6Plus" + assert attrs["activity_id"] == "CMIP" + assert attrs["institution"] == "CSIRO-ARCCSS" + assert attrs["institution_id"] == "CSIRO-ARCCSS" + assert attrs["license"].startswith("CMIP6Plus model data produced by") + + @pytest.mark.unit + def test_generate_filename_uses_template(self, vocabulary_instance): + ds = xr.Dataset({"tas": xr.DataArray([[280.0]], dims=["x", "y"])}) + attrs = { + "variable_id": "tas", + "table_id": "Amon", + "source_id": "ACCESS-CM2", + "experiment_id": "historical", + "variant_label": "r1i1p1f1", + "grid_label": "gn", + } + + with patch.object( + CMIP6PlusVocabulary, + "_load_drs_templates", + return_value={ + "filename_template": "_____" + }, + ): + filename = vocabulary_instance.generate_filename( + attrs=attrs, + ds=ds, + cmor_name="tas", + compound_name="Amon.tas", + ) + + assert filename == "tas_Amon_ACCESS-CM2_historical_r1i1p1f1_gn.nc" + + @pytest.mark.unit + def test_build_drs_path_uses_cmip6plus_mip_era(self, vocabulary_instance): + with patch.object( + CMIP6PlusVocabulary, + "_load_drs_templates", + return_value={ + "directory_path_template": "" + }, + ): + drs_path = vocabulary_instance.build_drs_path(Path("/tmp/out"), "20260318") + + expected = Path( + "/tmp/out/CMIP6Plus/CMIP/CSIRO-ARCCSS/ACCESS-CM2/historical/r1i1p1f1/Amon/tas/gn/v20260318" + ) + assert drs_path == expected diff --git a/tests/unit/test_driver.py b/tests/unit/test_driver.py index 073e4606..4ce0dac0 100644 --- a/tests/unit/test_driver.py +++ b/tests/unit/test_driver.py @@ -286,3 +286,40 @@ def test_model_id_none_fallback(self, valid_config, temp_dir): # Verify load_model_mappings was called with None model_id mock_load.assert_called_once_with("Amon.tas", model_id=None) + + @pytest.mark.unit + def test_init_with_cmip6plus_version(self, valid_config, temp_dir): + """Test CMIP6Plus selects CMIP6PlusVocabulary class.""" + with ( + patch("access_moppy.driver.load_model_mappings") as mock_load, + patch("access_moppy.driver.CMIP6PlusVocabulary") as mock_vocab, + ): + mock_load.return_value = {"tas": {"units": "K"}} + + ACCESS_ESM_CMORiser( + input_paths=["test.nc"], + compound_name="Amon.tas", + output_path=temp_dir, + cmip_version="CMIP6Plus", + **valid_config, + ) + + mock_vocab.assert_called_once() + + @pytest.mark.unit + def test_invalid_cmip_version_error(self, valid_config, temp_dir): + """Test invalid cmip_version returns clear accepted values.""" + with patch("access_moppy.driver.load_model_mappings") as mock_load: + mock_load.return_value = {"tas": {"units": "K"}} + + with pytest.raises( + ValueError, + match="cmip_version must be 'CMIP6', 'CMIP6Plus', or 'CMIP7'", + ): + ACCESS_ESM_CMORiser( + input_paths=["test.nc"], + compound_name="Amon.tas", + output_path=temp_dir, + cmip_version="CMIP8", + **valid_config, + )