diff --git a/arccssive2/cli.py b/arccssive2/cli.py index 9db95b6..7dfeb17 100644 --- a/arccssive2/cli.py +++ b/arccssive2/cli.py @@ -15,7 +15,7 @@ # limitations under the License. from __future__ import print_function from .db import connect, Session -from .model import Path, Dataset, ExtendedMetadata, Checksum +from .model import Path, C5Dataset, C6Dataset, ExtendedMetadata, Checksum from .esgf import find_local_path, find_missing_id, find_checksum_id import click import logging @@ -26,15 +26,45 @@ import os @click.group() -def esgf(): - """ - Commands for searching ESGF - """ - pass +#@click.argument('project', nargs=1) +@click.option('--search', is_flag=True, default=False, help="returns only ESGF search results") +@click.option('--local', is_flag=True, default=False, help="returns only local files matching ESGF search") +@click.option('--missing', is_flag=True, default=False, help="returns only missing files matching ESGF search") +@click.option('--request', is_flag=True, default=False, + help="send NCI request to download missing files matching ESGF search") +@click.pass_context +#def esgf(ctx, project, search, local, missing, request): +def esgf(ctx, search, local, missing, request): + ctx.obj={} + #ctx.obj['project']=project.upper() + ctx.obj['search']=search + ctx.obj['local']=local + ctx.obj['missing']=missing + ctx.obj['request']=request + + #if project in ['cmip5','CMIP5']: + # ctx.forward(ctx,c5_local) + # ctx.invoke(ctx,c5_local() def warning(message): print("WARNING: %s"%message, file=sys.stderr) + +def cmip5_args(f): + constraints = [ + click.option('--ensemble', '--member', '-en', 'ensemble', multiple=True, help="Constraint"), + click.option('--experiment', '-e', multiple=True, help="Constraint"), + click.option('--experiment_family',multiple=True, help="Constraint"), + click.option('--institution', 'institute', multiple=True, help="Constraint"), + click.option('--table', '--mip', '-t', 'cmor_table', multiple=True, help="Constraint"), + click.option('--model', '-m', multiple=True, help="Constraint"), + click.option('--frequency', 'time_frequency', multiple=True, help="Constraint"), + click.option('--variable', '-v', multiple=True, help="Constraint") + ] + for c in reversed(constraints): + f = c(f) + return f + def common_args(f): constraints = [ click.argument('query', nargs=-1), @@ -46,27 +76,41 @@ def common_args(f): click.option('--all-versions', '-a', 'latest', flag_value='all', default=True, help="All versions"), click.option('--format', type=click.Choice(['file','dataset']), default='dataset', help="Return dataset/directory or individual files"), click.option('--cf_standard_name',multiple=True, help="Constraint"), - click.option('--ensemble', '-en', multiple=True, help="Constraint"), - click.option('--experiment', '-e', multiple=True, help="Constraint"), - click.option('--experiment_family',multiple=True, help="Constraint"), - click.option('--institute',multiple=True, help="Constraint"), - click.option('--cmor_table', '--mip', '-t', 'cmor_table', multiple=True, help="Constraint"), - click.option('--model', '-m', multiple=True, help="Constraint"), - click.option('--project',multiple=True, help="Constraint"), - click.option('--product',multiple=True, help="Constraint"), click.option('--realm',multiple=True, help="Constraint"), - click.option('--time_frequency',multiple=True, help="Constraint"), - click.option('--variable', '-v', multiple=True, help="Constraint"), - click.option('--variable_long_name',multiple=True, help="Constraint"), - click.option('--source_id', multiple=True, help="Constraint"), ] for c in reversed(constraints): f = c(f) return f +def cmip6_args(f): +# + constraints = [ + click.option('--variant_label', '-vl', multiple=True, help="Constraint"), + click.option('--member', '-mi', 'member_id', multiple=True, help="Constraint"), + click.option('--activity', '-mip', 'activity_id', multiple=True, help="Constraint"), + click.option('--experiment', '-e', 'experiment_id', multiple=True, help="Constraint"), + click.option('--sub_experiment_id', '-se', multiple=True, help="Constraint"), + click.option('--source_type',multiple=True, help="Constraint"), + click.option('--institution', 'institution_id', multiple=True, help="Constraint"), + click.option('--table', '-t', 'table_id', multiple=True, help="Constraint"), + click.option('--model', '--source_id','-m', 'source_id', multiple=True, help="Constraint"), + click.option('--frequency',multiple=True, help="Constraint"), + click.option('--variable', 'variable_id', '-v', multiple=True, help="Constraint"), + click.option('--grid', '--grid_label', '-g', 'grid_label', multiple=True, help="Constraint"), + click.option('--resolution', '--nominal_resolution','-nr' , 'nominal_resolution', multiple=True, help="Constraint") + ] + for c in reversed(constraints): + f = c(f) + return f + + + + @esgf.command() @common_args -def search(query, user, debug, distrib, replica, latest, format, +@cmip5_args +@click.pass_context +def cmip5(ctx, query, user, debug, distrib, replica, latest, format, cf_standard_name, ensemble, experiment, @@ -74,17 +118,20 @@ def search(query, user, debug, distrib, replica, latest, format, institute, cmor_table, model, - project, - product, realm, time_frequency, variable, - variable_long_name, - source_id, ): """ - Search ESGF, returning matching file ids + Search local database for files matching the given constraints + + Constraints can be specified multiple times, in which case they are ORed. + `%` can be used as a wildcard, e.g. `--model access%` will match ACCESS1-0 + and ACCESS1-3 + + The --latest flag will check ESGF for the latest version available """ + if debug: logging.basicConfig(level=logging.DEBUG) logging.getLogger('sqlalchemy.engine').setLevel(level=logging.INFO) @@ -92,7 +139,27 @@ def search(query, user, debug, distrib, replica, latest, format, connect(user=user) s = Session() - q = find_checksum_id(' '.join(query), + project='CMIP5' + + ensemble_terms = None + model_terms = None + + dataset_constraints = { + 'ensemble': ensemble, + 'experiment': experiment, + 'institute': institute, + 'model': model, + 'realm': realm, + 'time_frequency': time_frequency, + 'cmor_table': cmor_table, + } + + if ctx.obj['request']: + print('Sorry! This option is not yet implemented') + return + + if ctx.obj['search']: + q = find_checksum_id(' '.join(query), distrib=distrib, replica=replica, latest=latest, @@ -104,110 +171,89 @@ def search(query, user, debug, distrib, replica, latest, format, cmor_table=cmor_table, model=model, project=project, - product=product, realm=realm, time_frequency=time_frequency, - variable=variable, - variable_long_name=variable_long_name, - source_id=source_id, + variable=variable ) - - for result in s.query(q): - print(result.id) - -@esgf.command() -@common_args -def missing(query, user, debug, distrib, replica, latest, format, - cf_standard_name, - ensemble, - experiment, - experiment_family, - institute, - cmor_table, - model, - project, - product, - realm, - time_frequency, - variable, - variable_long_name, - source_id, - ): - """ - Search ESGF to find files not downloaded to NCI - """ - if debug: - logging.basicConfig(level=logging.DEBUG) - logging.getLogger('sqlalchemy.engine').setLevel(level=logging.INFO) - - connect(user=user) - s = Session() + for result in s.query(q): + print(result.id) + return - dataset_constraints = { - 'ensemble': ensemble, - 'experiment': experiment, - 'institute': institute, - 'model': model, - 'project': project, - 'realm': realm, - 'time_frequency': time_frequency, - 'cmor_table': cmor_table, - } terms = {} + filters = [] # Add filters for key, value in six.iteritems(dataset_constraints): if len(value) > 0: + filters.append(getattr(C5Dataset,key).ilike(any_([x for x in value]))) + # If this key was filtered get a list of the matching values, used # in the ESGF query - terms[key] = [x[0] for x in (s.query(getattr(Dataset,key)) + terms[key] = [x[0] for x in (s.query(getattr(C5Dataset,key)) .distinct() - .filter(getattr(Dataset,key).ilike(any_([x for x in value]))))] - if len(terms[key]) == 0: - warning("No matches found for %s: '%s'"%(key, value)) - raise Exception + .filter(getattr(C5Dataset,key).ilike(any_([x for x in value]))))] if len(variable) > 0: + filters.append(ExtendedMetadata.variable.ilike(any_([x for x in variable]))) + terms['variable'] = [x[0] for x in (s.query(ExtendedMetadata.variable) .distinct() .filter(ExtendedMetadata.variable.ilike(any_([x for x in variable]))))] - if len(terms['variable']) == 0: - warning("No matches found for %s: '%s'"%('variable', value)) - raise Exception - q = find_missing_id(s, ' '.join(query), + #if len(version) > 0: + # filters.append(ExtendedMetadata.version.ilike(any_(['%d'%x for x in version]))) + + ql = find_local_path(s, query=None, + distrib=True, + replica=replica, + latest=(None if latest == 'all' else latest), + cf_standard_name=cf_standard_name, + experiment_family=experiment_family, + format=format, + project=project, + **terms + ) + if not ctx.obj['missing']: + for result in ql: + print(result[0]) + if ctx.obj['local']: + return + + qm = find_missing_id(s, ' '.join(query), distrib=distrib, replica=replica, latest=(None if latest == 'all' else latest), cf_standard_name=cf_standard_name, experiment_family=experiment_family, - product=product, - variable_long_name=variable_long_name, - source_id=source_id, format=format, + project=project, **terms ) - - for result in q: - print(result[0]) + if qm.count() > 0: + print('Available on ESGF but not locally:') + for result in qm: + print(result[0]) @esgf.command() @common_args -def local(query, user, debug, distrib, replica, latest, format, +@cmip6_args +@click.pass_context +def cmip6(ctx,query, user, debug, distrib, replica, latest, format, cf_standard_name, - ensemble, - experiment, - experiment_family, - institute, - cmor_table, - model, - project, - product, - realm, - time_frequency, - variable, - variable_long_name, + variant_label, + member_id, + experiment_id, + sub_experiment_id, + source_type, + institution_id, + table_id, source_id, + realm, + frequency, + variable_id, + activity_id, + grid_label, + nominal_resolution ): """ Search local database for files matching the given constraints @@ -230,52 +276,97 @@ def local(query, user, debug, distrib, replica, latest, format, model_terms = None dataset_constraints = { - 'ensemble': ensemble, - 'experiment': experiment, - 'institute': institute, - 'model': model, - 'project': project, + 'member_id': member_id, + 'activity_id': activity_id, + 'experiment_id': experiment_id, + 'sub_experiment_id': sub_experiment_id, + 'institution_id': institution_id, + 'source_id': source_id, + 'source_type': source_type, 'realm': realm, - 'time_frequency': time_frequency, - 'cmor_table': cmor_table, + 'frequency': frequency, + 'table_id': table_id, + 'grid_label': grid_label, + 'nominal_resolution': nominal_resolution } + + if ctx.obj['request']: + print('Sorry! This option is not yet implemented') + return + + if ctx.obj['search']: + q = find_checksum_id(' '.join(query), + distrib=distrib, + replica=replica, + latest=latest, + cf_standard_name=cf_standard_name, + variant_label=variant_label, + member_id=member_id, + experiment_id=experiment_id, + source_type=source_type, + institution_id=institution_id, + table_id=table_id, + source_id=source_id, + project='CMIP6', + realm=realm, + frequency=frequency, + variable_id=variable_id, + activity_id=activity_id, + grid_label=grid_label, + nominal_resolution=nominal_resolution + ) + for result in s.query(q): + print(result.id) + return + terms = {} filters = [] # Add filters for key, value in six.iteritems(dataset_constraints): if len(value) > 0: - filters.append(getattr(Dataset,key).ilike(any_([x for x in value]))) + filters.append(getattr(C6Dataset,key).ilike(any_([x for x in value]))) # If this key was filtered get a list of the matching values, used # in the ESGF query - terms[key] = [x[0] for x in (s.query(getattr(Dataset,key)) + terms[key] = [x[0] for x in (s.query(getattr(C6Dataset,key)) .distinct() - .filter(getattr(Dataset,key).ilike(any_([x for x in value]))))] + .filter(getattr(C6Dataset,key).ilike(any_([x for x in value]))))] - if len(variable) > 0: - filters.append(ExtendedMetadata.variable.ilike(any_([x for x in variable]))) + if len(variable_id) > 0: + filters.append(ExtendedMetadata.variable.ilike(any_([x for x in variable_id]))) - terms['variable'] = [x[0] for x in (s.query(ExtendedMetadata.variable) + terms['variable_id'] = [x[0] for x in (s.query(ExtendedMetadata.variable) .distinct() - .filter(ExtendedMetadata.variable.ilike(any_([x for x in variable]))))] + .filter(ExtendedMetadata.variable.ilike(any_([x for x in variable_id]))))] - #if len(version) > 0: - # filters.append(ExtendedMetadata.version.ilike(any_(['%d'%x for x in version]))) - - - q = find_local_path(s, query=None, + ql = find_local_path(s, query=None, distrib=True, replica=replica, latest=(None if latest == 'all' else latest), cf_standard_name=cf_standard_name, - experiment_family=experiment_family, - product=product, - variable_long_name=variable_long_name, - source_id=source_id, format=format, + project='CMIP6', **terms ) + if not ctx.obj['missing']: + for result in ql: + print(result[0]) + if ctx.obj['local']: + return + + qm = find_missing_id(s, ' '.join(query), + distrib=distrib, + replica=replica, + latest=(None if latest == 'all' else latest), + cf_standard_name=cf_standard_name, + format=format, + project='CMIP6', + **terms + ) + + if qm.count() > 0: + print('Available on ESGF but not locally:') + for result in qm: + print(result[0]) - for result in q: - print(result[0]) diff --git a/arccssive2/esgf.py b/arccssive2/esgf.py index b680a94..bbcecf3 100644 --- a/arccssive2/esgf.py +++ b/arccssive2/esgf.py @@ -15,108 +15,96 @@ # limitations under the License. from __future__ import print_function import requests +import json from sqlalchemy.sql import column, label from sqlalchemy.orm import aliased from sqlalchemy import String, Float, Integer, or_, func from .pgvalues import values -from .model import Path, Checksum, metadata_dataset_link - -def esgf_query(query, fields, limit=1000, offset=0, distrib=True, replica=False, latest=None, - cf_standard_name=None, - ensemble=None, - experiment=None, - experiment_family=None, - institute=None, - cmor_table=None, - model=None, - project=None, - product=None, - realm=None, - time_frequency=None, - variable=None, - variable_long_name=None, - source_id=None, - ): +from .model import Path, Checksum, c5_metadata_dataset_link, c6_metadata_dataset_link + +def define_facets(project): + ''' Define available search facets based on project value: CMIP5 or CMIP6 ''' + with open('../db/facets.json', 'r') as f: + data = f.read() + fdict = json.loads(data) + if project == 'CMIP5': + facets = {v: None for v in fdict.values() if v != 'None'} + facets['project'] = 'CMIP5' + elif project == 'CMIP6': + #facets = list(fdict.keys()) + facets = {k: None for k in fdict.keys()} + facets['project'] = 'CMIP6' + return facets + +def esgf_query(query, fields, limit=1000, offset=0, distrib=True, replica=False, latest=None, **kwargs): """ Search the ESGF """ + #facets = define_facets(project) if latest == 'all': latest = None if query is not None and len(query) == 0: query = None + params = { + 'query': query, + 'fields': fields, + 'offset': offset, + 'limit': limit, + 'distrib': distrib, + 'replica': replica, + 'latest': latest, + 'type': 'File', + 'format': 'application/solr+json', + } + params.update(kwargs) r = requests.get('https://esgf-node.llnl.gov/esg-search/search', - params = { - 'query': query, - 'fields': fields, - 'offset': offset, - 'limit': limit, - 'distrib': distrib, - 'replica': replica, - 'latest': latest, - 'cf_standard_name':cf_standard_name, - 'ensemble':ensemble, - 'experiment':experiment, - 'experiment_family':experiment_family, - 'institute':institute, - 'cmor_table':cmor_table, - 'model':model, - 'project':project, - 'product':product, - 'realm':realm, - 'time_frequency':time_frequency, - 'variable':variable, - 'variable_long_name':variable_long_name, - 'source_id':source_id, - 'type': 'File', - 'format': 'application/solr+json', - }) + params = params ) r.raise_for_status() return r.json() def link_to_esgf(query, **kwargs): - r = requests.Request('GET','https://esgf-node.llnl.gov/search/esgf-llnl', - params = { + + constraints = {k: v for k,v in kwargs.items() if v != ()} + params = { 'query': query, 'fields': kwargs.get('fields',None), 'offset': kwargs.get('offset',None), 'limit': kwargs.get('limit',None), 'distrib': 'on' if kwargs.get('distrib',True) else None, 'replica': 'on' if kwargs.get('replica',False) else None, - 'latest': 'on' if kwargs.get('latest',None) else None, - 'cf_standard_name': kwargs.get('cf_standard_name',None), - 'ensemble': kwargs.get('ensemble',None), - 'experiment': kwargs.get('experiment',None), - 'experiment_family': kwargs.get('experiment_family',None), - 'institute': kwargs.get('institute',None), - 'cmor_table': kwargs.get('cmor_table',None), - 'model': kwargs.get('model',None), - 'project': kwargs.get('project',None), - 'product': kwargs.get('product',None), - 'realm': kwargs.get('realm',None), - 'time_frequency': kwargs.get('time_frequency',None), - 'variable': kwargs.get('variable',None), - 'variable_long_name': kwargs.get('variable_long_name',None), - 'source_id': kwargs.get('source_id',None), - }) + 'latest': 'on' if kwargs.get('latest',None) else None + } + params.update(constraints) + + endpoint = 'cmip5' + if params.get('project','').lower() == 'cmip6': + endpoint = 'cmip6' + + r = requests.Request('GET','https://esgf-node.llnl.gov/search/%s'%endpoint, + params=params, + ) + p = r.prepare() return r.prepare().url -def find_checksum_id(query, **kwargs): +def find_checksum_id(query, project, **kwargs): """ Returns a sqlalchemy selectable containing the ESGF id and checksum for each query match """ - response = esgf_query(query, 'checksum,id,dataset_id,title,version', **kwargs) + constraints = {k: v for k,v in kwargs.items() if v != ()} + constraints['project'] = project + response = esgf_query(query, 'checksum,id,dataset_id,title,version', **constraints) if response['response']['numFound'] == 0: - raise Exception('No matches found on ESGF, check at %s'%link_to_esgf(query, **kwargs)) + raise Exception('No matches found on ESGF, check at %s'%link_to_esgf(query, **constraints)) if response['response']['numFound'] > int(response['responseHeader']['params']['rows']): - raise Exception('Too many results (%d), try limiting your search %s'%(response['response']['numFound'], link_to_esgf(query, **kwargs))) + raise Exception('Too many results (%d), try limiting your search %s'%(response['response']['numFound'], link_to_esgf(query, **constraints))) table = values([ column('checksum', String), diff --git a/arccssive2/model.py b/arccssive2/model.py index a7b36dc..63afa6f 100644 --- a/arccssive2/model.py +++ b/arccssive2/model.py @@ -38,12 +38,19 @@ def expr(self, model): expr = super(pg_json_property, self).expr(model) return expr.astext.cast(self.cast_type) -metadata_dataset_link = Table('esgf_metadata_dataset_link', Base.metadata, +c5_metadata_dataset_link = Table('c5_metadata_dataset_link', Base.metadata, Column('file_id', ForeignKey('esgf_paths.file_id'), ForeignKey('metadata.md_hash'), ForeignKey('checksums.ch_hash')), - Column('dataset_id', ForeignKey('esgf_dataset.dataset_id'))) + Column('dataset_id', ForeignKey('cmip5_dataset.dataset_id'))) + +c6_metadata_dataset_link = Table('c6_metadata_dataset_link', Base.metadata, + Column('file_id', + ForeignKey('esgf_paths.file_id'), + ForeignKey('metadata.md_hash'), + ForeignKey('checksums.ch_hash')), + Column('dataset_id', ForeignKey('cmip6_dataset.dataset_id'))) class Path(Base): __tablename__ = 'esgf_paths' @@ -51,7 +58,8 @@ class Path(Base): id = Column('file_id', UUID, primary_key=True) path = Column('path', Text) - dataset = relationship('Dataset', secondary=metadata_dataset_link, viewonly=True) + c5dataset = relationship('C5Dataset', secondary=c5_metadata_dataset_link, viewonly=True) + c6dataset = relationship('C6Dataset', secondary=c6_metadata_dataset_link, viewonly=True) netcdf = relationship('Netcdf', viewonly=True) checksum = relationship('Checksum', viewonly=True) extended = relationship('ExtendedMetadata', viewonly=True) @@ -108,11 +116,11 @@ class ExtendedMetadata(Base): variable = Column(Text) period = Column(INT4RANGE) -class Dataset(Base): +class C5Dataset(Base): """ - An ESGF dataset + A CMIP5 dataset """ - __tablename__ = 'esgf_dataset' + __tablename__ = 'cmip5_dataset' dataset_id = Column(Text, primary_key=True) project = Column(Text) @@ -126,3 +134,31 @@ class Dataset(Base): p = Column(Integer) ensemble = Column(Text) cmor_table = Column(Text) + +class C6Dataset(Base): + """ + A CMIP6 ESGF dataset + """ + __tablename__ = 'cmip6_dataset' + + dataset_id = Column(Text, primary_key=True) + project = Column(Text) + activity_id = Column('activity_id', Text) + institution_id = Column('institution_id', Text) + source_id = Column('source_id', Text) + source_type = Column('source_type', Text) + experiment_id = Column('experiment_id', Text) + sub_experiment_id = Column('sub_experiment_id', Text) + frequency = Column('frequency', Text) + realm = Column(Text) + r = Column(Integer) + i = Column(Integer) + p = Column(Integer) + f = Column(Integer) + variant_label = Column('variant_label', Text) + member_id = Column('member_id', Text) + variable_id = Column( Text) + grid_label = Column('grid_label', Text) + nominal_resolution = Column('nominal_resolution', Text) + table_id = Column('table_id', Text) + diff --git a/db/CMIP6_activity_id.json b/db/CMIP6_activity_id.json new file mode 100644 index 0000000..9f3c2a4 --- /dev/null +++ b/db/CMIP6_activity_id.json @@ -0,0 +1,38 @@ +{ + "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":"Tue Aug 7 07:31:46 2018 -0700", + "CV_collection_version":"6.2.12.0", + "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":"b27ce275adcf31632cbafb9b9f92af4235b3fff2", + "specs_doc":"v6.2.6 (20th December 2017; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/db/CMIP6_experiment_id.json b/db/CMIP6_experiment_id.json new file mode 100644 index 0000000..fc3ed80 --- /dev/null +++ b/db/CMIP6_experiment_id.json @@ -0,0 +1,8423 @@ +{ + "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":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "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":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "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":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2015", + "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":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2015", + "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":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp585" + ], + "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":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"2015", + "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":[ + "CMIP" + ], + "parent_experiment_id":[ + "abrupt-4xCO2" + ], + "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":[ + "CMIP" + ], + "parent_experiment_id":[ + "abrupt-4xCO2" + ], + "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":[ + "CMIP" + ], + "parent_experiment_id":[ + "abrupt-4xCO2" + ], + "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" + ], + "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" + ], + "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" + ], + "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" + ], + "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":"Prescribed land conditions 1980-2014 climate; AMIP SSTs", + "end_year":"2014", + "experiment":"prescribed land (from current climatology) and AMIP SSTs", + "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":"Prescribed land conditions 30yr running mean; AMIP SSTs", + "end_year":"2014", + "experiment":"prescribed land conditions (from running mean climatology) and AMIP SSTs", + "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 2016, 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-2016", + "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" + ], + "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 2016, 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-2016", + "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" + ], + "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-2016", + "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" + ], + "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 or 1950", + "sub_experiment_id":[ + "s1910", + "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":"either 1910 or 1950", + "sub_experiment_id":[ + "s1910", + "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-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":"", + "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-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":"86", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "esm-hist" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"2015", + "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":"201", + "parent_activity_id":[ + "LUMIP" + ], + "parent_experiment_id":[ + "esm-ssp585-ssp126Lu" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"2100", + "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":"201", + "parent_activity_id":[ + "C4MIP" + ], + "parent_experiment_id":[ + "esm-ssp585" + ], + "required_model_components":[ + "AOGCM", + "BGC" + ], + "start_year":"2100", + "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-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-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 integrationswith 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-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-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-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":[ + "" + ], + "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":[ + "" + ], + "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-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":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "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 with1950 halocarbon concentrations", + "experiment_id":"histSST-1950HC", + "min_number_yrs_per_sim":"65", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "AGCM", + "AER", + "CHEM" + ], + "start_year":"1950", + "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":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "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":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "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":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "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":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "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":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "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" + ], + "parent_experiment_id":[ + "piControl" + ], + "required_model_components":[ + "AOGCM" + ], + "start_year":"1850", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "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. All Priority=1 OMIP diagnostics are requested for all five cycles of the 62-year forcing to quantify drift. All OMIP diagnostics (Priority=1,2,3) are requested for the 5th 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":[ + "BGC" + ], + "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" + ], + "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-2017. Initial ocean tracer fields are based on observations. All Priority=1 OMIP diagnostics are requested for all five cycles of the 59-year forcing to quantify drift. All OMIP diagnostics (Priority=1,2,3) are requested for the 5th 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":"295", + "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":[ + "BGC" + ], + "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 5th cycle ofthe JRA55-do 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 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":"295", + "parent_activity_id":[ + "no parent" + ], + "parent_experiment_id":[ + "no parent" + ], + "required_model_components":[ + "OGCM" + ], + "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.2: 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" + }, + "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 RFMIP-ERF-PI-Cntrl 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 RFMIP-ERF-PI-Cntrl 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 RFMIP-ERF-PI-Cntrl but with present-day anthropogenic forcing (greenhouse gases, 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":"effective radiative forcing in present-day", + "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 RFMIP-ERF-PI-Cntrl but with present-day 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 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 RFMIP-ERF-PI-Cntrl 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 and ozone 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 and ozone 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. Aerosol and ozone 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-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-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":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "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":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "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":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "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":[ + "CMIP" + ], + "parent_experiment_id":[ + "piControl" + ], + "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" + }, + "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-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. 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 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":"2055", + "experiment":"SSP3-7.0, with low NTCF emissions", + "experiment_id":"ssp370-lowNTCF", + "min_number_yrs_per_sim":"41", + "parent_activity_id":[ + "CMIP" + ], + "parent_experiment_id":[ + "historical" + ], + "required_model_components":[ + "AOGCM", + "AER" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "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":"2055", + "experiment":"SSP3-7.0, with SSTs prescribed from ssp370", + "experiment_id":"ssp370SST", + "min_number_yrs_per_sim":"41", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "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":"2055", + "experiment":"SSP3-7.0, prescribed SSTs, with low aerosol emissions", + "experiment_id":"ssp370SST-lowAer", + "min_number_yrs_per_sim":"41", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "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":"2055", + "experiment":"SSP3-7.0, prescribed SSTs, with low black carbon emissions", + "experiment_id":"ssp370SST-lowBC", + "min_number_yrs_per_sim":"41", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "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":"2055", + "experiment":"SSP3-7.0, prescribed SSTs, with low methane concentrations", + "experiment_id":"ssp370SST-lowCH4", + "min_number_yrs_per_sim":"41", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "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":"2055", + "experiment":"SSP3-7.0, prescribed SSTs, with low NTCF emissions", + "experiment_id":"ssp370SST-lowNTCF", + "min_number_yrs_per_sim":"41", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "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":"2055", + "experiment":"SSP3-7.0, prescribed SSTs, with low ozone precursor emissions", + "experiment_id":"ssp370SST-lowO3", + "min_number_yrs_per_sim":"41", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "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":"2055", + "experiment":"SSP3-7.0, prescribed SSTs, with SSP1-2.6 land use", + "experiment_id":"ssp370SST-ssp126Lu", + "min_number_yrs_per_sim":"41", + "parent_activity_id":[ + "ScenarioMIP" + ], + "parent_experiment_id":[ + "ssp370" + ], + "required_model_components":[ + "AGCM", + "AER" + ], + "start_year":"2015", + "sub_experiment_id":[ + "none" + ], + "tier":"1" + }, + "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 SS5_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":"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":{ + "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":"Tue Aug 7 07:31:46 2018 -0700", + "CV_collection_version":"6.2.12.0", + "author":"Paul J. Durack ", + "experiment_id_CV_modified":"Wed Jul 25 07:56:41 2018 -0700", + "experiment_id_CV_note":"Revise piClim experiment_ids allowed components", + "institution_id":"PCMDI", + "previous_commit":"b27ce275adcf31632cbafb9b9f92af4235b3fff2", + "specs_doc":"v6.2.6 (20th December 2017; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/db/CMIP6_frequency.json b/db/CMIP6_frequency.json new file mode 100644 index 0000000..b8bf3c2 --- /dev/null +++ b/db/CMIP6_frequency.json @@ -0,0 +1,30 @@ +{ + "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":"sampled every 3 hours", + "3hrPt":"sampled 3 hourly, at specified time point within the time period", + "6hr":"sampled every 6 hours", + "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":"Tue Aug 7 07:31:46 2018 -0700", + "CV_collection_version":"6.2.12.0", + "author":"Paul J. Durack ", + "frequency_CV_modified":"Fri Oct 27 14:03:00 2017 -0700", + "frequency_CV_note":"Issue414 durack1 revise frequency 1hrCM definition (#418)", + "institution_id":"PCMDI", + "previous_commit":"b27ce275adcf31632cbafb9b9f92af4235b3fff2", + "specs_doc":"v6.2.6 (20th December 2017; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/db/CMIP6_grid_label.json b/db/CMIP6_grid_label.json new file mode 100644 index 0000000..39ddfc3 --- /dev/null +++ b/db/CMIP6_grid_label.json @@ -0,0 +1,59 @@ +{ + "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":"Tue Aug 7 07:31:46 2018 -0700", + "CV_collection_version":"6.2.12.0", + "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":"b27ce275adcf31632cbafb9b9f92af4235b3fff2", + "specs_doc":"v6.2.6 (20th December 2017; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/db/CMIP6_institution_id.json b/db/CMIP6_institution_id.json new file mode 100644 index 0000000..7c55c72 --- /dev/null +++ b/db/CMIP6_institution_id.json @@ -0,0 +1,58 @@ +{ + "institution_id":{ + "AER":"Research and Climate Group, Atmospheric and Environmental Research, 131 Hartwell Avenue, Lexington, MA 02421, USA", + "AWI":"Alfred Wegener Institute, Helmholtz Centre for Polar and Marine Research, Am Handelshafen 12, 27570 Bremerhaven, Germany", + "BCC":"Beijing Climate Center, Beijing 100081, China", + "BNU":"Beijing Normal University, Beijing 100875, 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, 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)", + "CSIR-CSIRO":"CSIR (Council for Scientific and Industrial Research - Natural Resources and the Environment, Pretoria, 0001, South Africa), CSIRO (Commonwealth Scientific and Industrial Research Organisation and Bureau of Meteorology, Melbourne, Victoria 3208, Australia)", + "CSIRO":"Commonwealth Scientific and Industrial Research Organisation, Aspendale, Victoria 3195, Australia", + "CSIRO-ARCCSS-BoM":"Commonwealth Scientific and Industrial Research Organisation, Australian Research Council Centre of Excellence for Climate System Science, and Bureau of Meteorology, 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, State Oceanic Administration, 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", + "INPE":"National Institute for Space Research, Cachoeira Paulista, SP 12630-000, Brazil", + "IPSL":"Institut Pierre Simon Laplace, Paris 75252, France", + "KIOST":"Korea Institute of Ocean Science & Technology, Busan 49111, Republic of Korea", + "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", + "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", + "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", + "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", + "UHH":"Universitat Hamburg, Hamburg 20148, Germany", + "UTAS":"Institute for Marine and Antarctic Studies, University of Tasmania, Hobart, Tasmania 7001, Australia", + "UofT":"Department of Physics, University of Toronto, 60 St George Street, Toronto, ON M5S1A7, Canada" + }, + "version_metadata":{ + "CV_collection_modified":"Tue Aug 7 07:31:46 2018 -0700", + "CV_collection_version":"6.2.12.0", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "institution_id_CV_modified":"Tue Jul 17 17:48:43 2018 -0700", + "institution_id_CV_note":"Register institution_id FIO-QLNM", + "previous_commit":"b27ce275adcf31632cbafb9b9f92af4235b3fff2", + "specs_doc":"v6.2.6 (20th December 2017; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/db/CMIP6_nominal_resolution.json b/db/CMIP6_nominal_resolution.json new file mode 100644 index 0000000..f708c3d --- /dev/null +++ b/db/CMIP6_nominal_resolution.json @@ -0,0 +1,29 @@ +{ + "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":"Tue Aug 7 07:31:46 2018 -0700", + "CV_collection_version":"6.2.12.0", + "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":"b27ce275adcf31632cbafb9b9f92af4235b3fff2", + "specs_doc":"v6.2.6 (20th December 2017; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/db/CMIP6_realm.json b/db/CMIP6_realm.json new file mode 100644 index 0000000..224117b --- /dev/null +++ b/db/CMIP6_realm.json @@ -0,0 +1,22 @@ +{ + "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":"Tue Aug 7 07:31:46 2018 -0700", + "CV_collection_version":"6.2.12.0", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "previous_commit":"b27ce275adcf31632cbafb9b9f92af4235b3fff2", + "realm_CV_modified":"Tues Apr 18 12:03:00 2017 -0700", + "realm_CV_note":"Issue285 durack1 update realm format (#290)", + "specs_doc":"v6.2.6 (20th December 2017; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/db/CMIP6_source_id.json b/db/CMIP6_source_id.json new file mode 100644 index 0000000..6ef023e --- /dev/null +++ b/db/CMIP6_source_id.json @@ -0,0 +1,5341 @@ +{ + "source_id":{ + "ACCESS-CM2":{ + "activity_participation":[ + "CMIP", + "FAFMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CSIRO-ARCCSS-BoM" + ], + "label":"ACCESS-CM2", + "label_extended":"Australian Community Climate and Earth System Simulator Climate Model Version 2", + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"CABLE2.3.5", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE5.1 (same grid as ocean)", + "nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"ACCESS-CM2" + }, + "ACCESS-ESM1-5":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CSIRO" + ], + "label":"ACCESS-ESM1.5", + "label_extended":"Australian Community Climate and Earth System Simulator Earth System Model Version 1.5", + "model_component":{ + "aerosol":{ + "description":"CLASSIC (v1.0)", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"HadGAM2 (r1.1, N96; 192 x 145 longitude/latitude; 38 levels; top level 39255 m)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"CABLE2.2.3", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"ACCESS-OM2 (MOM5, tripolar primarily 1deg; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"WOMBAT1.0 (same grid as ocean)", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE5.1 (same grid as ocean)", + "nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"ACCESS-ESM1-5" + }, + "ARTS-2-3":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "UHH" + ], + "label":"ARTS 2.3", + "label_extended":"ARTS 2.3 (Current development version of the Atmospheric Radiative Transfer Simulator)", + "model_component":{ + "aerosol":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmos":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"none", + "nominal_resolution":"none" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "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":[ + "Registered" + ], + "institution_id":[ + "AWI" + ], + "label":"AWI-CM 1.1 HR", + "label_extended":"AWI-CM 1.1 HR", + "model_component":{ + "aerosol":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"JSBACH 3.20", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"FESOM 1.4", + "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", + "PMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "AWI" + ], + "label":"AWI-CM 1.1 LR", + "label_extended":"AWI-CM 1.1 LR", + "model_component":{ + "aerosol":{ + "description":"none", + "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)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"JSBACH 3.20", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"FESOM 1.4", + "nominal_resolution":"50 km" + } + }, + "release_year":"2018", + "source_id":"AWI-CM-1-1-LR" + }, + "AWI-CM-1-1-MR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "OMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "AWI" + ], + "label":"AWI-CM 1.1 MR", + "label_extended":"AWI-CM 1.1 MR", + "model_component":{ + "aerosol":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"JSBACH 3.20", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"FESOM 1.4", + "nominal_resolution":"25 km" + } + }, + "release_year":"2018", + "source_id":"AWI-CM-1-1-MR" + }, + "BCC-CSM2-HR":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "BCC" + ], + "label":"BCC-CSM 2 HR", + "label_extended":"BCC-CSM 2 HR", + "model_component":{ + "aerosol":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmos":{ + "description":"BCC_AGCM3_LR (T266; 800 x 400 longitude/latitude; 56 levels; top level 0.1 hPa)", + "nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"BCC_AVIM2", + "nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"MOM4 (1/3 deg 30S-30N, 1/3-1 deg 30-60 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", + "nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"SIS2", + "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":[ + "Registered" + ], + "institution_id":[ + "BCC" + ], + "label":"BCC-CSM 2 MR", + "label_extended":"BCC-CSM 2 MR", + "model_component":{ + "aerosol":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmos":{ + "description":"BCC_AGCM3_MR (T106; 320 x 160 longitude/latitude; 46 levels; top level 1.46 hPa)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"BCC_AVIM2", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"MOM4 (1/3 deg 30S-30N, 1/3-1 deg 30-60 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", + "nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"SIS2", + "nominal_resolution":"50 km" + } + }, + "release_year":"2017", + "source_id":"BCC-CSM2-MR" + }, + "BCC-ESM1":{ + "activity_participation":[ + "AerChemMIP", + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "BCC" + ], + "label":"BCC-ESM 1", + "label_extended":"BCC-ESM 1", + "model_component":{ + "aerosol":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmos":{ + "description":"BCC_AGCM3_LR (T42; 128 x 64 longitude/latitude; 26 levels; top level 2.19 hPa)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"BCC-AGCM3-Chem", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"BCC_AVIM2", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"MOM4 (1/3 deg 30S-30N, 1/3-1 deg 30-60 N/S, and 1 deg in high latitudes; 360 x 232 longitude/latitude; 40 levels; top grid cell 0-10 m)", + "nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"SIS2", + "nominal_resolution":"50 km" + } + }, + "release_year":"2017", + "source_id":"BCC-ESM1" + }, + "BESM-2-7":{ + "activity_participation":[ + "CMIP", + "DCPP", + "HighResMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "INPE" + ], + "label":"BESM 2.7", + "label_extended":"BESM 2.7", + "model_component":{ + "aerosol":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmos":{ + "description":"BAM (v1.0, T062L28; 192 x 96 longitude/latitude; 28 levels; top level 3 hPa)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"SSiB 2.0", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"MOM-5 (MOM5, tripolar primarily 1 deg, 1/4 deg between 10S-10N; 360 x 300 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"TOPAZ 2.0", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"SIS 1.0", + "nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"BESM-2-7" + }, + "BNU-ESM-1-1":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "GMMIP", + "GeoMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "BNU" + ], + "label":"BNU-ESM 1.1", + "label_extended":"BNU-ESM 1.1", + "model_component":{ + "aerosol":{ + "description":"CAM-chem; semi-interactive", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"CAM4 (2deg; 144 x 96 longitude/latitude; 26 levels; top level 2.194 mb)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"CoLM version 2014 with carbon-nitrogen interactions", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"MOM4p1 (tripolar, primarily 1deg latitude/longitude, down to 1/3deg within 30deg of the equatorial tropics; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"Dynamic ecosystem-carbon model version 1", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE4.1", + "nominal_resolution":"100 km" + } + }, + "release_year":"2016", + "source_id":"BNU-ESM-1-1" + }, + "CAMS-CSM1-0":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CAMS" + ], + "label":"CAMS_CSM 1.0", + "label_extended":"CAMS_CSM 1.0", + "model_component":{ + "aerosol":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmos":{ + "description":"ECHAM5_CAMS (T106; 320 x 160 longitude/latitude; 31 levels; top level 10 mb)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"CoLM 1.0", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"SIS 1.0", + "nominal_resolution":"100 km" + } + }, + "release_year":"2016", + "source_id":"CAMS-CSM1-0" + }, + "CAS-ESM1-0":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "HighResMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "PMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CAS" + ], + "label":"CAS-ESM 1.0", + "label_extended":"CAS-ESM 1.0 (Chinese Academy of Sciences Earth System Model version 1.0)", + "model_component":{ + "aerosol":{ + "description":"IAP AACM", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"IAP AGCM4.1 (Finite difference dynamical core; 256 x 128 longitude/latitude; 30 levels; top level 2.2 hPa)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"IAP AACM", + "nominal_resolution":"100 km" + }, + "land":{ + "description":"CoLM", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"LICOM2.0 (LICOM2.0, primarily 1deg; 362 x 196 longitude/latitude; 30 levels; top grid cell 0-10 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"IAP OBGCM", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE4", + "nominal_resolution":"100 km" + } + }, + "release_year":"2015", + "source_id":"CAS-ESM1-0" + }, + "CESM2":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "GMMIP", + "GeoMIP", + "HighResMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PAMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCAR" + ], + "label":"CESM2", + "label_extended":"CESM2", + "model_component":{ + "aerosol":{ + "description":"MAM4 (same grid as atmos)", + "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)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"MAM4 (same grid as atmos)", + "nominal_resolution":"100 km" + }, + "land":{ + "description":"CLM5 (same grid as atmos)", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"CISM2.1", + "nominal_resolution":"5 km" + }, + "ocean":{ + "description":"POP2 (320x384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"MARBL (same grid as ocean)", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE5.1 (same grid as ocean)", + "nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"CESM2" + }, + "CIESM":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "CORDEX", + "GMMIP", + "HighResMIP", + "OMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "THU" + ], + "label":"CIESM", + "label_extended":"Community Integrated Earth System Model", + "model_component":{ + "aerosol":{ + "description":"MAM4", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CIESM-AM (FV/FD; 288 x 192 longitude/latitude; 30 levels; top level 2.255 hPa)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"trop_mam4", + "nominal_resolution":"100 km" + }, + "land":{ + "description":"CIESM-LM (modified CLM4.5)", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"CIESM-OM (FD, SCCGrid Displaced Pole; 720 x 560 longitude/latitude; 46 levels; top grid cell 0-6 m)", + "nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4", + "nominal_resolution":"50 km" + } + }, + "release_year":"2017", + "source_id":"CIESM" + }, + "CMCC-CM2-HR4":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "label":"CMCC-CM2-HR4", + "label_extended":"CMCC-CM2-HR4", + "model_component":{ + "aerosol":{ + "description":"prescribed MACv2-SP", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM4 (1deg; 288 x 192 longitude/latitude; 26 levels; top at ~2 hPa)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.5 (SP mode)", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.0", + "nominal_resolution":"25 km" + } + }, + "release_year":"2016", + "source_id":"CMCC-CM2-HR4" + }, + "CMCC-CM2-HR5":{ + "activity_participation":[ + "CMIP", + "OMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "label":"CMCC-CM2-HR5", + "label_extended":"CMCC-CM2-HR5", + "model_component":{ + "aerosol":{ + "description":"MAM3", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.5 (BGC mode)", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.0", + "nominal_resolution":"25 km" + } + }, + "release_year":"2017", + "source_id":"CMCC-CM2-HR5" + }, + "CMCC-CM2-SR5":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "label":"CMCC-CM2-SR5", + "label_extended":"CMCC-CM2-SR5", + "model_component":{ + "aerosol":{ + "description":"MAM3", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.5 (BGC mode)", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.0", + "nominal_resolution":"100 km" + } + }, + "release_year":"2016", + "source_id":"CMCC-CM2-SR5" + }, + "CMCC-CM2-VHR4":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "label":"CMCC-CM2-VHR4", + "label_extended":"CMCC-CM2-VHR4", + "model_component":{ + "aerosol":{ + "description":"prescribed MACv2-SP", + "nominal_resolution":"25 km" + }, + "atmos":{ + "description":"CAM4 (1/4deg; 1152 x 768 longitude/latitude; 26 levels; top at ~2 hPa)", + "nominal_resolution":"25 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.5 (SP mode)", + "nominal_resolution":"25 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.0", + "nominal_resolution":"25 km" + } + }, + "release_year":"2017", + "source_id":"CMCC-CM2-VHR4" + }, + "CMCC-ESM2-HR5":{ + "activity_participation":[ + "CMIP", + "OMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "label":"CMCC-ESM2-HR5", + "label_extended":"CMCC-ESM2-HR5", + "model_component":{ + "aerosol":{ + "description":"MAM3", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.5 (BGC mode)", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"BFM5.1", + "nominal_resolution":"25 km" + }, + "seaIce":{ + "description":"CICE4.0", + "nominal_resolution":"25 km" + } + }, + "release_year":"2017", + "source_id":"CMCC-ESM2-HR5" + }, + "CMCC-ESM2-SR5":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "LS3MIP", + "LUMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CMCC" + ], + "label":"CMCC-ESM2-SR5", + "label_extended":"CMCC-ESM2-SR5", + "model_component":{ + "aerosol":{ + "description":"MAM3", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM5.3 (1deg; 288 x 192 longitude/latitude; 30 levels; top at ~2 hPa)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.5 (BGC mode)", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"BFM5.1", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE4.0", + "nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"CMCC-ESM2-SR5" + }, + "CNRM-CM6-1":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "FAFMIP", + "GMMIP", + "HighResMIP", + "ISMIP6", + "LS3MIP", + "PMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "label":"CNRM-CM6-1", + "label_extended":"CNRM-CM6-1", + "model_component":{ + "aerosol":{ + "description":"prescribed monthly fields computed by TACTIC_v2 scheme", + "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)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"OZL_v2", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"Surfex 8.0c", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"GRISLI: Collaborating with l'Institut des Geosciences de l'Environnement in Grenoble on offline ice-sheet simulations", + "nominal_resolution":"10 km" + }, + "ocean":{ + "description":"Nemo 3.6 (eORCA1, tripolar primarily 1deg; 362 x 294 longitude/latitude; 75 levels; top grid cell 0-1 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"Gelato 6.1", + "nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"CNRM-CM6-1" + }, + "CNRM-CM6-1-HR":{ + "activity_participation":[ + "CMIP", + "DCPP", + "HighResMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "label":"CNRM-CM6-1-HR", + "label_extended":"CNRM-CM6-1-HR", + "model_component":{ + "aerosol":{ + "description":"prescribed monthly fields computed by TACTIC_v2 scheme", + "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)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"OZL_v2", + "nominal_resolution":"100 km" + }, + "land":{ + "description":"Surfex 8.0c", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"Gelato 6.1", + "nominal_resolution":"25 km" + } + }, + "release_year":"2017", + "source_id":"CNRM-CM6-1-HR" + }, + "CNRM-ESM2-1":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CMIP", + "GeoMIP", + "LUMIP", + "OMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "label":"CNRM-ESM2-1", + "label_extended":"CNRM-ESM2-1", + "model_component":{ + "aerosol":{ + "description":"TACTIC_v2", + "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)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"REPROBUS-C_v2", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"Surfex 8.0c", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"Pisces 2.s", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"Gelato 6.1", + "nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"CNRM-ESM2-1" + }, + "CNRM-ESM2-1-HR":{ + "activity_participation":[ + "CMIP", + "OMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CNRM-CERFACS" + ], + "label":"CNRM-ESM2-1-HR", + "label_extended":"CNRM-ESM2-1-HR", + "model_component":{ + "aerosol":{ + "description":"TACTIC_v2", + "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)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"REPROBUS-C_v2", + "nominal_resolution":"100 km" + }, + "land":{ + "description":"Surfex 8.0c", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"Pisces 2.s", + "nominal_resolution":"25 km" + }, + "seaIce":{ + "description":"Gelato 6.1", + "nominal_resolution":"25 km" + } + }, + "release_year":"2017", + "source_id":"CNRM-ESM2-1-HR" + }, + "CSIRO-Mk3L-1-3":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "UTAS" + ], + "label":"CSIRO Mk3L 1.3", + "label_extended":"CSIRO Mk3L 1.3", + "model_component":{ + "aerosol":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmos":{ + "description":"unnamed (R21; 64 x 56 longitude/latitude; 18 levels; top level 36355 m)", + "nominal_resolution":"500 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"unnamed", + "nominal_resolution":"500 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"MOM1.x (128 x 112 longitude/latitude; 31 levels; top grid cell 0-10 m; bottom grid cell 4600-5000 m)", + "nominal_resolution":"250 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"unnamed (same grid as atmosphere)", + "nominal_resolution":"500 km" + } + }, + "release_year":"2006", + "source_id":"CSIRO-Mk3L-1-3" + }, + "CanESM5":{ + "activity_participation":[ + "C4MIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CCCma" + ], + "label":"CanESM5", + "label_extended":"CanESM5", + "model_component":{ + "aerosol":{ + "description":"interactive", + "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)", + "nominal_resolution":"500 km" + }, + "atmosChem":{ + "description":"fast chemistry, aerosol only", + "nominal_resolution":"500 km" + }, + "land":{ + "description":"CLASS3.6/CTEM1.2", + "nominal_resolution":"500 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"NEMO3.4.1 (ORCA1, tripolar grid, 1 deg with refinement to 1/3 deg within 20 degrees of the equator; 362 x 292 longitude/latitude; 41 vertical levels; top grid cell 0-10 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"CanOE", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"LIM2", + "nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"CanESM5" + }, + "E3SM-1-0":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "E3SM-Project" + ], + "label":"E3SM 1.0", + "label_extended":"E3SM 1.0 (Energy Exascale Earth System Model)", + "model_component":{ + "aerosol":{ + "description":"MAM4 with resuspension, marine organics, and secondary organics (same grid as atmos)", + "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)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"Troposphere specified oxidants for aerosols. Stratosphere linearized interactive ozone (LINOZ v2) (same grid as atmos)", + "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)", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"MPAS-Seaice (v6.0, same grid as ocean)", + "nominal_resolution":"50 km" + } + }, + "release_year":"2018", + "source_id":"E3SM-1-0" + }, + "EC-Earth3":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "DCPP", + "DynVarMIP", + "LS3MIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3", + "label_extended":"EC Earth 3.3", + "model_component":{ + "aerosol":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"EC-Earth3" + }, + "EC-Earth3-AerChem":{ + "activity_participation":[ + "AerChemMIP", + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3-AerChem", + "label_extended":"EC-Earth3-AerChem", + "model_component":{ + "aerosol":{ + "description":"TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", + "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)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"EC-Earth3-AerChem" + }, + "EC-Earth3-CC":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "LUMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3-CC", + "label_extended":"EC-Earth3-CC", + "model_component":{ + "aerosol":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"TM5 (3 x 2 degrees; 120 x 90 longitude/latitude; 34 levels; top level: 0.1 hPa)", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"PISCES v2", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"LIM3", + "nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"EC-Earth3-CC" + }, + "EC-Earth3-GrIS":{ + "activity_participation":[ + "CMIP", + "ISMIP6", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3-GrIS", + "label_extended":"EC-Earth3-GrIS", + "model_component":{ + "aerosol":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"PISM 0.7 (5 km x 5 km, 442 levels)", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"EC-Earth3-GrIS" + }, + "EC-Earth3-HR":{ + "activity_participation":[ + "DCPP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3-HR", + "label_extended":"EC-Earth3-HR", + "model_component":{ + "aerosol":{ + "description":"none", + "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)", + "nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "nominal_resolution":"25 km" + } + }, + "release_year":"2017", + "source_id":"EC-Earth3-HR" + }, + "EC-Earth3-LR":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3-LR", + "label_extended":"EC-Earth3-LR", + "model_component":{ + "aerosol":{ + "description":"none", + "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)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"EC-Earth3-LR" + }, + "EC-Earth3-Veg":{ + "activity_participation":[ + "CMIP", + "LS3MIP", + "LUMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3-Veg", + "label_extended":"EC-Earth3-Veg", + "model_component":{ + "aerosol":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"EC-Earth3-Veg" + }, + "EC-Earth3-Veg-LR":{ + "activity_participation":[ + "CMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3-Veg-LR", + "label_extended":"EC-Earth3-Veg-LR", + "model_component":{ + "aerosol":{ + "description":"none", + "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)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS) and LPJ-GUESS v4", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"EC-Earth3-Veg-LR" + }, + "EC-Earth3P":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3P", + "label_extended":"EC-Earth 3.2 in PRIMAVERA", + "model_component":{ + "aerosol":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"EC-Earth3P" + }, + "EC-Earth3P-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3P-HR", + "label_extended":"EC-Earth3P-HR in PRIMAVERA", + "model_component":{ + "aerosol":{ + "description":"none", + "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)", + "nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "nominal_resolution":"25 km" + } + }, + "release_year":"2017", + "source_id":"EC-Earth3P-HR" + }, + "EC-Earth3P-VHR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "EC-Earth-Consortium" + ], + "label":"EC-Earth3P-VHR", + "label_extended":"EC-Earth3P-VHR in PRIMAVERA", + "model_component":{ + "aerosol":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (land surface scheme built in IFS)", + "nominal_resolution":"25 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"10 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM3", + "nominal_resolution":"10 km" + } + }, + "release_year":"2017", + "source_id":"EC-Earth3P-VHR" + }, + "ECMWF-IFS-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "ECMWF" + ], + "label":"ECMWF-IFS-HR", + "label_extended":"ECMWF-IFS-HR (25 km atmosphere and 25 km ocean)", + "model_component":{ + "aerosol":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (as implemented in IFS CY43R1)", + "nominal_resolution":"25 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)", + "nominal_resolution":"25 km" + } + }, + "release_year":"2017", + "source_id":"ECMWF-IFS-HR" + }, + "ECMWF-IFS-LR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "ECMWF" + ], + "label":"ECMWF-IFS-LR", + "label_extended":"ECMWF-IFS-LR (50 km atmosphere and 100 km ocean)", + "model_component":{ + "aerosol":{ + "description":"none", + "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)", + "nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (as implemented in IFS CY43R1)", + "nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM2 (LIM v2; ORCA1 tripolar grid; 362 x 292 longitude/latitude)", + "nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"ECMWF-IFS-LR" + }, + "ECMWF-IFS-MR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "ECMWF" + ], + "label":"ECMWF-IFS-MR", + "label_extended":"ECMWF-IFS-MR (50 km atmosphere and 25 km ocean)", + "model_component":{ + "aerosol":{ + "description":"none", + "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)", + "nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"HTESSEL (as implemented in IFS CY43R1)", + "nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"LIM2 (LIM v2; ORCA025 tripolar grid; 1442 x 1021 longitude/latitude)", + "nominal_resolution":"25 km" + } + }, + "release_year":"2017", + "source_id":"ECMWF-IFS-MR" + }, + "EMAC-2-53-AerChem":{ + "activity_participation":[ + "AerChemMIP", + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MESSy-Consortium" + ], + "label":"EMAC-2-53-AerChem", + "label_extended":"EMAC-2-53-x-AerChem", + "model_component":{ + "aerosol":{ + "description":"gmxe 2.2.x", + "nominal_resolution":"500 km" + }, + "atmos":{ + "description":"ECHAM5.3.02 (modified, spectral T42; 128 x 64 longitude/latitude; 47 levels; top level 0.01 hPa)", + "nominal_resolution":"500 km" + }, + "atmosChem":{ + "description":"MECCA 3.8.x", + "nominal_resolution":"500 km" + }, + "land":{ + "description":"same as Atmosphere", + "nominal_resolution":"500 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"MPIOM 1.3.0-beta (bipolar GR1.5, approximately 1.5deg; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)", + "nominal_resolution":"250 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model", + "nominal_resolution":"250 km" + } + }, + "release_year":"2017", + "source_id":"EMAC-2-53-AerChem" + }, + "EMAC-2-53-Vol":{ + "activity_participation":[ + "CMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MESSy-Consortium" + ], + "label":"EMAC-2-53-Vol", + "label_extended":"EMAC-2-53-x-Vol", + "model_component":{ + "aerosol":{ + "description":"gmxe 2.2.x", + "nominal_resolution":"500 km" + }, + "atmos":{ + "description":"ECHAM5.3.02 (modified; spectral T42; 128 x 64 longitude/latitude; 47 levels; top level 0.01 hPa)", + "nominal_resolution":"500 km" + }, + "atmosChem":{ + "description":"MECCA 3.8.x", + "nominal_resolution":"500 km" + }, + "land":{ + "description":"same as Atmosphere", + "nominal_resolution":"500 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"MPIOM 1.3.0-beta (bipolar GR1.5, approximately 1.5deg reducing toward the poles; 256 x 220 longitude/latitude; 40 levels; top grid cell 0-12 m)", + "nominal_resolution":"250 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model", + "nominal_resolution":"250 km" + } + }, + "release_year":"2017", + "source_id":"EMAC-2-53-Vol" + }, + "FGOALS-f3-H":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CAS" + ], + "label":"FGOALS-f3-H", + "label_extended":"FGOALS-f3-H", + "model_component":{ + "aerosol":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmos":{ + "description":"FAMIL2.2 (Cubed-sphere, c384; 1440 x 720 longitude/latitude; 32 levels; top level 2.16 hPa)", + "nominal_resolution":"25 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.0", + "nominal_resolution":"25 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"10 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.0", + "nominal_resolution":"10 km" + } + }, + "release_year":"2017", + "source_id":"FGOALS-f3-H" + }, + "FGOALS-f3-L":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "OMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CAS" + ], + "label":"FGOALS-f3-L", + "label_extended":"FGOALS-f3-L", + "model_component":{ + "aerosol":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmos":{ + "description":"FAMIL2.2 (Cubed-sphere, c96; 360 x 180 longitude/latitude; 32 levels; top level 2.16 hPa)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.0", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.0", + "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":[ + "Registered" + ], + "institution_id":[ + "CAS" + ], + "label":"FGOALS-g3", + "label_extended":"FGOALS-g3", + "model_component":{ + "aerosol":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmos":{ + "description":"GAMIL2 (180 x 90 longitude/latitude; 26 levels; top level 2.19hPa)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.0", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.0", + "nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"FGOALS-g3" + }, + "FIO-ESM-2-0":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "OMIP", + "ScenarioMIP", + "SIMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "FIO-QLNM" + ], + "label":"FIO-ESM 2.0", + "label_extended":"FIO-ESM 2.0", + "model_component":{ + "aerosol":{ + "description":"Prescribed monthly fields", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM4 (0.9x1.25 finite volume grid; 192 x 288 longitude/latitude; 26 levels; top level ~2 hPa)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.0 (same grid at atmos)", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.0 (same grid as ocean)", + "nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"FIO-ESM-2-0" + }, + "GFDL-AM4":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "label":"GFDL-AM4", + "label_extended":"GFDL-AM4", + "model_component":{ + "aerosol":{ + "description":"interactive", + "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)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"fast chemistry, aerosol only", + "nominal_resolution":"100 km" + }, + "land":{ + "description":"GFDL-LM4.0", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"GFDL-LM4.0", + "nominal_resolution":"100 km" + }, + "ocean":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "nominal_resolution":"none" + } + }, + "release_year":"2018", + "source_id":"GFDL-AM4" + }, + "GFDL-CM4":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "GMMIP", + "OMIP", + "RFMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "label":"GFDL-CM4", + "label_extended":"GFDL-CM4", + "model_component":{ + "aerosol":{ + "description":"interactive", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"GFDL-AM4.1 (Cubed-sphere (c96) - 1 degree nominal horizontal resolution; 360 x 180 longitude/latitude; 33 levels; top level 1 hPa)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"unnamed (fast chemistry, aerosol only)", + "nominal_resolution":"100 km" + }, + "land":{ + "description":"GFDL-LM4.0", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"GFDL-LM4.0", + "nominal_resolution":"100 km" + }, + "ocean":{ + "description":"GFDL-MOM6 (tripolar - nominal 0.25 deg; 1440 x 720 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"GFDL BLING v2", + "nominal_resolution":"25 km" + }, + "seaIce":{ + "description":"SIS2", + "nominal_resolution":"25 km" + } + }, + "release_year":"2018", + "source_id":"GFDL-CM4" + }, + "GFDL-CM4C192":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "label":"GFDL-CM4C192", + "label_extended":"GFDL-CM4C192", + "model_component":{ + "aerosol":{ + "description":"interactive", + "nominal_resolution":"50 km" + }, + "atmos":{ + "description":"GFDL-AM4.0.1 (Cubed-sphere (c192) - 0.5 degree nominal horizontal resolution; 720 x 360 longitude/latitude; 33 levels; top level 1 hPa)", + "nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"unnamed (fast chemistry, aerosol only)", + "nominal_resolution":"50 km" + }, + "land":{ + "description":"GFDL-LM4.0.1", + "nominal_resolution":"50 km" + }, + "landIce":{ + "description":"GFDL-LM4.0.1", + "nominal_resolution":"50 km" + }, + "ocean":{ + "description":"GFDL-MOM6 (tripolar - nominal 0.25 deg; 1440 x 720 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"SIS2", + "nominal_resolution":"25 km" + } + }, + "release_year":"2018", + "source_id":"GFDL-CM4C192" + }, + "GFDL-ESM2M":{ + "activity_participation":[ + "CMIP", + "FAFMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "label":"GFDL-ESM2M", + "label_extended":"GFDL-ESM2M", + "model_component":{ + "aerosol":{ + "description":"GFDL-AM2", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"GFDL-AM2 (Cubed-sphere (c48L24) - 2.5 degree lon x 2 degree lat; 144 x 90 longitude/latitude; 24 levels; top level ~3 hPa)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"GFDL-AM2 (full atmospheric chemistry)", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"GFDL-LM3.0", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"GFDL-LM3.0", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"SIS (Tripolar360x200L50)", + "nominal_resolution":"100 km" + } + }, + "release_year":"2012", + "source_id":"GFDL-ESM2M" + }, + "GFDL-ESM4":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CDRMIP", + "CMIP", + "DAMIP", + "DynVarMIP", + "LUMIP", + "OMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "label":"GFDL-ESM4", + "label_extended":"GFDL-ESM4", + "model_component":{ + "aerosol":{ + "description":"interactive", + "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)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"GFDL-ATMCHEM4.1 (full atmospheric chemistry)", + "nominal_resolution":"100 km" + }, + "land":{ + "description":"GFDL-LM4.1", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"GFDL-LM4.1", + "nominal_resolution":"100 km" + }, + "ocean":{ + "description":"GFDL-MOM6 (tripolar - nominal 0.5 deg; 720 x 360 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"COBALT 2.0", + "nominal_resolution":"50 km" + }, + "seaIce":{ + "description":"SIS2", + "nominal_resolution":"50 km" + } + }, + "release_year":"2018", + "source_id":"GFDL-ESM4" + }, + "GFDL-OM4p5B":{ + "activity_participation":[ + "CMIP", + "OMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NOAA-GFDL" + ], + "label":"GFDL-OM4p5B", + "label_extended":"GFDL-OM4p5B", + "model_component":{ + "aerosol":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmos":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"none", + "nominal_resolution":"none" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"GFDL-MOM6 (tripolar - nominal 0.5 deg; 720 x 576 longitude/latitude; 75 levels; top grid cell 0-2 m)", + "nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"GFDL BLING v2", + "nominal_resolution":"50 km" + }, + "seaIce":{ + "description":"SIS2", + "nominal_resolution":"50 km" + } + }, + "release_year":"2018", + "source_id":"GFDL-OM4p5B" + }, + "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":[ + "Registered" + ], + "institution_id":[ + "NASA-GISS" + ], + "label":"GISS-E2.1G", + "label_extended":"GISS-E2.1G", + "model_component":{ + "aerosol":{ + "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"GISS LSM", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"GISS Ocean (1 degree; 360 x 180 latitude/longitude; 32 levels; top grid cell 0-10 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"GISS SI", + "nominal_resolution":"250 km" + } + }, + "release_year":"2016", + "source_id":"GISS-E2-1-G" + }, + "GISS-E2-1-H":{ + "activity_participation":[ + "CMIP", + "OMIP", + "PAMIP", + "SIMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NASA-GISS" + ], + "label":"GISS-E2.1H", + "label_extended":"GISS-E2.1H", + "model_component":{ + "aerosol":{ + "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"GISS-E2.1 (2.5x2 degree; 144 x 90 longitude/latitude; 40 levels; top level 0.1 hPa)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"GISS LSM", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"HYCOM Ocean (~1 degree tripolar grid; 360 x 180 latitude/longitude; 26 levels; top grid cell 0-10 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"GISS SI", + "nominal_resolution":"250 km" + } + }, + "release_year":"2016", + "source_id":"GISS-E2-1-H" + }, + "GISS-E2-1-MA-G":{ + "activity_participation":[ + "CMIP", + "RFMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NASA-GISS" + ], + "label":"GISS-E2.1MA-G", + "label_extended":"GISS-E2.1MA-G", + "model_component":{ + "aerosol":{ + "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"GISS-E2.1MA (2.5x2 degree; 144 x 90 longitude/latitude; 102 levels; top level 0.002 hPa)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"GISS LSM", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"GISS Ocean (1 degree; 360 x 180 longitude/latitude; 32 levels; top grid cell 0-10 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"GISS SI", + "nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"GISS-E2-1-MA-G" + }, + "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":[ + "Registered" + ], + "institution_id":[ + "NASA-GISS" + ], + "label":"GISS-E3-G", + "label_extended":"GISS-E3-G", + "model_component":{ + "aerosol":{ + "description":"Varies with physics-version (p==1 none, p==3 OMA, p==4 TOMAS, p==5 MATRIX)", + "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)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"Varies with physics-version (p==1 Non-interactive, p>1 GPUCCINI)", + "nominal_resolution":"100 km" + }, + "land":{ + "description":"GISS LSM", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"GISS Ocean (1 degree; 360 x 180 longitude/latitude; 32 levels; top grid cell 0-10 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"GISS SI", + "nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"GISS-E3-G" + }, + "HadGEM3-GC31-HH":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC", + "NERC" + ], + "label":"HadGEM3-GC31-HH", + "label_extended":"HadGEM3-GC3.1-N512ORCA12", + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "nominal_resolution":"50 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)", + "nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"10 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)", + "nominal_resolution":"10 km" + } + }, + "release_year":"2016", + "source_id":"HadGEM3-GC31-HH" + }, + "HadGEM3-GC31-HM":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC", + "NERC" + ], + "label":"HadGEM3-GC31-HM", + "label_extended":"HadGEM3-GC3.1-N512ORCA025", + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "nominal_resolution":"50 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N512; 1024 x 768 longitude/latitude; 85 levels; top level 85 km)", + "nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", + "nominal_resolution":"25 km" + } + }, + "release_year":"2016", + "source_id":"HadGEM3-GC31-HM" + }, + "HadGEM3-GC31-LL":{ + "activity_participation":[ + "CFMIP", + "CMIP", + "DAMIP", + "FAFMIP", + "HighResMIP", + "PMIP", + "RFMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC" + ], + "label":"HadGEM3-GC31-LL", + "label_extended":"HadGEM3-GC3.1-N96ORCA1", + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", + "nominal_resolution":"100 km" + } + }, + "release_year":"2016", + "source_id":"HadGEM3-GC31-LL" + }, + "HadGEM3-GC31-LM":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC" + ], + "label":"HadGEM3-GC31-LM", + "label_extended":"HadGEM3-GC3.1-N96ORCA025", + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", + "nominal_resolution":"25 km" + } + }, + "release_year":"2016", + "source_id":"HadGEM3-GC31-LM" + }, + "HadGEM3-GC31-MH":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC" + ], + "label":"HadGEM3-GC31-MH", + "label_extended":"HadGEM3-GC3.1-N216ORCA12", + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"10 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA12 tripolar primarily 1/12 deg; 4320 x 3604 longitude/latitude)", + "nominal_resolution":"10 km" + } + }, + "release_year":"2016", + "source_id":"HadGEM3-GC31-MH" + }, + "HadGEM3-GC31-MM":{ + "activity_participation":[ + "CMIP", + "DCPP", + "GMMIP", + "HighResMIP", + "LS3MIP", + "OMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC" + ], + "label":"HadGEM3-GC31-MM", + "label_extended":"HadGEM3-GC3.1-N216ORCA025", + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", + "nominal_resolution":"25 km" + } + }, + "release_year":"2016", + "source_id":"HadGEM3-GC31-MM" + }, + "ICON-ESM-LR":{ + "activity_participation":[ + "CMIP", + "OMIP", + "SIMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MPI-M" + ], + "label":"ICON-ESM-LR", + "label_extended":"ICON-ESM-LR", + "model_component":{ + "aerosol":{ + "description":"none, prescribed MACv2-SP", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"ICON-A (icosahedral/triangles; 160 km; 47 levels; top level 80 km)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"JSBACH4.20", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none/prescribed", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"ICON-O (icosahedral/triangles; 40 km; 40 levels; top grid cell 0-12 m)", + "nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"HAMOCC", + "nominal_resolution":"50 km" + }, + "seaIce":{ + "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "nominal_resolution":"50 km" + } + }, + "release_year":"2017", + "source_id":"ICON-ESM-LR" + }, + "IITM-ESM":{ + "activity_participation":[ + "CMIP", + "GMMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CCCR-IITM" + ], + "label":"IITM-ESM", + "label_extended":"IITM-ESM", + "model_component":{ + "aerosol":{ + "description":"prescribed MAC-v2", + "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)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"NOAH LSMv2.7.1", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"MOM4p1 (tripolar, primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"TOPAZv2.0", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"SISv1.0", + "nominal_resolution":"100 km" + } + }, + "release_year":"2015", + "source_id":"IITM-ESM" + }, + "INM-CM4-8":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "INM" + ], + "label":"INM-CM4-8", + "label_extended":"INM-CM4-8", + "model_component":{ + "aerosol":{ + "description":"INM-AER1", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"INM-AM4-8 (2x1.5; 180 x 120 longitude/latitude; 21 levels; top level sigma = 0.01)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"INM-LND1", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"INM-OM5 (North Pole shifted to 60N, 90E; 360 x 318 longitude/latitude; 40 levels; sigma vertical coordinate)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"INM-ICE1", + "nominal_resolution":"100 km" + } + }, + "release_year":"2016", + "source_id":"INM-CM4-8" + }, + "INM-CM5-0":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "INM" + ], + "label":"INM-CM5-0", + "label_extended":"INM-CM5-0", + "model_component":{ + "aerosol":{ + "description":"INM-AER1", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"INM-AM5-0 (2x1.5; 180 x 120 longitude/latitude; 73 levels; top level sigma = 0.0002)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"INM-LND1", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"INM-ICE1", + "nominal_resolution":"50 km" + } + }, + "release_year":"2016", + "source_id":"INM-CM5-0" + }, + "INM-CM5-H":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "INM" + ], + "label":"INM-CM5-H", + "label_extended":"INM-CM5-H", + "model_component":{ + "aerosol":{ + "description":"INM-AER1", + "nominal_resolution":"50 km" + }, + "atmos":{ + "description":"INM-AM5-H (0.67x0.5; 540 x 360 longitude/latitude; 73 levels; top level sigma = 0.0002)", + "nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"INM-LND1", + "nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"10 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"INM-ICE1", + "nominal_resolution":"10 km" + } + }, + "release_year":"2016", + "source_id":"INM-CM5-H" + }, + "IPSL-CM6A-ATM-HR":{ + "activity_participation":[ + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "IPSL" + ], + "label":"IPSL-CM6A-ATM-HR", + "label_extended":"IPSL-CM6A-ATM-HR", + "model_component":{ + "aerosol":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmos":{ + "description":"LMDZ (NPv6, N256; 512 x 360 longitude/latitude; 79 levels; top level 40000 m)", + "nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"ORCHIDEE (v2.0, Water/Carbon/Energy mode)", + "nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "nominal_resolution":"none" + } + }, + "release_year":"2018", + "source_id":"IPSL-CM6A-ATM-HR" + }, + "IPSL-CM6A-LR":{ + "activity_participation":[ + "C4MIP", + "CFMIP", + "CMIP", + "DCPP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "LS3MIP", + "LUMIP", + "OMIP", + "PMIP", + "RFMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "IPSL" + ], + "label":"IPSL-CM6A-LR", + "label_extended":"IPSL-CM6A-LR", + "model_component":{ + "aerosol":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmos":{ + "description":"LMDZ (NPv6, N96; 144 x 143 longitude/latitude; 79 levels; top level 40000 m)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"ORCHIDEE (v2.0, Water/Carbon/Energy mode)", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"NEMO-PISCES", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"NEMO-LIM3", + "nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"IPSL-CM6A-LR" + }, + "KACE-1-0-G":{ + "activity_participation":[ + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NIMS-KMA" + ], + "label":"KACE1.0-G", + "label_extended":"KACE1.0-GLOMAP", + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"MOM4p1 (tripolar primarily 1deg; 360 x 200 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (tripolar primarily 1deg; 360 x 200 longitude/latitude)", + "nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"KACE-1-0-G" + }, + "KIOST-ESM":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "DynVarMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "KIOST" + ], + "label":"KIOST-ESM", + "label_extended":"KIOST Earth System Model v2", + "model_component":{ + "aerosol":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmos":{ + "description":"GFDL-AM2.0 (cubed sphere (C48); 192 x 96 longitude/latitude; 32 vertical levels; top level 2 hPa)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"Simple carbon aerosol model (emission type)", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"NCAR-CLM4", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"NCAR-CLM4", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"TOPAZ2", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"GFDL-SIS", + "nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"KIOST-ESM" + }, + "LBLRTM":{ + "activity_participation":[ + "RFMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "AER" + ], + "label":"LBLRTM", + "label_extended":"Line-By-Line Radiative Transfer Model v12.8, aer_v_3.6, MT_CKD_3.2", + "model_component":{ + "aerosol":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmos":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"none", + "nominal_resolution":"none" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "nominal_resolution":"none" + } + }, + "release_year":"2017", + "source_id":"LBLRTM" + }, + "MCM-UA-1-0":{ + "activity_participation":[ + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "UA" + ], + "label":"MCM-UA-1-0", + "label_extended":"Manabe Climate Model v1.0 - University of Arizona", + "model_component":{ + "aerosol":{ + "description":"Modifies surface albedoes (Haywood et al. 1997, doi: 10.1175/1520-0442(1997)010<1562:GCMCOT>2.0.CO;2)", + "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)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "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)", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"Specified location - invariant in time, has high albedo and latent heat capacity", + "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)", + "nominal_resolution":"250 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"Thermodynamic ice model (free drift dynamics)", + "nominal_resolution":"250 km" + } + }, + "release_year":"1991", + "source_id":"MCM-UA-1-0" + }, + "MIROC-ES2H":{ + "activity_participation":[ + "AerChemMIP", + "CMIP", + "DynVarMIP", + "GeoMIP", + "VIACSAB" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "label":"MIROC-ES2H", + "label_extended":"MIROC-ES2H", + "model_component":{ + "aerosol":{ + "description":"SPRINTARS6.0", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"CHASER4.0", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"MATSIRO6.0+VISIT-e ver.1.0", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"COCO4.9", + "nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"MIROC-ES2H" + }, + "MIROC-ES2L":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CMIP", + "DynVarMIP", + "GeoMIP", + "LUMIP", + "OMIP", + "PMIP", + "ScenarioMIP", + "VIACSAB", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "label":"MIROC-ES2L", + "label_extended":"MIROC-ES2L", + "model_component":{ + "aerosol":{ + "description":"SPRINTARS6.0", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"CCSR AGCM (T42; 128 x 64 longitude/latitude; 40 levels; top level 3 hPa)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"MATSIRO6.0+VISIT-e ver.1.0", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"OECO ver.2.0; NPZD-type with C/N/P/Fe/O cycles", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"COCO4.9", + "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":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "label":"MIROC6", + "label_extended":"MIROC6", + "model_component":{ + "aerosol":{ + "description":"SPRINTARS6.0", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CCSR AGCM (T85; 256 x 128 longitude/latitude; 81 levels; top level 0.004 hPa)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"MATSIRO6.0", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"COCO4.9 (tripolar primarily 1deg; 360 x 256 longitude/latitude; 63 levels; top grid cell 0-2 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"COCO4.9", + "nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"MIROC6" + }, + "MPI-ESM-1-2-HAM":{ + "activity_participation":[ + "AerChemMIP", + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "HAMMOZ-Consortium" + ], + "label":"MPI-ESM1.2-HAM", + "label_extended":"MPI-ESM1.2-HAM", + "model_component":{ + "aerosol":{ + "description":"HAM2.3", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"sulfur chemistry (unnamed)", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"JSBACH 3.20", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"HAMOCC6", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"MPI-ESM-1-2-HAM" + }, + "MPI-ESM1-2-HR":{ + "activity_participation":[ + "CMIP", + "CORDEX", + "DCPP", + "DynVarMIP", + "FAFMIP", + "HighResMIP", + "OMIP", + "SIMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MPI-M", + "DWD", + "DKRZ" + ], + "label":"MPI-ESM1.2-HR", + "label_extended":"MPI-ESM1.2-HR", + "model_component":{ + "aerosol":{ + "description":"none, prescribed MACv2-SP", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"ECHAM6.3 (spectral T127; 384 x 192 longitude/latitude; 95 levels; top level 0.01 hPa)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"JSBACH3.20", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none/prescribed", + "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)", + "nominal_resolution":"50 km" + }, + "ocnBgchem":{ + "description":"HAMOCC", + "nominal_resolution":"50 km" + }, + "seaIce":{ + "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "nominal_resolution":"50 km" + } + }, + "release_year":"2017", + "source_id":"MPI-ESM1-2-HR" + }, + "MPI-ESM1-2-LR":{ + "activity_participation":[ + "C4MIP", + "CDRMIP", + "CFMIP", + "CMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "ISMIP6", + "LS3MIP", + "LUMIP", + "OMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MPI-M", + "AWI" + ], + "label":"MPI-ESM1.2-LR", + "label_extended":"MPI-ESM1.2-LR", + "model_component":{ + "aerosol":{ + "description":"none, prescribed MACv2-SP", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"ECHAM6.3 (spectral T63; 192 x 96 longitude/latitude; 47 levels; top level 0.01 hPa)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"JSBACH3.20", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none/prescribed", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"HAMOCC", + "nominal_resolution":"250 km" + }, + "seaIce":{ + "description":"unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)", + "nominal_resolution":"250 km" + } + }, + "release_year":"2017", + "source_id":"MPI-ESM1-2-LR" + }, + "MRI-AGCM3-2":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MRI" + ], + "label":"MRI-AGCM3-2", + "label_extended":"MRI-AGCM3-2", + "model_component":{ + "aerosol":{ + "description":"Prescribed from MRI-ESM2.0", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MRI-AGCM3.2S (TL959; 1920 x 960 longitude/latitude; 64 levels; top level 0.01 hPa)", + "nominal_resolution":"25 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"SIB0109", + "nominal_resolution":"25 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"none", + "nominal_resolution":"none" + } + }, + "release_year":"2017", + "source_id":"MRI-AGCM3-2" + }, + "MRI-ESM2-0":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CFMIP", + "CMIP", + "CORDEX", + "DAMIP", + "DCPP", + "DynVarMIP", + "FAFMIP", + "GMMIP", + "GeoMIP", + "LS3MIP", + "OMIP", + "PMIP", + "RFMIP", + "SIMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MRI" + ], + "label":"MRI-ESM2.0", + "label_extended":"MRI-ESM2.0", + "model_component":{ + "aerosol":{ + "description":"MASINGAR mk2r4 (TL95; 192 x 96 longitude/latitude; 80 levels; top level 0.01 hPa)", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MRI-AGCM3.5 (TL159; 320 x 160 longitude/latitude; 80 levels; top level 0.01 hPa)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"MRI-CCM2.1 (T42; 128 x 64 longitude/latitude; 80 levels; top level 0.01 hPa)", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"HAL 1.0", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"MRI.COM4.4", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"MRI.COM4.4", + "nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"MRI-ESM2-0" + }, + "NESM3":{ + "activity_participation":[ + "CMIP", + "DAMIP", + "DCPP", + "GMMIP", + "GeoMIP", + "PMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NUIST" + ], + "label":"NESM v3", + "label_extended":"NUIST ESM v3", + "model_component":{ + "aerosol":{ + "description":"none", + "nominal_resolution":"none" + }, + "atmos":{ + "description":"ECHAM v6.3 (T63; 192 x 96 longitude/latitude; 47 levels; top level 1 Pa)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"JSBACH v3.1", + "nominal_resolution":"2.5 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.1", + "nominal_resolution":"100 km" + } + }, + "release_year":"2016", + "source_id":"NESM3" + }, + "NICAM16-7S":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "label":"NICAM16-7S", + "label_extended":"NICAM.16 gl07-L38 with NSW6", + "model_component":{ + "aerosol":{ + "description":"Prescribed MACv2-SP", + "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)", + "nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"MATSIRO6 (w/o MOSAIC)", + "nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"Fixed", + "nominal_resolution":"50 km" + } + }, + "release_year":"2017", + "source_id":"NICAM16-7S" + }, + "NICAM16-8S":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "label":"NICAM16-8S", + "label_extended":"NICAM.16 gl08-L38 with NSW6", + "model_component":{ + "aerosol":{ + "description":"Prescribed MACv2-SP", + "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)", + "nominal_resolution":"25 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"MATSIRO6 (w/o MOSAIC)", + "nominal_resolution":"25 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"Fixed", + "nominal_resolution":"25 km" + } + }, + "release_year":"2017", + "source_id":"NICAM16-8S" + }, + "NICAM16-9D-L78":{ + "activity_participation":[ + "CFMIP", + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "label":"NICAM16-9D-L78", + "label_extended":"NICAM.16 gl09-L78 with NDW6", + "model_component":{ + "aerosol":{ + "description":"Prescribed MACv2-SP", + "nominal_resolution":"10 km" + }, + "atmos":{ + "description":"NICAM.16 (14km icosahedral grid; 2,621,442 grid cells (=10*4^9+2); 78 levels; top level 40 km)", + "nominal_resolution":"10 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"MATSIRO6 (w/o MOSAIC)", + "nominal_resolution":"10 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"Fixed", + "nominal_resolution":"10 km" + } + }, + "release_year":"2017", + "source_id":"NICAM16-9D-L78" + }, + "NICAM16-9S":{ + "activity_participation":[ + "CMIP", + "DynVarMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MIROC" + ], + "label":"NICAM16-9S", + "label_extended":"NICAM.16 gl09-L38 with NSW6", + "model_component":{ + "aerosol":{ + "description":"Prescribed MACv2-SP", + "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)", + "nominal_resolution":"10 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"MATSIRO6 (w/o MOSAIC)", + "nominal_resolution":"10 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"Fixed", + "nominal_resolution":"10 km" + } + }, + "release_year":"2017", + "source_id":"NICAM16-9S" + }, + "NorESM2-HH":{ + "activity_participation":[ + "CMIP", + "HighResMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "label":"NorESM2-HH", + "label_extended":"NorESM2-HH (high atmosphere-high ocean resolution, GHG concentration driven)", + "model_component":{ + "aerosol":{ + "description":"OsloAero", + "nominal_resolution":"25 km" + }, + "atmos":{ + "description":"CAM-OSLO (0.25 degree resolution; 1152 x 768; 32 levels; top level 3 mb)", + "nominal_resolution":"25 km" + }, + "atmosChem":{ + "description":"OsloChemSimp", + "nominal_resolution":"25 km" + }, + "land":{ + "description":"CLM", + "nominal_resolution":"25 km" + }, + "landIce":{ + "description":"CISM", + "nominal_resolution":"25 km" + }, + "ocean":{ + "description":"MICOM (0.25 degree resolution; 1440 x 1152; 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])", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"HAMOCC", + "nominal_resolution":"25 km" + }, + "seaIce":{ + "description":"CICE", + "nominal_resolution":"25 km" + } + }, + "release_year":"2018", + "source_id":"NorESM2-HH" + }, + "NorESM2-LM":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "DAMIP", + "DCPP", + "LUMIP", + "OMIP", + "PMIP", + "RFMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "label":"NorESM2-LM", + "label_extended":"NorESM2-LM (low atmosphere-medium ocean resolution, GHG concentration driven)", + "model_component":{ + "aerosol":{ + "description":"OsloAero", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"CAM-OSLO (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"OsloChemSimp", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"CLM", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"CISM", + "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])", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"HAMOCC", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE", + "nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"NorESM2-LM" + }, + "NorESM2-LME":{ + "activity_participation":[ + "C4MIP", + "CMIP", + "GeoMIP", + "LUMIP", + "OMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "label":"NorESM2-LME", + "label_extended":"NorESM2-LME (low atmosphere-medium ocean resolution, GHG emission driven)", + "model_component":{ + "aerosol":{ + "description":"OsloAero", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"CAM-OSLO (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"OsloChemSimp", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"CLM", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"CISM", + "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])", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"HAMOCC", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE", + "nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"NorESM2-LME" + }, + "NorESM2-LMEC":{ + "activity_participation":[ + "AerChemMIP", + "CMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "label":"NorESM2-LMEC", + "label_extended":"NorESM2-LMEC (low atmosphere-medium ocean resolution, GHG emission driven, complex atmospheric chemistry)", + "model_component":{ + "aerosol":{ + "description":"OsloAero", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"CAM-OSLO (2 degree resolution; 144 x 96; 32 levels; top level 3 mb)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"OsloChemComp", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"CLM", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"CISM", + "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])", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"HAMOCC", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE", + "nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"NorESM2-LMEC" + }, + "NorESM2-MH":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "DAMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "label":"NorESM2-MH", + "label_extended":"NorESM2-MH (medium atmosphere-high ocean resolution, GHG concentration driven)", + "model_component":{ + "aerosol":{ + "description":"OsloAero", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM-OSLO (1 degree resolution; 288 x 192; 32 levels; top level 3 mb)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"OsloChemSimp", + "nominal_resolution":"100 km" + }, + "land":{ + "description":"CLM", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"CISM", + "nominal_resolution":"100 km" + }, + "ocean":{ + "description":"MICOM (0.25 degree resolution; 1440 x 1152; 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])", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"HAMOCC", + "nominal_resolution":"25 km" + }, + "seaIce":{ + "description":"CICE", + "nominal_resolution":"25 km" + } + }, + "release_year":"2017", + "source_id":"NorESM2-MH" + }, + "NorESM2-MM":{ + "activity_participation":[ + "AerChemMIP", + "CFMIP", + "CMIP", + "DAMIP", + "OMIP", + "RFMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "NCC" + ], + "label":"NorESM2-MM", + "label_extended":"NorESM2-MM (medium atmosphere-medium ocean resolution, GHG concentration driven)", + "model_component":{ + "aerosol":{ + "description":"OsloAero", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM-OSLO (1 degree resolution; 288 x 192; 32 levels; top level 3 mb)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"OsloChemSimp", + "nominal_resolution":"100 km" + }, + "land":{ + "description":"CLM", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"CISM", + "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])", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"HAMOCC", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE", + "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", + "nominal_resolution":"none" + }, + "atmos":{ + "description":"Earth1.0-gettingHotter (360 x 180 longitude/latitude; 50 levels; top level 0.1 mb)", + "nominal_resolution":"1x1 degree" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"Earth1.0", + "nominal_resolution":"1x1 degree" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"BlueMarble1.0-warming (360 x 180 longitude/latitude; 50 levels; top grid cell 0-10 m)", + "nominal_resolution":"1x1 degree" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"Declining1.0-warming (360 x 180 longitude/latitude)", + "nominal_resolution":"1x1 degree" + } + }, + "release_year":"1989", + "source_id":"PCMDI-test-1-0" + }, + "SAM0-UNICON":{ + "activity_participation":[ + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "SNU" + ], + "label":"SAM0-UNICON", + "label_extended":"SAM0-UNICON (SNU Atmosphere Model version 0 with Unified Convection Scheme)", + "model_component":{ + "aerosol":{ + "description":"MAM3", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM5.3 with UNICON (1deg; 288 x 192 longitude/latitude; 30 levels; top level ~2 hPa)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"CLM4.0", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"POP2 (Displaced Pole; 320 x 384 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4.0", + "nominal_resolution":"100 km" + } + }, + "release_year":"2017", + "source_id":"SAM0-UNICON" + }, + "UKESM1-0-LL":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CMIP", + "GeoMIP", + "LUMIP", + "OMIP", + "PMIP", + "ScenarioMIP", + "VolMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC", + "NERC", + "NIMS-KMA", + "NIWA" + ], + "label":"UKESM1.0-LL", + "label_extended":"UKESM1.0-N96ORCA1", + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N96; 192 x 144 longitude/latitude; 85 levels; top level 85 km)", + "nominal_resolution":"250 km" + }, + "atmosChem":{ + "description":"UKCA-StratTrop", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "nominal_resolution":"250 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"MEDUSA2", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA1 tripolar primarily 1 deg; 360 x 330 longitude/latitude)", + "nominal_resolution":"100 km" + } + }, + "release_year":"2018", + "source_id":"UKESM1-0-LL" + }, + "UKESM1-0-MMh":{ + "activity_participation":[ + "AerChemMIP", + "C4MIP", + "CMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "MOHC", + "NERC" + ], + "label":"UKESM1.0-MMh", + "label_extended":"UKESM1.0-N216ORCA025hybrid", + "model_component":{ + "aerosol":{ + "description":"UKCA-GLOMAP-mode (horizontal resolution degraded relative to that used for atmosphere physics)", + "nominal_resolution":"250 km" + }, + "atmos":{ + "description":"MetUM-HadGEM3-GA7.1 (N216; 432 x 324 longitude/latitude; 85 levels; top level 85 km)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"UKCA-StratTrop (horizontal resolution degraded relative to that used for atmosphere physics)", + "nominal_resolution":"250 km" + }, + "land":{ + "description":"JULES-HadGEM3-GL7.1", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "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)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"MEDUSA2 (horizontal resolution degraded relative to that used for ocean physics)", + "nominal_resolution":"100 km" + }, + "seaIce":{ + "description":"CICE-HadGEM3-GSI8 (eORCA025 tripolar primarily 0.25 deg; 1440 x 1205 longitude/latitude)", + "nominal_resolution":"25 km" + } + }, + "release_year":"2018", + "source_id":"UKESM1-0-MMh" + }, + "UofT-CCSM4":{ + "activity_participation":[ + "CMIP", + "PMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "UofT" + ], + "label":"UofT-CCSM4", + "label_extended":"The NCAR CCSM4 model with the ocean component run in a non-default configuration (the University of Toronto configuration) where tidal mixing and overflow parametrizations are turned off. The vertical profile of ocean diapycnal diffusivity is fixed to the POP1 profile used in CCSM3. See Peltier and Vettoretti, 2014 GRL (https://doi.org/10.1002/2014GL061413), Chandan and Peltier, 2017 Clim. Past. (https://doi.org/10.5194/cp-13-919-2017)", + "model_component":{ + "aerosol":{ + "description":"unnamed", + "nominal_resolution":"100 km" + }, + "atmos":{ + "description":"CAM4 (finite-volume dynamical core; 288 x 192 longitude/latitude; 26 levels; top level ~2 hPa)", + "nominal_resolution":"100 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"CLM4", + "nominal_resolution":"100 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"POP2 (displaced dipole grid; 384 x 320 longitude/latitude; 60 levels; top grid cell 0-10 m)", + "nominal_resolution":"100 km" + }, + "ocnBgchem":{ + "description":"none", + "nominal_resolution":"none" + }, + "seaIce":{ + "description":"CICE4", + "nominal_resolution":"100 km" + } + }, + "release_year":"2014", + "source_id":"UofT-CCSM4" + }, + "VRESM-1-0":{ + "activity_participation":[ + "CMIP", + "DAMIP", + "HighResMIP", + "PMIP", + "ScenarioMIP" + ], + "cohort":[ + "Registered" + ], + "institution_id":[ + "CSIR-CSIRO" + ], + "label":"VRESM 1.0", + "label_extended":"VRESM 1.0 (Variable-resolution Earth System Model 1.0)", + "model_component":{ + "aerosol":{ + "description":"Rotstayn-1.0", + "nominal_resolution":"50 km" + }, + "atmos":{ + "description":"VCAM-1.0 (C192; 192 x 192 x 6 longitude/latitude/cubeface; 35 levels; top level 35km)", + "nominal_resolution":"50 km" + }, + "atmosChem":{ + "description":"none", + "nominal_resolution":"none" + }, + "land":{ + "description":"CABLE v2.2.3", + "nominal_resolution":"50 km" + }, + "landIce":{ + "description":"none", + "nominal_resolution":"none" + }, + "ocean":{ + "description":"VCOM-1.0 (C192; 384 x 384 x 6 longitude/latitude/cubeface; 35 levels; top grid cell 0-10 m)", + "nominal_resolution":"25 km" + }, + "ocnBgchem":{ + "description":"PISCES v3.4socco", + "nominal_resolution":"25 km" + }, + "seaIce":{ + "description":"CSIR-ICE (visco-plastic)", + "nominal_resolution":"25 km" + } + }, + "release_year":"2016", + "source_id":"VRESM-1-0" + } + }, + "version_metadata":{ + "CV_collection_modified":"Tue Aug 7 07:31:46 2018 -0700", + "CV_collection_version":"6.2.12.0", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "previous_commit":"b27ce275adcf31632cbafb9b9f92af4235b3fff2", + "source_id_CV_modified":"Tue Jul 31 17:33:00 2018 -0700", + "source_id_CV_note":"Revise multiple GFDL source_id values", + "specs_doc":"v6.2.6 (20th December 2017; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/db/CMIP6_source_type.json b/db/CMIP6_source_type.json new file mode 100644 index 0000000..d75d992 --- /dev/null +++ b/db/CMIP6_source_type.json @@ -0,0 +1,24 @@ +{ + "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":"Tue Aug 7 07:31:46 2018 -0700", + "CV_collection_version":"6.2.12.0", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "previous_commit":"b27ce275adcf31632cbafb9b9f92af4235b3fff2", + "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.6 (20th December 2017; https://goo.gl/v1drZl)" + } +} \ No newline at end of file diff --git a/db/CMIP6_sub_experiment_id.json b/db/CMIP6_sub_experiment_id.json new file mode 100644 index 0000000..f8108dc --- /dev/null +++ b/db/CMIP6_sub_experiment_id.json @@ -0,0 +1,87 @@ +{ + "sub_experiment_id":{ + "none":"none", + "s1910":"initialized near end of year 1910", + "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":"Tue Aug 7 07:31:46 2018 -0700", + "CV_collection_version":"6.2.12.0", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "previous_commit":"b27ce275adcf31632cbafb9b9f92af4235b3fff2", + "specs_doc":"v6.2.6 (20th December 2017; https://goo.gl/v1drZl)", + "sub_experiment_id_CV_modified":"Wed Mar 8 11:27:00 2017 -0700", + "sub_experiment_id_CV_note":"Issue1 durack1 update experiment_id from spreadsheet (MIP-chair review) (#241)" + } +} \ No newline at end of file diff --git a/db/CMIP6_table_id.json b/db/CMIP6_table_id.json new file mode 100644 index 0000000..65d6ed4 --- /dev/null +++ b/db/CMIP6_table_id.json @@ -0,0 +1,57 @@ +{ + "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":"Tue Aug 7 07:31:46 2018 -0700", + "CV_collection_version":"6.2.12.0", + "author":"Paul J. Durack ", + "institution_id":"PCMDI", + "previous_commit":"b27ce275adcf31632cbafb9b9f92af4235b3fff2", + "specs_doc":"v6.2.6 (20th December 2017; 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)" + } +} \ No newline at end of file diff --git a/db/attributes_map.json b/db/attributes_map.json new file mode 100644 index 0000000..8e7b673 --- /dev/null +++ b/db/attributes_map.json @@ -0,0 +1,272 @@ +{ + "Conventions": { + "CMIP5": "Conventions", + "drs": false, + "facet": false, + "required": true + }, + "activity_id": { + "CMIP5": "NA", + "drs": true, + "facet": true, + "required": true + }, + "branch_method": { + "CMIP5": "NA", + "drs": false, + "facet": false, + "required": false + }, + "branch_time_in_child": { + "CMIP5": "NA", + "drs": false, + "facet": false, + "required": false + }, + "branch_time_in_parent": { + "CMIP5": "branch_time", + "drs": false, + "facet": false, + "required": false + }, + "comment": { + "CMIP5": "comment", + "drs": false, + "facet": false, + "required": false + }, + "contact": { + "CMIP5": "contact", + "drs": false, + "facet": false, + "required": false + }, + "creation_date": { + "CMIP5": "creation_date", + "drs": false, + "facet": false, + "required": true + }, + "data_specs_version": { + "CMIP5": "NA", + "drs": false, + "facet": false, + "required": true + }, + "experiment": { + "CMIP5": "experiment", + "drs": false, + "facet": false, + "required": true + }, + "experiment_id": { + "CMIP5": "experiment_id", + "drs": true, + "facet": true, + "required": true + }, + "external_variables": { + "CMIP5": "NA", + "drs": false, + "facet": false, + "required": false + }, + "forcing_index": { + "CMIP5": "NA", + "drs": false, + "facet": false, + "required": true + }, + "frequency": { + "CMIP5": "frequency", + "drs": false, + "facet": false, + "required": true + }, + "further_info_url": { + "CMIP5": "NA", + "drs": false, + "facet": false, + "required": true + }, + "grid": { + "CMIP5": "NA", + "drs": false, + "facet": false, + "required": true + }, + "grid_label": { + "CMIP5": "NA", + "drs": true, + "facet": true, + "required": true + }, + "initialization_index": { + "CMIP5": "initialization_method", + "drs": false, + "facet": false, + "required": true + }, + "institution": { + "CMIP5": "institution", + "drs": false, + "facet": false, + "required": true + }, + "institution_id": { + "CMIP5": "institute_id", + "drs": true, + "facet": true, + "required": true + }, + "license": { + "CMIP5": "NA", + "drs": false, + "facet": false, + "required": true + }, + "mip_era": { + "CMIP5": "NA", + "drs": true, + "facet": true, + "required": true + }, + "nominal_resolution": { + "CMIP5": "NA", + "drs": false, + "facet": true, + "required": true + }, + "parent_activity_id": { + "CMIP5": "", + "drs": false, + "facet": false, + "required": false + }, + "parent_experiment_id": { + "CMIP5": "parent_experiment_id", + "drs": false, + "facet": false, + "required": false + }, + "parent_mip_era": { + "CMIP5": "NA", + "drs": false, + "facet": false, + "required": false + }, + "parent_source_id": { + "CMIP5": "", + "drs": false, + "facet": false, + "required": false + }, + "parent_time_units": { + "CMIP5": "NA", + "drs": false, + "facet": false, + "required": false + }, + "parent_variant_label": { + "CMIP5": "parent_experiment_rip", + "drs": false, + "facet": false, + "required": false + }, + "physics_index": { + "CMIP5": "physics_method", + "drs": false, + "facet": false, + "required": true + }, + "product": { + "CMIP5": "product", + "drs": true, + "facet": true, + "required": true + }, + "project_id": { + "CMIP5": "project_id", + "drs": true, + "facet": true, + "required": true + }, + "realization_index": { + "CMIP5": "realization", + "drs": false, + "facet": false, + "required": true + }, + "realm": { + "CMIP5": "modeling_realm", + "drs": true, + "facet": true, + "required": true + }, + "source": { + "CMIP5": "source", + "drs": false, + "facet": false, + "required": true + }, + "source_id": { + "CMIP5": "model_id", + "drs": true, + "facet": true, + "required": true + }, + "source_type": { + "CMIP5": "NA", + "drs": false, + "facet": true, + "required": true + }, + "sub_experiment": { + "CMIP5": "NA", + "drs": false, + "facet": false, + "required": true + }, + "sub_experiment_id": { + "CMIP5": "NA", + "drs": false, + "facet": true, + "required": true + }, + "table_id": { + "CMIP5": "table_id", + "drs": true, + "facet": true, + "required": true + }, + "title": { + "CMIP5": "title", + "drs": false, + "facet": false, + "required": false + }, + "tracking_id": { + "CMIP5": "tracking_id", + "drs": false, + "facet": false, + "required": true + }, + "variable_id": { + "CMIP5": "NA", + "drs": true, + "facet": true, + "required": true + }, + "variant_info": { + "CMIP5": "forcing", + "drs": false, + "facet": false, + "required": false + }, + "variant_label": { + "CMIP5": "NA", + "drs": true, + "facet": true, + "required": true + } +} diff --git a/db/drs.json b/db/drs.json new file mode 100644 index 0000000..3807f13 --- /dev/null +++ b/db/drs.json @@ -0,0 +1,19 @@ +{ + "activity_id": "CMIP6_activity_id.json", + "experiment_id": "CMIP6_experiment_id.json", + "frequency": "CMIP6_frequency.json", + "grid_label ": "CMIP6_grid_label.json", + "institution_id": "CMIP6_institution_id.json", + "member_id": "sub_experiment_id+variant_label", + "mip_era ": "constant=CMIP6", + "nominal_resolution": "CMIP6_nominal_resolution.json", + "product ": "constant=model-output", + "realm": "CMIP6_realm.json", + "source_id": "CMIP6_source_id.json", + "source_type": "CMIP6_source_type.json", + "sub_experiment_id ": "CMIP6_sub_experiment_id.json", + "table_id": "CMIP6_table_id.json", + "variable_id": "data request", + "variant_label": "indices", + "version": "something" +} diff --git a/db/facets.json b/db/facets.json new file mode 100644 index 0000000..92e7601 --- /dev/null +++ b/db/facets.json @@ -0,0 +1,21 @@ +{ + "activity_id": "None", + "project": "project", + "experiment_id": "experiment", + "frequency": "time_frequency", + "grid_label": "None", + "institution_id": "institute", + "mip_era": "None", + "nominal_resolution": "None", + "product": "product", + "realm": "realm", + "source_id": "model", + "source_type": "None", + "sub_experiment_id": "None", + "table_id": "cmor_table", + "variable_id": "variable", + "variant_label": "None", + "member_id": "ensemble", + "experiment_family": "experiment_family", + "cf_standard_name": "cf_standard_name" +} diff --git a/db/institutes.properties b/db/institutes.properties new file mode 100644 index 0000000..9ecf0d2 --- /dev/null +++ b/db/institutes.properties @@ -0,0 +1,44 @@ +# mapping file for CMIP5 institutes +bcc:BCC +bnu:BNU +cawcr:CSIRO-BOM +cccma:CCCMA +cma-bcc:BCC +cmcc:CMCC +cnrm-cerfacs:CNRM-CERFACS +cola-cfs:COLA-CFS +csiro-bom:CSIRO-BOM +csiro-qccce:CSIRO-QCCCE +ec-earth:EC-EARTH +fio:FIO +gcess:GCESS +gfdl:NOAA-GFDL +giss:GISS +ichec:ICHEC +inm:INM +ipsl:IPSL +lasg:LASG +lasg-cess:LASG-CESS +lasg-iap:LASG-IAP +merra:MERRA +miroc:MIROC +mohc:MOHC +mpi-m:MPI-M +mri:MRI +nasa-jpl:NASA-JPL +nasa-gsfc:NASA-GSFC +nasa-gmao:NASA-GMAO +nasa-giss:NASA-GISS +ncar:NCAR +ncas:NCAS +ncc:NCC +ncep:NCEP +nmr-kma:NIMR-KMA +nimr-kma:NIMR-KMA +nimr:NIMR-KMA +noaa-gfdl:NOAA-GFDL +noaa gfdl:NOAA-GFDL +noaa-ncep:NCEP +nsf-doe-ncar:NSF-DOE-NCAR +rsmas:RSMAS +qcce-csiro:CSIRO-QCCCE \ No newline at end of file diff --git a/db/models.properties b/db/models.properties new file mode 100644 index 0000000..17d5d94 --- /dev/null +++ b/db/models.properties @@ -0,0 +1,75 @@ +# mapping file for CMIP5 models +access:ACCESS1.0 +access1-0:ACCESS1.0 +access1-3:ACCESS1.3 +bcc-csm1-1:BCC-CSM1.1 +bcc-csm1-1-m:BCC-CSM1.1(m) +bnu-esm:BNU-ESM +canam4:CanAM4 +cancm4:CanCM4 +canesm2:CanESM2 +ccsm4:CCSM4 +ccsm4-rsmas:CCSM4(RSMAS) +cesm1-bgc:CESM1(BGC) +cesm1-cam5:CESM1(CAM5) +cesm1-chem:CESM1(CHEM) +cesm1-chem-cam5:CESM1(CHEM,CAM5) +cesm1-waccm:CESM1(WACCM) +cesm1-fastchem:CESM1(FASTCHEM) +cesm1-cam5-1-fv2:CESM1(CAM5.1,FV2) +cfsv2:CFSv2-2011 +cfsv2-2011:CFSv2-2011 +cmcc-cesm:CMCC-CESM +cmcc-cm:CMCC-CM +cmcc-cms:CMCC-CMS +cnrm-cm5:CNRM-CM5 +csiro-mk3-5A:CSIRO-Mk3.5A +csiro-mk3-6:CSIRO-Mk3.6.0 +csiro-mk3-6-0:CSIRO-Mk3.6.0 +ec-earth:EC-EARTH +fgoals-g2:FGOALS-g2 +fgoals-gl:FGOALS-gl +fgoals-s2:FGOALS-s2 +fio-esm:FIO-ESM +geos-5:GEOS-5 +gfdl-cm2p1:GFDL-CM2.1 +gfdl-cm2.1:GFDL-CM2.1 +gfdl-cm3:GFDL-CM3 +gfdl-esm2g:GFDL-ESM2G +gfdl-esm2m:GFDL-ESM2M +gfdl-hiram-c180:GFDL-HIRAM-C180 +gfdl-hiram-c360:GFDL-HIRAM-C360 +giss-e2-h:GISS-E2-H +giss-e2-h-cc :GISS-E2-H-CC +giss-e2-r:GISS-E2-R +giss-e2-r-cc:GISS-E2-R-CC +giss-e2cs-h:GISS-E2CS-H +giss-e2cs-r:GISS-E2CS-R +hadcm3:HadCM3 +hadcm3q:HadCM3Q +hadgem2-a:HadGEM2-A +hadgem2-ao:HadGEM2-AO +hadgem2-cc:HadGEM2-CC +hadgem2-es:HadGEM2-ES +higem1-2:HiGEM1.2 +inmcm4:INM-CM4 +ipsl-cm5a-lr:IPSL-CM5A-LR +ipsl-cm5a-mr:IPSL-CM5A-MR +ipsl-cm5b:IPSL-CM5B-LR +ipsl-cm5B-lr:IPSL-CM5B-LR +miroc-esm:MIROC-ESM +miroc-esm-chem:MIROC-ESM-CHEM +miroc4h:MIROC4h +miroc4m:MIROC4m +miroc5:MIROC5 +mpi-esm-hr:MPI-ESM-HR +mpi-esm-lr:MPI-ESM-LR +mpi-esm-mr:MPI-ESM-MR +mpi-esm-p:MPI-ESM-P +mri-agcm3-2h:MRI-AGCM3.2H +mri-agcm3-2s:MRI-AGCM3.2S +mri-cgcm3:MRI-CGCM3 +mri-esm1:MRI-ESM1 +noresm-m:NorESM1-M +noresm-me:NorESM1-ME +noresm-l:NorESM1-L \ No newline at end of file diff --git a/db/nci.sql b/db/nci.sql index e650499..1981e11 100644 --- a/db/nci.sql +++ b/db/nci.sql @@ -63,6 +63,32 @@ CREATE VIEW ua6.checksums AS \copy (with x as (select * from esgf_filter limit 5) select y.* from metadata as y join x on md_hash = file_id) to db/metadata_sample.txt \copy (with x as (select * from esgf_filter limit 5) select y.* from checksums as y join x on ch_hash = file_id) to db/checksums_sample.txt */ -\copy ua6.metadata from 'db/metadata_sample.txt' -\copy ua6.paths from 'db/paths_sample.txt' +\copy ua6.metadata from 'db/metadata_ua6_sample.txt' +\copy ua6.paths from 'db/paths_ua6_sample.txt' + +CREATE SCHEMA oi10; + +CREATE TABLE oi10.metadata ( + md_hash UUID, + md_ingested TIMESTAMP WITH TIME ZONE, + md_type TEXT, + md_json JSONB, + PRIMARY KEY (md_hash, md_type) +); + +CREATE TABLE oi10.paths ( + pa_hash UUID PRIMARY KEY, + pa_ingested TIMESTAMP WITH TIME ZONE, + pa_type PATH_TYPE, + pa_path TEXT, + pa_parents UUID[] +); + +CREATE VIEW oi10.checksums AS + SELECT + md_hash as ch_hash, + md_json->>'md5' as ch_md5, + md_json->>'sha256' as ch_sha256 + FROM oi10.metadata + WHERE md_type = 'checksum'; diff --git a/db/refresh.sql b/db/refresh.sql index 6274671..d7743af 100644 --- a/db/refresh.sql +++ b/db/refresh.sql @@ -1,4 +1,6 @@ REFRESH MATERIALIZED VIEW CONCURRENTLY esgf_paths; -REFRESH MATERIALIZED VIEW CONCURRENTLY esgf_metadata_dataset_link; -REFRESH MATERIALIZED VIEW CONCURRENTLY esgf_dataset; +REFRESH MATERIALIZED VIEW CONCURRENTLY c5_metadata_dataset_link; +REFRESH MATERIALIZED VIEW CONCURRENTLY c6_metadata_dataset_link; +REFRESH MATERIALIZED VIEW CONCURRENTLY cmip5_dataset; +REFRESH MATERIALIZED VIEW CONCURRENTLY cmip6_dataset; REFRESH MATERIALIZED VIEW CONCURRENTLY extended_metadata; diff --git a/db/tables.sql b/db/tables.sql index aefe426..ebfda31 100644 --- a/db/tables.sql +++ b/db/tables.sql @@ -1,15 +1,25 @@ CREATE OR REPLACE VIEW metadata AS SELECT md_hash, + md_ingested, md_type, md_json FROM rr3.metadata UNION ALL SELECT md_hash, + md_ingested, md_type, md_json - FROM ua6.metadata; + FROM ua6.metadata + UNION ALL + SELECT + md_hash, + md_ingested, + md_type, + md_json + FROM oi10.metadata; + CREATE OR REPLACE VIEW paths AS SELECT @@ -24,7 +34,14 @@ CREATE OR REPLACE VIEW paths AS pa_type, pa_path, pa_parents - FROM ua6.paths; + FROM ua6.paths + UNION ALL + SELECT + pa_hash, + pa_type, + pa_path, + pa_parents + FROM oi10.paths; CREATE OR REPLACE VIEW checksums AS SELECT @@ -37,7 +54,13 @@ CREATE OR REPLACE VIEW checksums AS ch_hash, ch_md5, ch_sha256 - FROM ua6.checksums; + FROM ua6.checksums + UNION ALL + SELECT + ch_hash, + ch_md5, + ch_sha256 + FROM oi10.checksums; CREATE OR REPLACE VIEW esgf_filter AS SELECT @@ -48,6 +71,7 @@ CREATE OR REPLACE VIEW esgf_filter AS AND ( pa_parents[6] = md5('/g/data1/ua6/unofficial-ESG-replica/tmp/tree')::uuid OR pa_parents[4] = md5('/g/data1/rr3/publications')::uuid + OR pa_parents[4] = md5('/g/data1b/oi10/replicas')::uuid ); CREATE MATERIALIZED VIEW IF NOT EXISTS esgf_paths AS @@ -73,7 +97,8 @@ CREATE INDEX IF NOT EXISTS checksums_md5_idx ON checksums(ch_md5); CREATE INDEX IF NOT EXISTS checksums_sha256_idx ON checksums(ch_sha256); */ -CREATE MATERIALIZED VIEW IF NOT EXISTS dataset_metadata AS +/* modified this so it works with both cmip5 and cmip6 using attributes_map.json */ +CREATE MATERIALIZED VIEW IF NOT EXISTS c5_dataset_metadata AS SELECT md_hash AS file_id, md_json->'attributes'->>'project_id' as project, @@ -90,9 +115,35 @@ CREATE MATERIALIZED VIEW IF NOT EXISTS dataset_metadata AS FROM metadata JOIN esgf_paths ON md_hash = file_id WHERE md_type = 'netcdf'; -CREATE UNIQUE INDEX IF NOT EXISTS dataset_metadata_file_id ON dataset_metadata(file_id); +CREATE UNIQUE INDEX IF NOT EXISTS c5_dataset_metadata_file_id ON c5_dataset_metadata(file_id); -CREATE MATERIALIZED VIEW IF NOT EXISTS esgf_metadata_dataset_link AS +/* modified this so it works with both cmip5 and cmip6 using attributes_map.json */ +CREATE OR REPLACE VIEW c6_dataset_metadata AS + SELECT + md_hash AS file_id, + md_json->'attributes'->>'activity_id' as activity_id, + md_json->'attributes'->>'mip_era' as project, + md_json->'attributes'->>'institution_id' as institution_id, + md_json->'attributes'->>'mip_era' as mip_era, + md_json->'attributes'->>'source_id' as source_id, + md_json->'attributes'->>'source_type' as source_type, + md_json->'attributes'->>'experiment_id' as experiment_id, + md_json->'attributes'->>'sub_experiment_id' as sub_experiment_id, + md_json->'attributes'->>'frequency' as frequency, + md_json->'attributes'->>'realm' as realm, + md_json->'attributes'->>'realization_index' as r, + md_json->'attributes'->>'initialization_index' as i, + md_json->'attributes'->>'physics_index' as p, + md_json->'attributes'->>'forcing_index' as f, + md_json->'attributes'->>'variable_id' as variable_id, + md_json->'attributes'->>'grid_label' as grid_label, + md_json->'attributes'->>'nominal_resolution' as nominal_resolution, + md_json->'attributes'->>'table_id' as table_id + FROM oi10.metadata + WHERE md_type = 'netcdf'; +/* CREATE UNIQUE INDEX IF NOT EXISTS c6_dataset_metadata_file_id ON c6_dataset_metadata(file_id); */ + +CREATE MATERIALIZED VIEW IF NOT EXISTS c5_metadata_dataset_link AS SELECT file_id, md5( @@ -106,14 +157,35 @@ CREATE MATERIALIZED VIEW IF NOT EXISTS esgf_metadata_dataset_link AS COALESCE(cmor_table,'') ||'.'|| COALESCE('r'||r||'i'||i||'p'||p,'') )::uuid as dataset_id - FROM dataset_metadata + FROM c5_dataset_metadata NATURAL JOIN esgf_paths; -CREATE UNIQUE INDEX IF NOT EXISTS esgf_metadata_dataset_link_file_id ON esgf_metadata_dataset_link(file_id); -CREATE INDEX IF NOT EXISTS esgf_metadata_dataset_link_dataset_id ON esgf_metadata_dataset_link(dataset_id); -GRANT SELECT ON esgf_metadata_dataset_link TO PUBLIC; +CREATE UNIQUE INDEX IF NOT EXISTS c5_metadata_dataset_link_file_id ON c5_metadata_dataset_link(file_id); +CREATE INDEX IF NOT EXISTS c5_metadata_dataset_link_dataset_id ON c5_metadata_dataset_link(dataset_id); +GRANT SELECT ON c5_metadata_dataset_link TO PUBLIC; + +/* we probably can eliminate coalesce for institution-id , activity and variant_label since they should always be there */ +CREATE MATERIALIZED VIEW IF NOT EXISTS c6_metadata_dataset_link AS + SELECT + file_id, + md5( + COALESCE(mip_era,'') ||'.'|| + COALESCE(activity_id,'') ||'.'|| + COALESCE(institution_id,'') ||'.'|| + source_id ||'.'|| + experiment_id ||'.'|| + COALESCE(sub_experiment_id,'') ||'-'|| + COALESCE('r'||r||'i'||i||'p'||p||'f'||f,'') || + COALESCE(table_id,'') ||'.'|| + variable_id ||'.'|| + COALESCE(grid_label,'') ||'.' + )::uuid as dataset_id + FROM c6_dataset_metadata; +CREATE UNIQUE INDEX IF NOT EXISTS c6_metadata_dataset_link_file_id ON c6_metadata_dataset_link(file_id); +CREATE INDEX IF NOT EXISTS c6_metadata_dataset_link_dataset_id ON c6_metadata_dataset_link(dataset_id); +GRANT SELECT ON c6_metadata_dataset_link TO PUBLIC; -CREATE MATERIALIZED VIEW IF NOT EXISTS esgf_dataset AS +CREATE MATERIALIZED VIEW IF NOT EXISTS cmip5_dataset AS SELECT DISTINCT dataset_id, project, @@ -122,6 +194,13 @@ CREATE MATERIALIZED VIEW IF NOT EXISTS esgf_dataset AS CASE WHEN model = 'ACCESS1-0' THEN 'ACCESS1.0' WHEN model = 'ACCESS1-3' THEN 'ACCESS1.3' WHEN model = 'CSIRO-Mk3-6-0' THEN 'CSIRO-Mk3.6.0' + WHEN model = 'CESM1-WACCM' THEN 'CESM1(WACCM)' + WHEN model = 'MRI-AGCM3-2H' THEN 'MRI-AGCM3.2H' + WHEN model = 'MRI-AGCM3-2S' THEN 'MRI-AGCM3.2S' + WHEN model = 'bcc-csm1-1-m' THEN 'BCC-CSM1.1(m)' + WHEN model = 'bcc-csm1-1' THEN 'BCC-CSM1.1' + WHEN model = 'CESM1-CAM5' THEN 'CESM1(CAM5)' + WHEN model = 'CESM1-BGC' THEN 'CESM1(BGC)' ELSE model END AS model, experiment, @@ -132,11 +211,38 @@ CREATE MATERIALIZED VIEW IF NOT EXISTS esgf_dataset AS i, p, 'r'||r||'i'||i||'p'||p AS ensemble - FROM dataset_metadata - NATURAL JOIN esgf_metadata_dataset_link; -CREATE UNIQUE INDEX IF NOT EXISTS esgf_dataset_dataset_id ON esgf_dataset(dataset_id); -GRANT SELECT ON esgf_dataset TO PUBLIC; + FROM c5_dataset_metadata + NATURAL JOIN c5_metadata_dataset_link; +CREATE UNIQUE INDEX IF NOT EXISTS cmip5_dataset_dataset_id ON cmip5_dataset(dataset_id); +GRANT SELECT ON cmip5_dataset TO PUBLIC; +CREATE MATERIALIZED VIEW IF NOT EXISTS cmip6_dataset AS + SELECT DISTINCT + dataset_id, + project, + activity_id, /** .e.CMIP for DECK etc **/ + institution_id, + source_id, /** instead of model **/ + source_type, /** AOGM, BGC **/ + experiment_id, + sub_experiment_id, + frequency, + realm, + mip_era, /** this should always be CMIP6 so might be skipped as well? **/ + r, + i, + p, + f, + 'r'||r||'i'||i||'p'||p||'f'||f AS variant_label, + sub_experiment_id||'-'||'r'||r||'i'||i||'p'||p||'f'||f AS member_id, + variable_id, + grid_label, + nominal_resolution, + table_id /** instead of cmor_table **/ + FROM c6_dataset_metadata + NATURAL JOIN c6_metadata_dataset_link; +CREATE UNIQUE INDEX IF NOT EXISTS cmip6_dataset_dataset_id ON cmip6_dataset(dataset_id); +GRANT SELECT ON cmip6_dataset TO PUBLIC; /* Extra metadata not stored in the file itself. This table stores manually * entered data, automatic data is in the view `extended_metadata_path` and * both are combined in the materialized view `extended_metadata`. diff --git a/test/test_esgf.py b/test/test_esgf.py index a86d915..43167ea 100644 --- a/test/test_esgf.py +++ b/test/test_esgf.py @@ -230,3 +230,12 @@ def test_find_partial_dataset(session): with mock.patch('arccssive2.esgf.esgf_query', side_effect=missing_query): results = find_local_path(session, '', format='dataset') assert results.count() == 0 + + +def test_find_cmip6(): + r = esgf_query(query='', fields='id', project='CMIP6', limit=0) + assert r['response']['numFound'] > 0 + +def test_find_cmip5(): + r = esgf_query(query='', fields='id', project='CMIP5', limit=0) + assert r['response']['numFound'] > 0