-
Notifications
You must be signed in to change notification settings - Fork 0
/
seaice_radiative_processes.py
53 lines (47 loc) · 1.95 KB
/
seaice_radiative_processes.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
"""
A realm process 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()
# --------------------------------------------------------------------
# DESCRIPTION: Short description of the specialization.
# --------------------------------------------------------------------
DESCRIPTION = 'Sea Ice Radiative Processes'
# --------------------------------------------------------------------
# PROCESS: top level properties
# --------------------------------------------------------------------
DETAILS['toplevel'] = {
'description': "Radiative processes in sea ice.",
'properties': [
('surface_albedo', 'ENUM:seaice_albedo', '1.1',
"Method used to handle surface albedo?"),
('ice_radiation_transmission', 'ENUM:ice_transmission', '1.N',
"Method by which solar radiation through sea ice is handled?"),
]
}
# --------------------------------------------------------------------
# PROCESS: ENUMERATIONS
# --------------------------------------------------------------------
ENUMERATIONS['seaice_albedo'] = {
'description': "Surface albedo of sea ice component.",
'is_open': True,
'members': [
('Delta-Eddington', None),
('Parameterized', 'Sea ice albedo is parameterized.'),
('Multi-band albedo', 'Albedo value has a spectral dependence.'),
]
}
ENUMERATIONS['ice_transmission'] = {
'description': "Ice radiative transmission.",
'is_open': True,
'members': [
('Delta-Eddington', None),
('Exponential attenuation', None),
('Ice radiation transmission per category', 'Radiation transmission through ice is different for each sea ice category.')
]
}