-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseaice.py
81 lines (67 loc) · 4.07 KB
/
seaice.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
"""A realm sepecialization.
For further information goto http://wordpress.es-doc.org/cmip6-model-specializations.
"""
# --------------------------------------------------------------------
# INTERNAL (do not change)
# --------------------------------------------------------------------
from collections import OrderedDict
DETAILS = OrderedDict()
ENUMERATIONS = OrderedDict()
# --------------------------------------------------------------------
# CONTACT: Set to realm specialization co-ordinator.
# --------------------------------------------------------------------
CONTACT = 'Ruth Petrie'
# --------------------------------------------------------------------
# AUTHORS: Set to realm specialization authors (comma delimited).
# --------------------------------------------------------------------
AUTHORS = 'Ruth Petrie, Bryan Lawrence, David Hassell, Mark Greenslade'
# --------------------------------------------------------------------
# CONTRIBUTORS: Set to realm specialization contributors (comma delimited).
# --------------------------------------------------------------------
CONTRIBUTORS = 'Jamie Rae (UKMO), Martin Vancopppenolle (IPSL), Alexandra Jahn (University of Colorado)'
# --------------------------------------------------------------------
# CHANGE HISTORY: Set to list: (version, date, who, comment).
# --------------------------------------------------------------------
CHANGE_HISTORY = [
("0.1.0", "2016-05-24", "David Hassell", "Initialised"),
("0.1.1", "2016-09-28", "Ruth Petrie", "Modified to include work done by Bryan Lawerence"),
("0.1.2", "2016-11-07", "Ruth Petrie", "Updated on the basis of discussion with Jamie Rae (UKMO)"),
("0.1.3", "2016-11-15", "Mark Greenslade", "Refactored based to fit in the new schema"),
("0.1.4", "2016-11-17", "Ruth Petrie", "Update DETAILS and SUBPROCESS names"),
("0.1.5", "2016-11-18", "Ruth Petrie", "Update based on discussions with Martin Vancoppenolle (IPSL)"),
("0.1.6", "2016-11-23", "Ruth Petrie", "Update based on discussions with Alexandra Jahn (University of Colorado)"),
("0.1.7", "2017-11-21", "Ruth Petrie", "Update based on community feedback"),
("0.1.8", "2017-11-23", "Ruth Petrie", "Include ice floe-size distribution"),
("1.0.0", "2017-12-4", "Ruth Petrie", "Include section on parameter values, first completed revision"),
("1.0.1", "2018-3-19", "Ruth Petrie", "Add in space for parameter values in key properties."),
("1.0.2", "2018-04-04", "David Hassell", "Replaced some occurences of 'str' with 'cs-str' and 'l-str'"),
("1.0.3", "2018-11-30", "Ruth Petrie", "Updates based on feedback from Martin Vancoppenolle"),
]
# --------------------------------------------------------------------
# CMIP5_MAPPINGS_SYNCED_AT: Latest version that has been synced with CMIP5 mappings.
# --------------------------------------------------------------------
CMIP5_MAPPINGS_SYNCED_AT = "0.1.8"
# --------------------------------------------------------------------
# DESCRIPTION: Scientific context of this scientific realm
# --------------------------------------------------------------------
DESCRIPTION = 'Sea ice'
# --------------------------------------------------------------------
# REALM: Canonical name for the domain of this scientific realm
# --------------------------------------------------------------------
REALM = 'seaice'
# --------------------------------------------------------------------
# KEY PROPERTIES: Key properties for the realm which differ from model defaults (grid, timestep etc)
# --------------------------------------------------------------------
KEY_PROPERTIES = 'seaice_key_properties'
# --------------------------------------------------------------------
# GRID: The grid used to layout the variables
# --------------------------------------------------------------------
GRID = 'seaice_grid'
# --------------------------------------------------------------------
# PROCESSES: Processes simulated within the realm
# --------------------------------------------------------------------
PROCESSES = [
'seaice_dynamics',
'seaice_thermodynamics',
'seaice_radiative_processes',
]