-
Notifications
You must be signed in to change notification settings - Fork 0
/
_aerosol.mm
1996 lines (1996 loc) · 129 KB
/
_aerosol.mm
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
<map><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" FOLDED="false" STYLE="fork" TEXT="aerosol"><font BOLD="True" NAME="courier" SIZE="14" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Atmospheric aerosols</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol</dd><dt><b>Contact</b></dt><dd>David Hassell</dd><dt><b>Authors</b></dt><dd>David Hassell</dd><dt><b>Contributors</b></dt><dd>CMIP5 version, Yves Balkanski (LSCE), Michael Schulz (MET Norway)</dd>
</dl>
</body>
</html></richcontent><node FOLDED="true" POSITION="left" STYLE="bubble" TEXT="CHANGE HISTORY"><node STYLE="bubble" TEXT="0.1.0"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>0.1.0</dd><dt><b>Date</b></dt><dd>2017-08-04</dd><dt><b>Person</b></dt><dd>Charlotte Pascoe (NCAS), David Hassell (NCAS)</dd><dt><b>Comment</b></dt><dd>Initialised from CMIP5</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="0.2.0"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>0.2.0</dd><dt><b>Date</b></dt><dd>2017-12-18</dd><dt><b>Person</b></dt><dd>David Hassell (NCAS)</dd><dt><b>Comment</b></dt><dd>Updated with input from Yves Balkanski (LSCE) and Michael Schulz (MET Norway)</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="1.0.0"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>1.0.0</dd><dt><b>Date</b></dt><dd>2018-03-06</dd><dt><b>Person</b></dt><dd>David Hassell (NCAS)</dd><dt><b>Comment</b></dt><dd>Copied grid from atmoschem</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="1.0.1"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>1.0.1</dd><dt><b>Date</b></dt><dd>2018-04-04</dd><dt><b>Person</b></dt><dd>David Hassell (NCAS)</dd><dt><b>Comment</b></dt><dd>Replaced some 'occurences of str' with 'cs-str' and 'l-str'</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="1.0.2"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>1.0.2</dd><dt><b>Date</b></dt><dd>2018-04-10</dd><dt><b>Person</b></dt><dd>David Hassell (NCAS)</dd><dt><b>Comment</b></dt><dd>Changed cardinality of is_adaptive_grid to 1.1, and fixed typos</dd>
</dl>
</body>
</html></richcontent></node><node STYLE="bubble" TEXT="1.0.2"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Version</b></dt><dd>1.0.2</dd><dt><b>Date</b></dt><dd>2018-04-04</dd><dt><b>Person</b></dt><dd>David Hassell</dd><dt><b>Comment</b></dt><dd>Removed some l-str</dd>
</dl>
</body>
</html></richcontent></node></node><node FOLDED="true" POSITION="left" STYLE="bubble" TEXT="LEGEND"><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="enum-choice"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>A choice within an enumeration.</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="grid"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>The grid used to layout the variables (e.g. the Global ENDGAME-grid).</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="keyprops"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Realm key properties which differ from model defaults (grid, timestep etc).</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="process"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Process simulated within the realm.</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" STYLE="bubble" TEXT="property"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>A property associated with a detail defined as a 4 member tuple: name, type, cardinality, description.</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#F3FFE2" COLOR="#000000" STYLE="bubble" TEXT="property-set"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Provides details of specific properties of a process, sub-process, key properties, etc. There are two possible specialisations expected: (1) A detail_vocabulary is identified, and a cardinality is assigned to that for possible responses; (2) Detail is used to provide a collection or a set of properties which are defined in the sub-class.</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="realm"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Scientific area of a numerical model.</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="subprocess"><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>A sub-process simulated within a realm process.</dd>
</dl>
</body>
</html></richcontent></node></node><node FOLDED="true" POSITION="left" STYLE="bubble" TEXT="DETAILS INHERITED FROM CIM"><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="grid"><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="citations" /><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="keywords" /><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="overview" /><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" STYLE="bubble" TEXT="responsible_parties" /></node><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="keyprops"><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="citations" /><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="keywords" /><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="overview" /><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" STYLE="bubble" TEXT="responsible_parties" /></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="process"><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="citations" /><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="keywords" /><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="overview" /><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" STYLE="bubble" TEXT="responsible_parties" /></node><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="realm"><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="canonical_name" /><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="citations" /><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="keywords" /><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="overview" /><node BACKGROUND_COLOR="#66cc00" COLOR="#000000" STYLE="bubble" TEXT="responsible_parties" /></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="subprocess"><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="citations" /><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="keywords" /><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="overview" /><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" STYLE="bubble" TEXT="responsible_parties" /></node></node><node BACKGROUND_COLOR="#ffff66" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="key_properties"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Key properties of the aerosol model</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="scheme_scope"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Atmospheric domains covered by the aerosol model</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.scheme_scope</dd><dt><b>Type</b></dt><dd>ENUM:scheme_scopes</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.scheme_scope</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Atmospheric domains covered by the aerosol model</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.scheme_scope</dd><dt><b>Type</b></dt><dd>ENUM:scheme_scopes</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.scheme_scope</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="troposphere"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>scheme_scopes.troposphere</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="stratosphere"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>scheme_scopes.stratosphere</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="mesosphere"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>scheme_scopes.mesosphere</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="whole atmosphere"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>scheme_scopes.whole atmosphere</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="basic_approximations"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Basic approximations made in the aerosol model</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.basic_approximations</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.basic_approximations</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Basic approximations made in the aerosol model</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.basic_approximations</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.basic_approximations</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="prognostic_variables_form"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Prognostic variables in the aerosol model</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.prognostic_variables_form</dd><dt><b>Type</b></dt><dd>ENUM:prognostic_vars_types</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.prognostic_variables_form</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Prognostic variables in the aerosol model</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.prognostic_variables_form</dd><dt><b>Type</b></dt><dd>ENUM:prognostic_vars_types</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.prognostic_variables_form</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="3D mass/volume ratio for aerosols"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>prognostic_vars_types.3D mass/volume ratio for aerosols</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="3D number concentration for aerosols"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>prognostic_vars_types.3D number concentration for aerosols</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="number_of_tracers"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Number of tracers in the aerosol model</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.number_of_tracers</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.number_of_tracers</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Number of tracers in the aerosol model</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.number_of_tracers</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.number_of_tracers</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="family_approach"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Are aerosol calculations generalized into families of species?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.family_approach</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.family_approach</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Are aerosol calculations generalized into families of species?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.family_approach</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.family_approach</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#F3FFE2" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="software_properties"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Software properties of aerosol code</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.software_properties</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="repository"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Location of code for this component.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.software_properties.repository</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.software_properties.repository</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Location of code for this component.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.software_properties.repository</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.software_properties.repository</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="code_version"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Code version identifier.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.software_properties.code_version</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.software_properties.code_version</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Code version identifier.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.software_properties.code_version</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.software_properties.code_version</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="code_languages"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Code language(s).</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.software_properties.code_languages</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.software_properties.code_languages</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Code language(s).</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.software_properties.code_languages</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.software_properties.code_languages</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="timestep_framework"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Physical properties of seawater in ocean</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="method"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Mathematical method deployed to solve the time evolution of the prognostic variables</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.method</dd><dt><b>Type</b></dt><dd>ENUM:timestepping_methods</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.method</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Mathematical method deployed to solve the time evolution of the prognostic variables</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.method</dd><dt><b>Type</b></dt><dd>ENUM:timestepping_methods</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.method</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Uses atmospheric chemistry time stepping"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>timestepping_methods.Uses atmospheric chemistry time stepping</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Specific timestepping (operator splitting)"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>timestepping_methods.Specific timestepping (operator splitting)</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Specific timestepping (integrated)"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>timestepping_methods.Specific timestepping (integrated)</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="split_operator_advection_timestep"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Timestep for aerosol advection (in seconds)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.split_operator_advection_timestep</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.split_operator_advection_timestep</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Timestep for aerosol advection (in seconds)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.split_operator_advection_timestep</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.split_operator_advection_timestep</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="split_operator_physical_timestep"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Timestep for aerosol physics (in seconds).</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.split_operator_physical_timestep</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.split_operator_physical_timestep</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Timestep for aerosol physics (in seconds).</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.split_operator_physical_timestep</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.split_operator_physical_timestep</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="integrated_timestep"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Timestep for the aerosol model (in seconds)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.integrated_timestep</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.integrated_timestep</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Timestep for the aerosol model (in seconds)</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.integrated_timestep</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.integrated_timestep</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="integrated_scheme_type"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Specify the type of timestep scheme</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.integrated_scheme_type</dd><dt><b>Type</b></dt><dd>ENUM:integrated_scheme_types</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.integrated_scheme_type</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Specify the type of timestep scheme</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.integrated_scheme_type</dd><dt><b>Type</b></dt><dd>ENUM:integrated_scheme_types</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.timestep_framework.integrated_scheme_type</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Explicit"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>integrated_scheme_types.Explicit</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Implicit"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>integrated_scheme_types.Implicit</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Semi-implicit"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>integrated_scheme_types.Semi-implicit</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Semi-analytic"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>integrated_scheme_types.Semi-analytic</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Impact solver"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>integrated_scheme_types.Impact solver</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Back Euler"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>integrated_scheme_types.Back Euler</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Newton Raphson"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>integrated_scheme_types.Newton Raphson</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Rosenbrock"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>integrated_scheme_types.Rosenbrock</dd>
</dl>
</body>
</html></richcontent></node></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="meteorological_forcings"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd /><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.meteorological_forcings</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="variables_3D"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Three dimensional forcing variables, e.g. U, V, W, T, Q, P, conventive mass flux</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.meteorological_forcings.variables_3D</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.meteorological_forcings.variables_3D</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Three dimensional forcing variables, e.g. U, V, W, T, Q, P, conventive mass flux</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.meteorological_forcings.variables_3D</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.meteorological_forcings.variables_3D</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="variables_2D"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Two dimensional forcing variables, e.g. land-sea mask definition</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.meteorological_forcings.variables_2D</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.meteorological_forcings.variables_2D</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Two dimensional forcing variables, e.g. land-sea mask definition</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.meteorological_forcings.variables_2D</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.meteorological_forcings.variables_2D</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="frequency"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Frequency with which meteorological forcings are applied (in seconds).</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.meteorological_forcings.frequency</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.meteorological_forcings.frequency</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Frequency with which meteorological forcings are applied (in seconds).</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.meteorological_forcings.frequency</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.meteorological_forcings.frequency</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="resolution"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Resolution in the aerosol model grid</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.resolution</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="name"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>This is a string usually used by the modelling group to describe the resolution of this grid, e.g. ORCA025, N512L180, T512L70 etc.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.name</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.name</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>This is a string usually used by the modelling group to describe the resolution of this grid, e.g. ORCA025, N512L180, T512L70 etc.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.name</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.name</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="canonical_horizontal_resolution"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Expression quoted for gross comparisons of resolution, eg. 50km or 0.1 degrees etc.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.canonical_horizontal_resolution</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.canonical_horizontal_resolution</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Expression quoted for gross comparisons of resolution, eg. 50km or 0.1 degrees etc.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.canonical_horizontal_resolution</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.canonical_horizontal_resolution</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="number_of_horizontal_gridpoints"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Total number of horizontal (XY) points (or degrees of freedom) on computational grid.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.number_of_horizontal_gridpoints</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.number_of_horizontal_gridpoints</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Total number of horizontal (XY) points (or degrees of freedom) on computational grid.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.number_of_horizontal_gridpoints</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.number_of_horizontal_gridpoints</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="number_of_vertical_levels"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Number of vertical levels resolved on computational grid.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.number_of_vertical_levels</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.number_of_vertical_levels</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Number of vertical levels resolved on computational grid.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.number_of_vertical_levels</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.number_of_vertical_levels</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="is_adaptive_grid"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Set to true if the grid resolution changes during execution.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.is_adaptive_grid</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.is_adaptive_grid</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Set to true if the grid resolution changes during execution.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.is_adaptive_grid</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.resolution.is_adaptive_grid</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="tuning_applied"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Tuning methodology for aerosol model</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.tuning_applied</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="description"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>General overview description of tuning: explain and motivate the main targets and metrics retained. Document the relative weight given to climate performance metrics versus process oriented metrics, and on the possible conflicts with parameterization level tuning. In particular describe any struggle with a parameter value that required pushing it to its limits to solve a particular model deficiency.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.tuning_applied.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.tuning_applied.description</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>General overview description of tuning: explain and motivate the main targets and metrics retained. Document the relative weight given to climate performance metrics versus process oriented metrics, and on the possible conflicts with parameterization level tuning. In particular describe any struggle with a parameter value that required pushing it to its limits to solve a particular model deficiency.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.tuning_applied.description</dd><dt><b>Type</b></dt><dd>l-str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.tuning_applied.description</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="global_mean_metrics_used"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>List of metrics of the global mean state used in tuning model/component</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.tuning_applied.global_mean_metrics_used</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.tuning_applied.global_mean_metrics_used</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>List of metrics of the global mean state used in tuning model/component</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.tuning_applied.global_mean_metrics_used</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.tuning_applied.global_mean_metrics_used</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="regional_metrics_used"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>List of metrics of regional mean state used in tuning model/component</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.tuning_applied.regional_metrics_used</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.tuning_applied.regional_metrics_used</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>List of metrics of regional mean state used in tuning model/component</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.tuning_applied.regional_metrics_used</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.tuning_applied.regional_metrics_used</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="trend_metrics_used"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>List observed trend metrics used in tuning model/component</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.tuning_applied.trend_metrics_used</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.tuning_applied.trend_metrics_used</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>List observed trend metrics used in tuning model/component</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.key_properties.tuning_applied.trend_metrics_used</dd><dt><b>Type</b></dt><dd>cs-str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.key_properties.tuning_applied.trend_metrics_used</dd>
</dl>
</body>
</html></richcontent></node></node></node><node BACKGROUND_COLOR="#ccccff" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="grid"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Aerosol grid</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.grid</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="matches_atmosphere_grid"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd> Does the atmospheric aerosol grid match the atmosphere grid?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.grid.matches_atmosphere_grid</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.grid.matches_atmosphere_grid</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd> Does the atmospheric aerosol grid match the atmosphere grid?</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.grid.matches_atmosphere_grid</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.grid.matches_atmosphere_grid</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#ACF0F2" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="resolution"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Resolution in the atmospheric aerosol grid</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.grid.resolution</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="name"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>This is a string usually used by the modelling group to describe the resolution of this grid, e.g. ORCA025, N512L180, T512L70 etc.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.grid.resolution.name</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.grid.resolution.name</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>This is a string usually used by the modelling group to describe the resolution of this grid, e.g. ORCA025, N512L180, T512L70 etc.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.grid.resolution.name</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.grid.resolution.name</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="canonical_horizontal_resolution"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Expression quoted for gross comparisons of resolution, e.g. 50km or 0.1 degrees etc.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.grid.resolution.canonical_horizontal_resolution</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.grid.resolution.canonical_horizontal_resolution</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Expression quoted for gross comparisons of resolution, e.g. 50km or 0.1 degrees etc.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.grid.resolution.canonical_horizontal_resolution</dd><dt><b>Type</b></dt><dd>str</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.grid.resolution.canonical_horizontal_resolution</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="number_of_horizontal_gridpoints"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Total number of horizontal (XY) points (or degrees of freedom) on computational grid.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.grid.resolution.number_of_horizontal_gridpoints</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.grid.resolution.number_of_horizontal_gridpoints</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Total number of horizontal (XY) points (or degrees of freedom) on computational grid.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.grid.resolution.number_of_horizontal_gridpoints</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.grid.resolution.number_of_horizontal_gridpoints</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="number_of_vertical_levels"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Number of vertical levels resolved on computational grid.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.grid.resolution.number_of_vertical_levels</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.grid.resolution.number_of_vertical_levels</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Number of vertical levels resolved on computational grid.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.grid.resolution.number_of_vertical_levels</dd><dt><b>Type</b></dt><dd>int</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.grid.resolution.number_of_vertical_levels</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="is_adaptive_grid"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Set to true if grid resolution changes during execution.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.grid.resolution.is_adaptive_grid</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.grid.resolution.is_adaptive_grid</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Set to true if grid resolution changes during execution.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.grid.resolution.is_adaptive_grid</dd><dt><b>Type</b></dt><dd>bool</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.grid.resolution.is_adaptive_grid</dd>
</dl>
</body>
</html></richcontent></node></node></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="transport"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Aerosol transport</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.transport</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Aerosol transport</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.transport</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="scheme"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Method for aerosol transport modelling</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.transport.scheme</dd><dt><b>Type</b></dt><dd>ENUM:transport_schemes</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.transport.scheme</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Method for aerosol transport modelling</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.transport.scheme</dd><dt><b>Type</b></dt><dd>ENUM:transport_schemes</dd><dt><b>Cardinality</b></dt><dd>1.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.transport.scheme</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Uses atmospheric chemistry transport scheme"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>transport_schemes.Uses atmospheric chemistry transport scheme</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Specific transport scheme (eulerian)"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>transport_schemes.Specific transport scheme (eulerian)</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Specific transport scheme (semi-lagrangian)"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>transport_schemes.Specific transport scheme (semi-lagrangian)</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Specific transport scheme (eulerian and semi-lagrangian)"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>transport_schemes.Specific transport scheme (eulerian and semi-lagrangian)</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Specific transport scheme (lagrangian)"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>transport_schemes.Specific transport scheme (lagrangian)</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="mass_conservation_scheme"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Methods used to ensure mass conservation.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.transport.mass_conservation_scheme</dd><dt><b>Type</b></dt><dd>ENUM:mass_conservation_methods</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.transport.mass_conservation_scheme</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Methods used to ensure mass conservation.</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.transport.mass_conservation_scheme</dd><dt><b>Type</b></dt><dd>ENUM:mass_conservation_methods</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.transport.mass_conservation_scheme</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Uses atmospheric chemistry transport scheme"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>mass_conservation_methods.Uses atmospheric chemistry transport scheme</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Mass adjustment"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>mass_conservation_methods.Mass adjustment</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Concentrations positivity"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>mass_conservation_methods.Concentrations positivity</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Gradients monotonicity"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>mass_conservation_methods.Gradients monotonicity</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="convention"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Transport by convention</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.transport.convention</dd><dt><b>Type</b></dt><dd>ENUM:convection_types</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.transport.convention</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Transport by convention</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.transport.convention</dd><dt><b>Type</b></dt><dd>ENUM:convection_types</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.transport.convention</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Uses atmospheric chemistry transport scheme"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>convection_types.Uses atmospheric chemistry transport scheme</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Convective fluxes connected to tracers"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>convection_types.Convective fluxes connected to tracers</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Vertical velocities connected to tracers"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>convection_types.Vertical velocities connected to tracers</dd>
</dl>
</body>
</html></richcontent></node></node></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="false" STYLE="bubble" TEXT="emissions"><font BOLD="True" NAME="courier" SIZE="12" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Atmospheric aerosol emissions</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.emissions</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Atmospheric aerosol emissions</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.emissions</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="method"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Method used to define aerosol species (several methods allowed because the different species may not use the same method).</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.emissions.method</dd><dt><b>Type</b></dt><dd>ENUM:emissions_methods</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.emissions.method</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Method used to define aerosol species (several methods allowed because the different species may not use the same method).</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.emissions.method</dd><dt><b>Type</b></dt><dd>ENUM:emissions_methods</dd><dt><b>Cardinality</b></dt><dd>1.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.emissions.method</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="None"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>emissions_methods.None</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Prescribed (climatology)"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>emissions_methods.Prescribed (climatology)</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Prescribed CMIP6"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>emissions_methods.Prescribed CMIP6</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Prescribed above surface"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>emissions_methods.Prescribed above surface</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Interactive"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>emissions_methods.Interactive</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Interactive above surface"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>emissions_methods.Interactive above surface</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="sources"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Sources of the aerosol species are taken into account in the emissions scheme</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.emissions.sources</dd><dt><b>Type</b></dt><dd>ENUM:surface_source_types</dd><dt><b>Cardinality</b></dt><dd>0.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.emissions.sources</dd>
</dl>
</body>
</html></richcontent><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Sources of the aerosol species are taken into account in the emissions scheme</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.emissions.sources</dd><dt><b>Type</b></dt><dd>ENUM:surface_source_types</dd><dt><b>Cardinality</b></dt><dd>0.N</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.emissions.sources</dd>
</dl>
</body>
</html></richcontent><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Vegetation"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>surface_source_types.Vegetation</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Volcanos"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>surface_source_types.Volcanos</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Bare ground"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>surface_source_types.Bare ground</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Sea surface"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>surface_source_types.Sea surface</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Lightning"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>surface_source_types.Lightning</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Fires"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>surface_source_types.Fires</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Aircraft"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>surface_source_types.Aircraft</dd>
</dl>
</body>
</html></richcontent></node><node BACKGROUND_COLOR="#FFFFFF" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="Anthropogenic"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>N/A</dd><dt><b>Spec. ID</b></dt><dd>surface_source_types.Anthropogenic</dd>
</dl>
</body>
</html></richcontent></node></node><node BACKGROUND_COLOR="#C9D787" COLOR="#000000" FOLDED="true" STYLE="bubble" TEXT="prescribed_climatology"><font BOLD="True" NAME="courier" SIZE="10" /><richcontent TYPE="NOTE"><html>
<head />
<body>
<dl>
<dt><b>Description</b></dt><dd>Specify the climatology type for aerosol emissions</dd><dt><b>Spec. ID</b></dt><dd>cmip6.aerosol.emissions.prescribed_climatology</dd><dt><b>Type</b></dt><dd>ENUM:prescribed_climatology_type</dd><dt><b>Cardinality</b></dt><dd>0.1</dd><dt><b>Specialization ID</b></dt><dd>cmip6.aerosol.emissions.prescribed_climatology</dd>
</dl>