-
Notifications
You must be signed in to change notification settings - Fork 0
/
aerosol_emissions.py
96 lines (87 loc) · 3.74 KB
/
aerosol_emissions.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
"""A process specialization.
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 = 'Atmospheric aerosol emissions'
# --------------------------------------------------------------------
# PROCESS: top level
# --------------------------------------------------------------------
DETAILS['toplevel'] = {
'description': 'Properties of aerosol emissions',
'properties': [
('method', 'ENUM:emissions_methods', '1.N',
'Method used to define aerosol species (several methods allowed because the different species may not use the same method).'),
('sources', 'ENUM:surface_source_types', '0.N',
'Sources of the aerosol species are taken into account in the emissions scheme'),
('prescribed_climatology', 'ENUM:prescribed_climatology_type', '0.1',
'Specify the climatology type for aerosol emissions'),
('prescribed_climatology_emitted_species', 'cs-str', '0.1',
'List of aerosol species emitted and prescribed via a climatology'),
('prescribed_spatially_uniform_emitted_species', 'cs-str', '0.1',
'List of aerosol species emitted and prescribed as spatially uniform'),
('interactive_emitted_species', 'cs-str', '0.1',
'List of aerosol species emitted and specified via an interactive method'),
('other_emitted_species', 'cs-str', '0.1',
'List of aerosol species emitted and specified via an "other method"'),
('other_method_characteristics', 'str', '0.1',
'Characteristics of the "other method" used for aerosol emissions'),
],
}
# --------------------------------------------------------------------
# ENUMERATIONS
# --------------------------------------------------------------------
ENUMERATIONS['prescribed_climatology_type'] = {
'description': 'Specify the climatology type for aerosol emissions',
'is_open': False,
'members': [
('Constant', None),
('Interannual', None),
('Annual', None),
('Monthly', None),
('Daily', None),
]
}
ENUMERATIONS['surface_source_types'] = {
'description':'Sources of the aerosol species emitted at the surface that are taken into account in the emissions scheme',
'is_open': True,
'members':[
('Vegetation', None),
('Volcanos', None),
('Bare ground', None),
('Sea surface', None),
('Lightning', None),
('Fires', None),
('Aircraft', None),
('Anthropogenic', None),
]
}
ENUMERATIONS['atmospheric_source_types'] = {
'description':'Sources of the aerosol species emitted in the atmosphere that are taken into account in the emissions scheme',
'is_open': True,
'members':[
('Aircraft', None),
('Biomass burning', None),
('Lightning', None),
('Volcanos', None),
]
}
ENUMERATIONS['emissions_methods'] = {
'description': 'Method used to define aerosol species emitted (several methods allowed because the different species may not use the same method).',
'is_open': True,
'members':[
('None', None),
('Prescribed (climatology)', None),
('Prescribed CMIP6', None),
('Prescribed above surface', None),
('Interactive', None),
('Interactive above surface', None),
]
}