-
Notifications
You must be signed in to change notification settings - Fork 0
/
atmos_radiation.py
475 lines (436 loc) · 18.9 KB
/
atmos_radiation.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
"""
A realm 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 = 'Characteristics of the atmosphere radiation process'
# --------------------------------------------------------------------
# PROCESS: top level properties
# --------------------------------------------------------------------
DETAILS['toplevel'] = {
'description': "Radiative agents in the atmosphere",
'properties': [
('aerosols', 'ENUM:aerosol_types', '1.N',
'Aerosols whose radiative effect is taken into account in the atmosphere model'),
]
}
# --------------------------------------------------------------------
# SUB-PROCESS: shortwave_radiation
# --------------------------------------------------------------------
DETAILS['shortwave_radiation'] = {
'description': 'Properties of the shortwave radiation scheme',
'properties': [
('name', 'str', '0.1',
'Commonly used name for the shortwave radiation scheme'),
('spectral_integration', 'ENUM:spectral_integration', '1.1',
'Shortwave radiation scheme spectral integration'),
('transport_calculation', 'ENUM:transport_calculation', '1.N',
'Shortwave radiation transport calculation methods'),
('spectral_intervals', 'int', '1.1',
'Shortwave radiation scheme number of spectral intervals'),
('general_interactions', 'ENUM:radiative_interactions', '1.N',
'General radiative interactions e.g. with aerosols, cloud ice and cloud water '),
]
}
# --------------------------------------------------------------------
# SUB-PROCESS: shortwave_GHG
# --------------------------------------------------------------------
DETAILS['shortwave_GHG'] = {
'description': 'Representation of greenhouse gases in the shortwave radiation scheme',
'properties': [
('greenhouse_gas_complexity', 'ENUM:ghg_types', '1.N',
'Complexity of greenhouse gases whose shortwave radiative effects are taken into account '
'in the atmosphere model'),
('ODS', 'ENUM:ODS', '0.N',
'Ozone depleting substances whose shortwave radiative effects are explicitly taken into account '
'in the atmosphere model'),
('other_flourinated_gases', 'ENUM:other_fluorinated_gases', '0.N',
'Other flourinated gases whose shortwave radiative effects are explicitly taken into account '
'in the atmosphere model'),
]
}
# --------------------------------------------------------------------
# SUB-PROCESS: shortwave_cloud_ice
# --------------------------------------------------------------------
DETAILS['shortwave_cloud_ice'] = {
'description': 'Shortwave radiative properties of ice crystals in clouds',
'properties': [
('physical_representation', 'ENUM:cloud_ice_physical_representation', '1.N',
'Physical representation of cloud ice crystals in the shortwave radiation scheme'),
('optical_methods', 'ENUM:optical_methods', '1.N',
'Optical methods applicable to cloud ice crystals in the shortwave radiation scheme'),
]
}
# --------------------------------------------------------------------
# SUB-PROCESS: shortwave_cloud_liquid
# --------------------------------------------------------------------
DETAILS['shortwave_cloud_liquid'] = {
'description': 'Shortwave radiative properties of liquid droplets in clouds',
'properties': [
('physical_representation', 'ENUM:cloud_liquid_physical_representation', '1.N',
'Physical representation of cloud liquid droplets in the shortwave radiation scheme'),
('optical_methods', 'ENUM:optical_methods_droplets', '1.N',
'Optical methods applicable to cloud liquid droplets in the shortwave radiation scheme'),
]
}
# --------------------------------------------------------------------
# SUB-PROCESS: shortwave_cloud_inhomogeneity
# --------------------------------------------------------------------
DETAILS['shortwave_cloud_inhomogeneity'] = {
'description': 'Cloud inhomogeneity in the shortwave radiation scheme',
'properties': [
('cloud_inhomogeneity', 'ENUM:inhomogeneity_treatment', '1.1',
'Method for taking into account horizontal cloud inhomogeneity'),
]
}
# --------------------------------------------------------------------
# SUB-PROCESS: shortwave_aerosols
# --------------------------------------------------------------------
DETAILS['shortwave_aerosols'] = {
'description': 'Shortwave radiative properties of aerosols',
'properties': [
('physical_representation', 'ENUM:aerosol_physical_representation', '1.N',
'Physical representation of aerosols in the shortwave radiation scheme'),
('optical_methods', 'ENUM:optical_methods', '1.N',
'Optical methods applicable to aerosols in the shortwave radiation scheme'),
]
}
# --------------------------------------------------------------------
# SUB-PROCESS: shortwave_gases
# --------------------------------------------------------------------
DETAILS['shortwave_gases'] = {
'description': 'Shortwave radiative properties of gases',
'properties': [
]
}
# --------------------------------------------------------------------
# SUB-PROCESS: longwave_radiation
# --------------------------------------------------------------------
DETAILS['longwave_radiation'] = {
'description': 'Properties of the longwave radiation scheme',
'properties': [
('name', 'str', '0.1',
'Commonly used name for the longwave radiation scheme.'),
('spectral_integration', 'ENUM:spectral_integration', '1.1',
'Longwave radiation scheme spectral integration'),
('transport_calculation', 'ENUM:transport_calculation', '1.N',
'Longwave radiation transport calculation methods'),
('spectral_intervals', 'int', '1.1',
'Longwave radiation scheme number of spectral intervals'),
('general_interactions', 'ENUM:radiative_interactions', '1.N',
'General radiative interactions e.g. with aerosols, cloud ice and cloud water '),
]
}
# --------------------------------------------------------------------
# SUB-PROCESS: longwave_GHG
# --------------------------------------------------------------------
DETAILS['longwave_GHG'] = {
'description': 'Representation of greenhouse gases in the longwave radiation scheme',
'properties': [
('greenhouse_gas_complexity', 'ENUM:ghg_types', '1.N',
'Complexity of greenhouse gases whose longwave radiative effects are taken into account '
'in the atmosphere model'),
('ODS', 'ENUM:ODS', '0.N',
'Ozone depleting substances whose longwave radiative effects are explicitly taken into account '
'in the atmosphere model'),
('other_flourinated_gases', 'ENUM:other_fluorinated_gases', '0.N',
'Other flourinated gases whose longwave radiative effects are explicitly taken into account '
'in the atmosphere model'),
]
}
# --------------------------------------------------------------------
# SUB-PROCESS: longwave_cloud_ice
# --------------------------------------------------------------------
DETAILS['longwave_cloud_ice'] = {
'description': 'Longwave radiative properties of ice crystals in clouds',
'properties': [
('physical_reprenstation', 'ENUM:cloud_ice_physical_representation', '1.N',
'Physical representation of cloud ice crystals in the longwave radiation scheme'),
('optical_methods', 'ENUM:optical_methods', '1.N',
'Optical methods applicable to cloud ice crystals in the longwave radiation scheme'),
]
}
# --------------------------------------------------------------------
# SUB-PROCESS: longwave_cloud_liquid
# --------------------------------------------------------------------
DETAILS['longwave_cloud_liquid'] = {
'description': 'Longwave radiative properties of liquid droplets in clouds',
'properties': [
('physical_representation', 'ENUM:cloud_liquid_physical_representation', '1.N',
'Physical representation of cloud liquid droplets in the longwave radiation scheme'),
('optical_methods', 'ENUM:optical_methods_droplets', '1.N',
'Optical methods applicable to cloud liquid droplets in the longwave radiation scheme'),
]
}
# --------------------------------------------------------------------
# SUB-PROCESS: longwave_cloud_inhomogeneity
# --------------------------------------------------------------------
DETAILS['longwave_cloud_inhomogeneity'] = {
'description': 'Cloud inhomogeneity in the longwave radiation scheme',
'properties': [
('cloud_inhomogeneity', 'ENUM:inhomogeneity_treatment', '1.1',
'Method for taking into account horizontal cloud inhomogeneity'),
]
}
# --------------------------------------------------------------------
# SUB-PROCESS: longwave_aerosols
# --------------------------------------------------------------------
DETAILS['longwave_aerosols'] = {
'description': 'Longwave radiative properties of aerosols',
'properties': [
('physical_representation', 'ENUM:aerosol_physical_representation', '1.N',
'Physical representation of aerosols in the longwave radiation scheme'),
('optical_methods', 'ENUM:optical_methods', '1.N',
'Optical methods applicable to aerosols in the longwave radiation scheme'),
]
}
# --------------------------------------------------------------------
# SUB-PROCESS: longwave_gases
# --------------------------------------------------------------------
DETAILS['longwave_gases'] = {
'description': 'Longwave radiative properties of gases',
'properties': [
]
}
# --------------------------------------------------------------------
# PROCESS: ENUMERATIONS
# --------------------------------------------------------------------
ENUMERATIONS['aerosol_types'] = {
'description': 'Aerosols whose radiative effect is taken into account in the atmospheric model.',
'is_open': True,
'members': [
('sulphate', None),
('nitrate', None),
('sea salt', None),
('dust', None),
('ice', None),
('organic', None),
('BC', 'black carbon / soot'),
('SOA', 'secondary organic aerosols'),
('POM', 'particulate organic matter'),
('polar stratospheric ice', None),
('NAT', 'nitric acid trihydrate'),
('NAD', 'nitric acid dihydrate'),
('STS', 'supercooled ternary solution aerosol particle'),
]
}
ENUMERATIONS['ghg_types'] = {
'description': 'Greenhouse gases whose radiative effect is taken into account in the atmosphere model',
'is_open': True,
'members': [
('CO2', 'Carbon Dioxide'),
('CH4', 'Methane'),
('N2O', 'Nitrous Oxide'),
('CFC-11 eq', 'Summarize the effect of non CO2, CH4, N2O and CFC-12 gases '
'with an equivalence concentration of CFC-11'),
('CFC-12 eq', 'Summarize the radiative effect of the Ozone Depleating Substances, ODSs, '
'with a CFC-12 equivalence concentration'),
('HFC-134a eq', 'Summarize the radiative effect of other fluorinated gases '
'with a HFC-134a equivalence concentration'),
('Explicit ODSs', 'Explicit representation of Ozone Depleting Substances '
'e.g. CFCs, HCFCs and Halons'),
('Explicit other fluorinated gases', 'Explicit representation of other fluorinated gases '
'e.g. HFCs and PFCs'),
('O3', None),
('H2O', None),
]
}
ENUMERATIONS['ODS'] = {
'description': 'Ozone depleting substances, ODS, whose radiative effect is explicitly taken into account '
'in the atmosphere model',
'is_open': True,
'members': [
('CFC-12', 'CFC'),
('CFC-11', 'CFC'),
('CFC-113', 'CFC'),
('CFC-114', 'CFC'),
('CFC-115', 'CFC'),
('HCFC-22', 'HCFC'),
('HCFC-141b', 'HCFC'),
('HCFC-142b', 'HCFC'),
('Halon-1211', 'halon'),
('Halon-1301', 'halon'),
('Halon-2402', 'halon'),
('methyl chloroform', 'CH3CCl3'),
('carbon tetrachloride', 'CCl4'),
('methyl chloride', 'CH3Cl'),
('methylene chloride', 'CH2Cl2'),
('chloroform', 'CHCl3'),
('methyl bromide', 'Ch3Br'),
]
}
ENUMERATIONS['other_fluorinated_gases'] = {
'description': 'Other Fluorinated gases whose radiative effect is explicitly taken into account '
'in the atmosphere model',
'is_open': True,
'members': [
('HFC-134a', 'HFC'),
('HFC-23', 'HFC'),
('HFC-32', 'HFC'),
('HFC-125', 'HFC'),
('HFC-143a', 'HFC'),
('HFC-152a', 'HFC'),
('HFC-227ea', 'HFC'),
('HFC-236fa', 'HFC'),
('HFC-245fa', 'HFC'),
('HFC-365mfc', 'HFC'),
('HFC-43-10mee', 'HFC'),
('CF4', 'PFC'),
('C2F6', 'PFC'),
('C3F8', 'PFC'),
('C4F10', 'PFC'),
('C5F12', 'PFC'),
('C6F14', 'PFC'),
('C7F16', 'PFC'),
('C8F18', 'PFC'),
('c-C4F8', 'PFC'),
('NF3', None),
('SF6', None),
('SO2F2', None),
]
}
ENUMERATIONS['spectral_integration'] = {
'description': 'Spectral integration of the radiation scheme',
'is_open': True,
'members': [
('wide-band model', None),
('correlated-k', None),
('exponential sum fitting', None),
]
}
ENUMERATIONS['transport_calculation'] = {
'description': 'Radiation transport calculation methods',
'is_open': True,
'members': [
('two-stream', None),
('layer interaction', None),
('bulk', 'highly parameterised methods that use bulk expressions'),
('adaptive', 'exploits spatial and temporal correlations in optical characteristics'),
('multi-stream', None)
]
}
ENUMERATIONS['radiative_interactions'] = {
'description': 'General radiative interactions',
'is_open': True,
'members': [
('emission/absorption,', None),
('scattering', None),
]
}
ENUMERATIONS['cloud_ice_physical_representation'] = {
'description': 'Physical representation of ice crystals in clouds',
'is_open': True,
'members': [
('bi-modal size distribution',
'small mode diameters: a few tens of microns, large mode diameters: typically hundreds of microns'),
('ensemble of ice crystals', 'complex shapes represented with an ensemble of symmetric shapes'),
('mean projected area',
'randomly oriented irregular ice crystals present a greater mean projected area than spheres'),
('ice water path', 'Integrated ice water path through the cloud kg m-2',),
('crystal asymmetry', None),
('crystal aspect ratio', None),
('effective crystal radius', None),
]
}
ENUMERATIONS['cloud_liquid_physical_representation'] = {
'description': 'Physical_radiative representation of liquid droplets in clouds',
'is_open': True,
'members': [
('cloud droplet number concentration', 'CDNC'),
('effective cloud droplet radii', None),
('droplet size distribution', None),
('liquid water path', 'Integrated liquid water path through the cloud kg m-2',),
]
}
ENUMERATIONS['aerosol_physical_representation'] = {
'description': 'Physical radiative representation of aerosols',
'is_open': True,
'members': [
('number concentration', None),
('effective radii', None),
('size distribution', None),
('asymmetry', None),
('aspect ratio', None),
('mixing state', 'For shortwave radiative interaction'),
]
}
ENUMERATIONS['optical_methods'] = {
'description': 'Optical methods used by radiation scheme',
'is_open': True,
'members': [
('T-matrix', 'For non-spherical particles'),
('geometric optics', 'For non-spherical particles'),
('finite difference time domain (FDTD)', 'For non-spherical particles'),
('Mie theory', 'For spherical particles'),
('anomalous diffraction approximation', None),
]
}
ENUMERATIONS['optical_methods_droplets'] = {
'description': 'Optical methods used by radiation scheme',
'is_open': True,
'members': [
('geometric optics', 'For non-spherical particles'),
('Mie theory', 'For spherical particles'),
]
}
ENUMERATIONS['cloud_ice_radiation_processes'] = {
'description': 'Optical radiative processes for ice crystals in clouds',
'is_open': True,
'members': [
('emissivity', None),
('absorption', None),
('backward scattering', None),
('side scattering', None),
]
}
ENUMERATIONS['cloud_liquid_radiation_processes'] = {
'description': 'Optical radiative processes for liquid droplets in clouds',
'is_open': True,
'members': [
('droplet scattering', None),
('droplet absorption', None),
('broadband reflectivity', 'albedo'),
('broadband transmissivity', None),
('broadband absorbtivity', None),
]
}
ENUMERATIONS['shortwave_scheme_type'] = {
'description': 'Type of scheme used for shortwave radiation parameterisation',
'is_open': True,
'members': [
('wide-band model', None),
('bulk-scheme', 'highly parameterised methods that use bulk expressions'),
('two-stream', None),
('two-stream (delta-Eddington)', 'approximation for solar radiation calculations'),
]
}
ENUMERATIONS['single_scattering_properties_methods'] = {
'description': 'Methods for calculating single scattering properties of atmospheric constituents',
'is_open': True,
'members': [
('T-Matrix', 'an exact method'),
('geometrical optics', 'for particles that are much larger than the wavelength of light'),
('finite difference time domain', 'FDTD'),
('anomalous diffraction approximation', 'ADA'),
('k-distribution', None),
('band model', None),
('exponential sum fitting', None),
]
}
ENUMERATIONS['inhomogeneity_treatment'] = {
'description': 'Cloud scheme inhomogeneity treatment',
'is_open': True,
'members': [
('Monte Carlo Independent Column Approximation', 'McICA'),
('Triplecloud', 'Regions of clear sky, optically thin cloud and optically thick cloud, Shonk et al 2010'),
('analytic', None),
]
}