-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaerosol_concentrations.py
38 lines (32 loc) · 1.51 KB
/
aerosol_concentrations.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
"""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 concentrations'
# --------------------------------------------------------------------
# PROCESS: top level
# --------------------------------------------------------------------
DETAILS['toplevel'] = {
'description': 'Properties of aerosol concentrations',
'properties': [
('prescribed_lower_boundary', 'cs-str', '0.1',
'List of species prescribed at the lower boundary.'),
('prescribed_upper_boundary', 'cs-str', '0.1',
'List of species prescribed at the upper boundary.'),
('prescribed_fields_mmr', 'cs-str', '0.1',
'List of species prescribed as mass mixing ratios.'),
('prescribed_fields_aod_plus_ccn', 'cs-str', '0.1',
'List of species prescribed as AOD plus CCNs.'),
],
}
# --------------------------------------------------------------------
# ENUMERATIONS
# --------------------------------------------------------------------