-
Notifications
You must be signed in to change notification settings - Fork 0
/
_atmos.json
4363 lines (4363 loc) · 224 KB
/
_atmos.json
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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"label": "Atmos",
"description": "Atmosphere",
"id": "cmip6.atmos",
"contact": "Charlotte Pascoe",
"processes": [
{
"label": "Dynamical Core",
"description": "Characteristics of the dynamical core",
"id": "cmip6.atmos.dynamical_core",
"contact": "Charlotte Pascoe",
"properties": [
{
"label": "Name",
"description": "Commonly used name for the dynamical core in atmos model.",
"id": "cmip6.atmos.dynamical_core.name",
"cardinality": "0.1",
"type": "str",
"is_cim_property": true,
"uiOrdinal": 1
},
{
"label": "Overview",
"description": "Overview of characteristics of the dynamical core in atmos model.",
"id": "cmip6.atmos.dynamical_core.overview",
"cardinality": "0.1",
"type": "l-str",
"is_cim_property": true,
"uiOrdinal": 2
},
{
"label": "Timestepping Type",
"description": "Timestepping framework type",
"id": "cmip6.atmos.dynamical_core.timestepping_type",
"cardinality": "1.1",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Timestepping Type",
"description": "Type of time stepping scheme",
"isOpen": true,
"choices": [
{
"label": "Adams-Bashforth",
"description": null
},
{
"label": "explicit",
"description": null
},
{
"label": "implicit",
"description": null
},
{
"label": "semi-implicit",
"description": null
},
{
"label": "leap frog",
"description": null
},
{
"label": "multi-step",
"description": null
},
{
"label": "Runge Kutta fifth order",
"description": null
},
{
"label": "Runge Kutta second order",
"description": null
},
{
"label": "Runge Kutta third order",
"description": null
}
]
},
"uiOrdinal": 3
},
{
"label": "Prognostic Variables",
"description": "List of the model prognostic variables",
"id": "cmip6.atmos.dynamical_core.prognostic_variables",
"cardinality": "1.N",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Prognostic Variables",
"description": "List of the model prognostic variables",
"isOpen": true,
"choices": [
{
"label": "surface pressure",
"description": null
},
{
"label": "wind components",
"description": null
},
{
"label": "divergence/curl",
"description": null
},
{
"label": "temperature",
"description": null
},
{
"label": "potential temperature",
"description": null
},
{
"label": "total water",
"description": null
},
{
"label": "water vapour",
"description": null
},
{
"label": "water liquid",
"description": null
},
{
"label": "water ice",
"description": null
},
{
"label": "total water moments",
"description": null
},
{
"label": "clouds",
"description": null
},
{
"label": "radiation",
"description": null
}
]
},
"uiOrdinal": 4
}
],
"subProcesses": [
{
"label": "Top Boundary",
"description": "Type of boundary layer at the top of the model",
"id": "cmip6.atmos.dynamical_core.top_boundary",
"contact": "Charlotte Pascoe",
"properties": [
{
"label": "Top Boundary Condition",
"description": "Top boundary condition",
"id": "cmip6.atmos.dynamical_core.top_boundary.top_boundary_condition",
"cardinality": "1.1",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Top Boundary Condition",
"description": "Type of boundary layer at the top of the model",
"isOpen": true,
"choices": [
{
"label": "sponge layer",
"description": null
},
{
"label": "radiation boundary condition",
"description": null
}
]
},
"uiOrdinal": 1
},
{
"label": "Top Heat",
"description": "Top boundary heat treatment",
"id": "cmip6.atmos.dynamical_core.top_boundary.top_heat",
"cardinality": "1.1",
"type": "str",
"is_cim_property": false,
"uiOrdinal": 2
},
{
"label": "Top Wind",
"description": "Top boundary wind treatment",
"id": "cmip6.atmos.dynamical_core.top_boundary.top_wind",
"cardinality": "1.1",
"type": "str",
"is_cim_property": false,
"uiOrdinal": 3
}
]
},
{
"label": "Lateral Boundary",
"description": "Type of lateral boundary condition (if the model is a regional model)",
"id": "cmip6.atmos.dynamical_core.lateral_boundary",
"contact": "Charlotte Pascoe",
"properties": [
{
"label": "Condition",
"description": "Type of lateral boundary condition",
"id": "cmip6.atmos.dynamical_core.lateral_boundary.condition",
"cardinality": "0.1",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Lateral Boundary",
"description": "Type of lateral boundary condition (if the model is a regional model)",
"isOpen": true,
"choices": [
{
"label": "sponge layer",
"description": null
},
{
"label": "radiation boundary condition",
"description": null
}
]
},
"uiOrdinal": 1
}
]
},
{
"label": "Diffusion Horizontal",
"description": "Horizontal diffusion scheme",
"id": "cmip6.atmos.dynamical_core.diffusion_horizontal",
"contact": "Charlotte Pascoe",
"properties": [
{
"label": "Scheme Name",
"description": "Horizontal diffusion scheme name",
"id": "cmip6.atmos.dynamical_core.diffusion_horizontal.scheme_name",
"cardinality": "0.1",
"type": "str",
"is_cim_property": false,
"uiOrdinal": 1
},
{
"label": "Scheme Method",
"description": "Horizontal diffusion scheme method",
"id": "cmip6.atmos.dynamical_core.diffusion_horizontal.scheme_method",
"cardinality": "1.1",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Diffusion Horizontal Scheme Method",
"description": "Numerical method used by the horizontal diffusion scheme",
"isOpen": true,
"choices": [
{
"label": "iterated Laplacian",
"description": null
},
{
"label": "bi-harmonic",
"description": null
}
]
},
"uiOrdinal": 2
}
]
},
{
"label": "Advection",
"description": "Dynamical core advection",
"id": "cmip6.atmos.dynamical_core.advection",
"contact": "Charlotte Pascoe",
"propertySets": [
{
"label": "Tracers",
"description": "Tracer advection scheme",
"id": "cmip6.atmos.dynamical_core.advection.tracers",
"properties": [
{
"label": "Scheme Name",
"description": "Tracer advection scheme name",
"id": "cmip6.atmos.dynamical_core.advection.tracers.scheme_name",
"cardinality": "0.1",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Advection Tracers Scheme Name",
"description": "Commonly used name for the tracer advection scheme",
"isOpen": true,
"choices": [
{
"label": "Heun",
"description": null
},
{
"label": "Roe and VanLeer",
"description": null
},
{
"label": "Roe and Superbee",
"description": null
},
{
"label": "Prather",
"description": null
},
{
"label": "UTOPIA",
"description": null
}
]
},
"uiOrdinal": 1
},
{
"label": "Scheme Characteristics",
"description": "Tracer advection scheme characteristics",
"id": "cmip6.atmos.dynamical_core.advection.tracers.scheme_characteristics",
"cardinality": "1.N",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Advection Tracers Scheme Characteristics",
"description": "Characteristics of the numerical scheme used for the advection of tracers",
"isOpen": true,
"choices": [
{
"label": "Eulerian",
"description": null
},
{
"label": "modified Euler",
"description": null
},
{
"label": "Lagrangian",
"description": null
},
{
"label": "semi-Lagrangian",
"description": null
},
{
"label": "cubic semi-Lagrangian",
"description": null
},
{
"label": "quintic semi-Lagrangian",
"description": null
},
{
"label": "mass-conserving",
"description": null
},
{
"label": "finite volume",
"description": null
},
{
"label": "flux-corrected",
"description": null
},
{
"label": "linear",
"description": null
},
{
"label": "quadratic",
"description": null
},
{
"label": "quartic",
"description": null
}
]
},
"uiOrdinal": 2
},
{
"label": "Conserved Quantities",
"description": "Tracer advection scheme conserved quantities",
"id": "cmip6.atmos.dynamical_core.advection.tracers.conserved_quantities",
"cardinality": "1.N",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Advection Tracers Conserved Quantities",
"description": "Quantities conserved through the tracers advection scheme",
"isOpen": true,
"choices": [
{
"label": "dry mass",
"description": null
},
{
"label": "tracer mass",
"description": null
}
]
},
"uiOrdinal": 3
},
{
"label": "Conservation Method",
"description": "Tracer advection scheme conservation method",
"id": "cmip6.atmos.dynamical_core.advection.tracers.conservation_method",
"cardinality": "1.1",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Advection Tracers Conservation Method",
"description": "Method used to ensure conservation in the tracers advection scheme",
"isOpen": true,
"choices": [
{
"label": "conservation fixer",
"description": null
},
{
"label": "Priestley algorithm",
"description": null
}
]
},
"uiOrdinal": 4
}
]
},
{
"label": "Momentum",
"description": "Momentum advection scheme",
"id": "cmip6.atmos.dynamical_core.advection.momentum",
"properties": [
{
"label": "Scheme Name",
"description": "Momentum advection schemes name",
"id": "cmip6.atmos.dynamical_core.advection.momentum.scheme_name",
"cardinality": "0.1",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Advection Momentum Scheme Name",
"description": "Commonly used name for the momentum advection scheme",
"isOpen": true,
"choices": [
{
"label": "VanLeer",
"description": null
},
{
"label": "Janjic",
"description": null
},
{
"label": "SUPG (Streamline Upwind Petrov-Galerkin)",
"description": null
}
]
},
"uiOrdinal": 1
},
{
"label": "Scheme Characteristics",
"description": "Momentum advection scheme characteristics",
"id": "cmip6.atmos.dynamical_core.advection.momentum.scheme_characteristics",
"cardinality": "1.N",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Advection Momentum Scheme Characteristics",
"description": "Characteristics of the numerical scheme used for the advection of momentum",
"isOpen": true,
"choices": [
{
"label": "2nd order",
"description": null
},
{
"label": "4th order",
"description": null
},
{
"label": "cell-centred",
"description": null
},
{
"label": "staggered grid",
"description": null
},
{
"label": "semi-staggered grid",
"description": null
}
]
},
"uiOrdinal": 2
},
{
"label": "Scheme Staggering Type",
"description": "Momentum advection scheme staggering type",
"id": "cmip6.atmos.dynamical_core.advection.momentum.scheme_staggering_type",
"cardinality": "1.1",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Advection Momentum Scheme Staggering Type",
"description": "If scheme characteristics specify staggered grid, describe the type of staggering",
"isOpen": true,
"choices": [
{
"label": "Arakawa B-grid",
"description": null
},
{
"label": "Arakawa C-grid",
"description": null
},
{
"label": "Arakawa D-grid",
"description": null
},
{
"label": "Arakawa E-grid",
"description": null
}
]
},
"uiOrdinal": 3
},
{
"label": "Conserved Quantities",
"description": "Momentum advection scheme conserved quantities",
"id": "cmip6.atmos.dynamical_core.advection.momentum.conserved_quantities",
"cardinality": "1.N",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Advection Momentum Conserved Quantities",
"description": "Quantities conserved through the tracers advection scheme",
"isOpen": true,
"choices": [
{
"label": "Angular momentum",
"description": null
},
{
"label": "Horizontal momentum",
"description": null
},
{
"label": "Enstrophy",
"description": null
},
{
"label": "Mass",
"description": null
},
{
"label": "Total energy",
"description": null
},
{
"label": "Vorticity",
"description": null
}
]
},
"uiOrdinal": 4
},
{
"label": "Conservation Method",
"description": "Momentum advection scheme conservation method",
"id": "cmip6.atmos.dynamical_core.advection.momentum.conservation_method",
"cardinality": "1.1",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Advection Momentum Conservation Method",
"description": "Method used to ensure conservation in the momentum advection scheme",
"isOpen": true,
"choices": [
{
"label": "conservation fixer",
"description": null
}
]
},
"uiOrdinal": 5
}
]
}
]
}
]
},
{
"label": "Radiation",
"description": "Characteristics of the atmosphere radiation process",
"id": "cmip6.atmos.radiation",
"contact": "Charlotte Pascoe",
"properties": [
{
"label": "Name",
"description": "Commonly used name for the radiation in atmos model.",
"id": "cmip6.atmos.radiation.name",
"cardinality": "0.1",
"type": "str",
"is_cim_property": true,
"uiOrdinal": 1
},
{
"label": "Overview",
"description": "Overview of characteristics of the atmosphere radiation process in atmos model.",
"id": "cmip6.atmos.radiation.overview",
"cardinality": "0.1",
"type": "l-str",
"is_cim_property": true,
"uiOrdinal": 2
},
{
"label": "Aerosols",
"description": "Aerosols whose radiative effect is taken into account in the atmosphere model",
"id": "cmip6.atmos.radiation.aerosols",
"cardinality": "1.N",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Aerosol Types",
"description": "Aerosols whose radiative effect is taken into account in the atmospheric model.",
"isOpen": true,
"choices": [
{
"label": "sulphate",
"description": null
},
{
"label": "nitrate",
"description": null
},
{
"label": "sea salt",
"description": null
},
{
"label": "dust",
"description": null
},
{
"label": "ice",
"description": null
},
{
"label": "organic",
"description": null
},
{
"label": "BC",
"description": "black carbon / soot"
},
{
"label": "SOA",
"description": "secondary organic aerosols"
},
{
"label": "POM",
"description": "particulate organic matter"
},
{
"label": "polar stratospheric ice",
"description": null
},
{
"label": "NAT",
"description": "nitric acid trihydrate"
},
{
"label": "NAD",
"description": "nitric acid dihydrate"
},
{
"label": "STS",
"description": "supercooled ternary solution aerosol particle"
}
]
},
"uiOrdinal": 3
}
],
"subProcesses": [
{
"label": "Shortwave Radiation",
"description": "Properties of the shortwave radiation scheme",
"id": "cmip6.atmos.radiation.shortwave_radiation",
"contact": "Charlotte Pascoe",
"properties": [
{
"label": "Name",
"description": "Commonly used name for the shortwave radiation scheme",
"id": "cmip6.atmos.radiation.shortwave_radiation.name",
"cardinality": "0.1",
"type": "str",
"is_cim_property": false,
"uiOrdinal": 1
},
{
"label": "Spectral Integration",
"description": "Shortwave radiation scheme spectral integration",
"id": "cmip6.atmos.radiation.shortwave_radiation.spectral_integration",
"cardinality": "1.1",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Spectral Integration",
"description": "Spectral integration of the radiation scheme",
"isOpen": true,
"choices": [
{
"label": "wide-band model",
"description": null
},
{
"label": "correlated-k",
"description": null
},
{
"label": "exponential sum fitting",
"description": null
}
]
},
"uiOrdinal": 2
},
{
"label": "Transport Calculation",
"description": "Shortwave radiation transport calculation methods",
"id": "cmip6.atmos.radiation.shortwave_radiation.transport_calculation",
"cardinality": "1.N",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Transport Calculation",
"description": "Radiation transport calculation methods",
"isOpen": true,
"choices": [
{
"label": "two-stream",
"description": null
},
{
"label": "layer interaction",
"description": null
},
{
"label": "bulk",
"description": "highly parameterised methods that use bulk expressions"
},
{
"label": "adaptive",
"description": "exploits spatial and temporal correlations in optical characteristics"
},
{
"label": "multi-stream",
"description": null
}
]
},
"uiOrdinal": 3
},
{
"label": "Spectral Intervals",
"description": "Shortwave radiation scheme number of spectral intervals",
"id": "cmip6.atmos.radiation.shortwave_radiation.spectral_intervals",
"cardinality": "1.1",
"type": "int",
"is_cim_property": false,
"uiOrdinal": 4
},
{
"label": "General Interactions",
"description": "General radiative interactions e.g. with aerosols, cloud ice and cloud water ",
"id": "cmip6.atmos.radiation.shortwave_radiation.general_interactions",
"cardinality": "1.N",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Radiative Interactions",
"description": "General radiative interactions",
"isOpen": true,
"choices": [
{
"label": "emission/absorption,",
"description": null
},
{
"label": "scattering",
"description": null
}
]
},
"uiOrdinal": 5
}
]
},
{
"label": "Shortwave GHG",
"description": "Representation of greenhouse gases in the shortwave radiation scheme",
"id": "cmip6.atmos.radiation.shortwave_GHG",
"contact": "Charlotte Pascoe",
"properties": [
{
"label": "Greenhouse Gas Complexity",
"description": "Complexity of greenhouse gases whose shortwave radiative effects are taken into account in the atmosphere model",
"id": "cmip6.atmos.radiation.shortwave_GHG.greenhouse_gas_complexity",
"cardinality": "1.N",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Ghg Types",
"description": "Greenhouse gases whose radiative effect is taken into account in the atmosphere model",
"isOpen": true,
"choices": [
{
"label": "CO2",
"description": "Carbon Dioxide"
},
{
"label": "CH4",
"description": "Methane"
},
{
"label": "N2O",
"description": "Nitrous Oxide"
},
{
"label": "CFC-11 eq",
"description": "Summarize the effect of non CO2, CH4, N2O and CFC-12 gases with an equivalence concentration of CFC-11"
},
{
"label": "CFC-12 eq",
"description": "Summarize the radiative effect of the Ozone Depleating Substances, ODSs, with a CFC-12 equivalence concentration"
},
{
"label": "HFC-134a eq",
"description": "Summarize the radiative effect of other fluorinated gases with a HFC-134a equivalence concentration"
},
{
"label": "Explicit ODSs",
"description": "Explicit representation of Ozone Depleting Substances e.g. CFCs, HCFCs and Halons"
},
{
"label": "Explicit other fluorinated gases",
"description": "Explicit representation of other fluorinated gases e.g. HFCs and PFCs"
},
{
"label": "O3",
"description": null
},
{
"label": "H2O",
"description": null
}
]
},
"uiOrdinal": 1
},
{
"label": "ODS",
"description": "Ozone depleting substances whose shortwave radiative effects are explicitly taken into account in the atmosphere model",
"id": "cmip6.atmos.radiation.shortwave_GHG.ODS",
"cardinality": "0.N",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "ODS",
"description": "Ozone depleting substances, ODS, whose radiative effect is explicitly taken into account in the atmosphere model",
"isOpen": true,
"choices": [
{
"label": "CFC-12",
"description": "CFC"
},
{
"label": "CFC-11",
"description": "CFC"
},
{
"label": "CFC-113",
"description": "CFC"
},
{
"label": "CFC-114",
"description": "CFC"
},
{
"label": "CFC-115",
"description": "CFC"
},
{
"label": "HCFC-22",
"description": "HCFC"
},
{
"label": "HCFC-141b",
"description": "HCFC"
},
{
"label": "HCFC-142b",
"description": "HCFC"
},
{
"label": "Halon-1211",
"description": "halon"
},
{
"label": "Halon-1301",
"description": "halon"
},
{
"label": "Halon-2402",
"description": "halon"
},
{
"label": "methyl chloroform",
"description": "CH3CCl3"
},
{
"label": "carbon tetrachloride",
"description": "CCl4"
},
{
"label": "methyl chloride",
"description": "CH3Cl"
},
{
"label": "methylene chloride",
"description": "CH2Cl2"
},
{
"label": "chloroform",
"description": "CHCl3"
},
{
"label": "methyl bromide",
"description": "Ch3Br"
}
]
},
"uiOrdinal": 2
},
{
"label": "Other Flourinated Gases",
"description": "Other flourinated gases whose shortwave radiative effects are explicitly taken into account in the atmosphere model",
"id": "cmip6.atmos.radiation.shortwave_GHG.other_flourinated_gases",
"cardinality": "0.N",
"type": "enum",
"is_cim_property": false,
"enum": {
"label": "Other Fluorinated Gases",
"description": "Other Fluorinated gases whose radiative effect is explicitly taken into account in the atmosphere model",
"isOpen": true,
"choices": [
{
"label": "HFC-134a",
"description": "HFC"
},
{
"label": "HFC-23",
"description": "HFC"
},
{
"label": "HFC-32",
"description": "HFC"
},
{
"label": "HFC-125",
"description": "HFC"
},
{
"label": "HFC-143a",
"description": "HFC"
},
{
"label": "HFC-152a",
"description": "HFC"
},
{
"label": "HFC-227ea",
"description": "HFC"
},
{
"label": "HFC-236fa",
"description": "HFC"
},
{
"label": "HFC-245fa",
"description": "HFC"