-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMIP5_AtmosphericChemistry_bdl.mm
1259 lines (1249 loc) · 72.6 KB
/
CMIP5_AtmosphericChemistry_bdl.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 version="1.0.1">
<!-- To view this file, download free mind mapping software FreeMind from http://freemind.sourceforge.net -->
<node BACKGROUND_COLOR="#ffffff" COLOR="#990000" CREATED="1233138660368" ID="Freemind_Link_1634648506" MODIFIED="1250243240766" STYLE="fork" TEXT=" Atmospheric Chemistry
 model component
 description
Controlled Vocabulary">
<edge WIDTH="2"/>
<font ITALIC="true" NAME="Arial" SIZE="15"/>
<hook NAME="accessories/plugins/CreationModificationPlugin_new.properties"/>
<node COLOR="#000000" CREATED="1243415250546" ID="Freemind_Link_1289853867" MODIFIED="1258989959256" POSITION="right" STYLE="bubble" TEXT="AtmosphericChemistry">
<font BOLD="true" NAME="SansSerif" SIZE="16"/>
<node COLOR="#990099" CREATED="1253796559148" FOLDED="true" ID="Freemind_Link_969659526" MODIFIED="1495727037054" TEXT="AtmChemKeyProperties_">
<font BOLD="true" NAME="SansSerif" SIZE="14"/>
<node COLOR="#990099" CREATED="1254486057572" ID="Freemind_Link_26535854" MODIFIED="1257775566525" TEXT="AtmChemKeyPropertiesAttributes_">
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#996600" CREATED="1243421913562" ID="Freemind_Link_879113611" MODIFIED="1279183569402" TEXT="ChemSchemeScope">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Atmospheric domains covered by the atmospheric chemistry model.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#000000" CREATED="1243422645484" ID="Freemind_Link_1190317719" MODIFIED="1257333960910" STYLE="fork" TEXT="troposphere">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422650609" ID="Freemind_Link_1829162898" MODIFIED="1257333964388" STYLE="fork" TEXT="stratosphere">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1244067965287" ID="Freemind_Link_233706806" MODIFIED="1257333967951" STYLE="fork" TEXT="mesosphere">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422657765" ID="Freemind_Link_272874843" MODIFIED="1257333974553" STYLE="fork" TEXT="whole atmosphere">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422663812" ID="Freemind_Link_213435573" MODIFIED="1257333979527" STYLE="fork" TEXT="other">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
</node>
<node COLOR="#996600" CREATED="1233141022285" ID="Freemind_Link_599221753" MODIFIED="1279183583705" STYLE="bubble" TEXT="BasicApproximations">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Description of th basic approximations made in the Atmospheric Chemistry model.[/definition]</p></body></html></richcontent>
<font NAME="Arial" SIZE="14"/>
<node CREATED="1255438025821" ID="Freemind_Link_1737511187" MODIFIED="1257333990921" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="pencil"/>
</node>
</node>
<node COLOR="#996600" CREATED="1233587234324" ID="Freemind_Link_1846065429" MODIFIED="1279183604786" TEXT="ListOfPrognosticVariables">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Prognostic variables of the Atmospheric Chemistry model.[/definition]</p></body></html></richcontent>
<font NAME="Arial" SIZE="14"/>
<node COLOR="#000000" CREATED="1243422645484" ID="Freemind_Link_996127862" MODIFIED="1264503619999" STYLE="fork" TEXT="3D mass/mixing ratio for gas">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422645484" ID="Freemind_Link_27078511" MODIFIED="1256121486400" STYLE="fork" TEXT="other">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239099334126" ID="Freemind_Link_215406295" MODIFIED="1279183615668" STYLE="bubble" TEXT="NumberOfTracers">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Number of tracers in the Atmospheric Chemistry model.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233246454929" HGAP="25" ID="Freemind_Link_242578772" MODIFIED="1256117066669" STYLE="fork" TEXT="" VSHIFT="5">
<font NAME="Arial" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
<node COLOR="#996600" CREATED="1244069277380" ID="Freemind_Link_1129046184" MODIFIED="1279183633110" STYLE="bubble" TEXT="FamilyApproach">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Atmospheric Chemistry calculations are generalised into families of species.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233937791616" ID="Freemind_Link_910186188" MODIFIED="1233937816630" STYLE="fork" TEXT="yes">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node CREATED="1233937798254" ID="Freemind_Link_182503695" MODIFIED="1233937816630" STYLE="fork" TEXT="no">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239092321265" ID="Freemind_Link_1075077157" MODIFIED="1279183669476" TEXT="CouplingWithChemicalReactivity">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Chemistry transport scheme turbulence is coupled with chemical reactivity.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233937791616" ID="Freemind_Link_267120436" MODIFIED="1233937816630" STYLE="fork" TEXT="yes">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node CREATED="1233937798254" ID="Freemind_Link_992246811" MODIFIED="1233937816630" STYLE="fork" TEXT="no">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
</node>
</node>
<node COLOR="#990099" CREATED="1233751261777" ID="Freemind_Link_1153520910" MODIFIED="1495726400364" STYLE="bubble" TEXT="TimeSteppingFramework">
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#996600" CREATED="1239098125683" ID="Freemind_Link_1971524831" MODIFIED="1279183772249" STYLE="bubble" TEXT="Method">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Mathematical method deployed to solve the evolution of a given variable.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1239098471806" ID="Freemind_Link_965357301" MODIFIED="1279183827543" STYLE="fork" TEXT="operator splitting">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]All the processes are decoupled, the time evolution is calculated sequentially and the tendencies are cumulated; the global evolution depends on the order the cumulation performed.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node CREATED="1239098618071" ID="Freemind_Link_774878778" MODIFIED="1279183751977" STYLE="fork" TEXT="integrated">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]All the processes having an impact on the time evolution are taken into account and solved simultaneously.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239098686632" FOLDED="true" ID="Freemind_Link_295168920" MODIFIED="1495726424838" STYLE="bubble" TEXT="SplitOperatorAdvectionTimeStep">
<richcontent TYPE="NOTE"><html>
<head>
</head>
<body>
<p>
[definition]Time step for chemical species advection.[/definition]<br />[info]f.e. 1h in MOCAGE.[/info]
</p>
</body>
</html>
</richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233246454929" HGAP="25" ID="Freemind_Link_1520480023" MODIFIED="1257339123072" STYLE="fork" TEXT="seconds" VSHIFT="5">
<font NAME="Arial" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
<node BACKGROUND_COLOR="#3399ff" CREATED="1256121416151" ID="Freemind_Link_730747206" MODIFIED="1269595092440" STYLE="fork" TEXT="mpm: ask if inherited from atmosphere?">
<font ITALIC="true" NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="help"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239098755171" FOLDED="true" ID="Freemind_Link_279605906" MODIFIED="1495726376992" STYLE="bubble" TEXT="SplitOperatorPhysicalTimeStep">
<richcontent TYPE="NOTE"><html>
<head>
</head>
<body>
<p>
[definition]Time step for physics and chemistry.[/definition]<br />[info]f.e. 1/4 h in MOCAGE.[/info]
</p>
</body>
</html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233246454929" HGAP="25" ID="Freemind_Link_857053093" MODIFIED="1257339173829" STYLE="fork" TEXT="seconds" VSHIFT="5">
<font NAME="Arial" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
<node BACKGROUND_COLOR="#00ff00" CREATED="1256121416151" ID="Freemind_Link_1923195023" MODIFIED="1269595096317" STYLE="fork" TEXT="mpm: original version: Physical-ChemicalTimeStep...">
<font ITALIC="true" NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="idea"/>
</node>
</node>
<node COLOR="#990099" CREATED="1239098782744" FOLDED="true" ID="Freemind_Link_669091868" MODIFIED="1495726393871" STYLE="bubble" TEXT="SplitOperatorOrderOfParametrizationCalls">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="messagebox_warning"/>
<node COLOR="#996600" CREATED="1239098826307" ID="Freemind_Link_225048400" MODIFIED="1495726249940" STYLE="bubble" TEXT="Turbulence">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Call order for turbulence scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233246454929" HGAP="25" ID="Freemind_Link_1333166158" MODIFIED="1257339227337" STYLE="fork" TEXT="" VSHIFT="5">
<font NAME="Arial" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239098826307" ID="Freemind_Link_1508308143" MODIFIED="1495726251412" STYLE="bubble" TEXT="Convection">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Call order for convection scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233246454929" HGAP="25" ID="Freemind_Link_1676750501" MODIFIED="1257339227337" STYLE="fork" TEXT="" VSHIFT="5">
<font NAME="Arial" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239098826307" ID="Freemind_Link_1042777135" MODIFIED="1495726252685" STYLE="bubble" TEXT="Precipitation">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Call order for precipitation scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233246454929" HGAP="25" ID="Freemind_Link_381950994" MODIFIED="1257339227337" STYLE="fork" TEXT="" VSHIFT="5">
<font NAME="Arial" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239098810520" ID="Freemind_Link_1417568946" MODIFIED="1495726254292" STYLE="bubble" TEXT="Emissions">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Call order for emission scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233246454929" HGAP="25" ID="Freemind_Link_153141661" MODIFIED="1257339227337" STYLE="fork" TEXT="" VSHIFT="5">
<font NAME="Arial" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239098810520" ID="Freemind_Link_1550038267" MODIFIED="1495726255853" STYLE="bubble" TEXT="Deposition">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Call order for deposition scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233246454929" HGAP="25" ID="Freemind_Link_1877222422" MODIFIED="1257339227337" STYLE="fork" TEXT="" VSHIFT="5">
<font NAME="Arial" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239098820387" ID="Freemind_Link_1843057851" MODIFIED="1495726256813" STYLE="bubble" TEXT="GasPhaseChemistry">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Call order for gas phase chemistry scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233246454929" HGAP="25" ID="Freemind_Link_550442146" MODIFIED="1257339227337" STYLE="fork" TEXT="" VSHIFT="5">
<font NAME="Arial" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239098820387" FOLDED="true" ID="Freemind_Link_978179724" MODIFIED="1257339363672" STYLE="bubble" TEXT="HeterogeneousChemistry">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Call order for heterogeneous chemistry scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233246454929" HGAP="25" ID="Freemind_Link_1989788335" MODIFIED="1257339227337" STYLE="fork" TEXT="" VSHIFT="5">
<font NAME="Arial" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239098820387" FOLDED="true" ID="Freemind_Link_1248163760" MODIFIED="1259073344612" STYLE="bubble" TEXT="PhotoChemistry">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Call order for photo chemistry scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233246454929" HGAP="25" ID="Freemind_Link_481869719" MODIFIED="1257339227337" STYLE="fork" TEXT="" VSHIFT="5">
<font NAME="Arial" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239098810520" FOLDED="true" ID="Freemind_Link_415246664" MODIFIED="1258019964705" STYLE="bubble" TEXT="Aerosols">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Call order for aerosols scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="messagebox_warning"/>
<node CREATED="1233246454929" HGAP="25" ID="Freemind_Link_304014106" MODIFIED="1257339227337" STYLE="fork" TEXT="" VSHIFT="5">
<font NAME="Arial" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
<node BACKGROUND_COLOR="#3399ff" CREATED="1256121416151" ID="Freemind_Link_411068691" MODIFIED="1269595191672" STYLE="fork" TEXT="mpm: not needed?">
<font ITALIC="true" NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="help"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239098933214" FOLDED="true" ID="Freemind_Link_1332074514" MODIFIED="1495726395647" STYLE="bubble">
<richcontent TYPE="NODE"><html>
<head>
</head>
<body>
<p>
SplitOperatorAlternateOrder
</p>
</body>
</html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="messagebox_warning"/>
<node CREATED="1233937791616" ID="Freemind_Link_261159359" MODIFIED="1233937816630" STYLE="fork" TEXT="yes">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node CREATED="1233937798254" ID="Freemind_Link_101436754" MODIFIED="1233937816630" STYLE="fork" TEXT="no">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node BACKGROUND_COLOR="#3399ff" CREATED="1256121416151" ID="Freemind_Link_1570336140" MODIFIED="1269595191672" STYLE="fork" TEXT="mpm: not needed?">
<font ITALIC="true" NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="help"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239098631308" FOLDED="true" ID="Freemind_Link_1655237676" MODIFIED="1495726430726" STYLE="bubble" TEXT="IntegratedTimeStep">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Time step for the Atmospheric Chemistry model.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233246454929" HGAP="25" ID="Freemind_Link_1994160294" MODIFIED="1257341147173" STYLE="fork" TEXT="seconds" VSHIFT="5">
<font NAME="Arial" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239098637618" FOLDED="true" ID="Freemind_Link_758126237" MODIFIED="1495726404429" STYLE="bubble" TEXT="IntegratedSchemeType">
<richcontent TYPE="NOTE"><html>
<head>
</head>
<body>
<p>
[definition]Specify the type of time step scheme.[/definition]
</p>
</body>
</html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1239095297839" ID="Freemind_Link_58499275" MODIFIED="1239188329152" STYLE="fork" TEXT="explicit">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node CREATED="1239095238271" ID="Freemind_Link_963612039" MODIFIED="1239188329168" STYLE="fork" TEXT="implicit">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node CREATED="1239095268168" ID="Freemind_Link_18774872" MODIFIED="1239188329152" STYLE="fork" TEXT="semi-implicit">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#000000" CREATED="1244068230090" ID="Freemind_Link_823660201" MODIFIED="1259252708685" STYLE="fork" TEXT="semi-analytic">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#000000" CREATED="1243422726015" ID="Freemind_Link_137730615" MODIFIED="1256121662173" STYLE="fork" TEXT="Impact Solver">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#000000" CREATED="1243422730546" ID="Freemind_Link_1444463672" MODIFIED="1256121678697" STYLE="fork" TEXT="Back Euler">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#000000" CREATED="1243422734859" ID="Freemind_Link_272891981" MODIFIED="1256121670945" STYLE="fork" TEXT="Newton Raphson">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#000000" CREATED="1244068183969" ID="Freemind_Link_1561193412" MODIFIED="1256201764369" STYLE="fork" TEXT="Rosenbrock">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#000000" CREATED="1243422741765" ID="Freemind_Link_343844389" MODIFIED="1256121685873" STYLE="fork" TEXT="other">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
</node>
</node>
<node COLOR="#990099" CREATED="1239099014334" ID="Freemind_Link_1376668304" MODIFIED="1495726317573" STYLE="bubble" TEXT="MeteorologicalForcings">
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#996600" CREATED="1239099027851" ID="Freemind_Link_1135732469" MODIFIED="1269595122821" STYLE="bubble" TEXT="3D-Variables">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]3-Dimensional forcing variables e.g. U, V, W, T, Q, P, convective mass flux[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233246454929" HGAP="25" ID="Freemind_Link_715498346" MODIFIED="1239109791038" STYLE="fork" TEXT="" VSHIFT="5">
<font NAME="Arial" SIZE="14"/>
<icon BUILTIN="pencil"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239099108199" ID="Freemind_Link_521810339" MODIFIED="1269595122837" STYLE="bubble" TEXT="2D-Variables">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]2-Dimensional forcing variables e.g. land-sea mask[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233246454929" HGAP="25" ID="Freemind_Link_646291857" MODIFIED="1239109791038" STYLE="fork" TEXT="" VSHIFT="5">
<font NAME="Arial" SIZE="14"/>
<icon BUILTIN="pencil"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239099148353" ID="Freemind_Link_182221243" MODIFIED="1495726324045" STYLE="bubble" TEXT="Frequency">
<richcontent TYPE="NOTE"><html>
<head>
</head>
<body>
<p>
[definition]Frequency with which meteorological forcings are applied[/definition]
</p>
</body>
</html>
</richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233246454929" HGAP="25" ID="Freemind_Link_850719255" MODIFIED="1257346382707" STYLE="fork" TEXT="seconds" VSHIFT="5">
<font NAME="Arial" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
</node>
</node>
<node COLOR="#000000" CREATED="1243421900109" FOLDED="true" ID="Freemind_Link_1833059964" MODIFIED="1495727033406" TEXT="AtmChem_Transport">
<font BOLD="true" NAME="SansSerif" SIZE="14"/>
<node COLOR="#990099" CREATED="1256285080292" ID="Freemind_Link_330267481" MODIFIED="1257775617654" TEXT="AtmChemTransportAttributes_">
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#996600" CREATED="1244049519101" ID="Freemind_Link_1441580281" MODIFIED="1279183874304" TEXT="SchemeType">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]The type of Atmospheric Chemistry transport scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1244058418478" ID="Freemind_Link_307872876" MODIFIED="1256121577379" STYLE="fork" TEXT="Eulerian">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1244058832248" ID="Freemind_Link_553949456" MODIFIED="1256121585045" STYLE="fork" TEXT="Semi-Lagrangian">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1244067550717" ID="Freemind_Link_1239539739" MODIFIED="1256121594324" STYLE="fork" TEXT="Eulerian and Semi-Lagrangian">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1244058846062" ID="Freemind_Link_258075818" MODIFIED="1256121598789" STYLE="fork" TEXT="Lagrangian">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1244067535483" ID="Freemind_Link_567830392" MODIFIED="1250167654334" STYLE="fork" TEXT="other">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
</node>
<node COLOR="#996600" CREATED="1244049532088" ID="Freemind_Link_1360648730" MODIFIED="1279182447950" TEXT="MassConservation">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Method used to ensure mass conservation.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#000000" CREATED="1244049570737" ID="Freemind_Link_144327061" MODIFIED="1279182342054" STYLE="fork" TEXT="mass adjustment">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Adjustment is required to conserve mass.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1239091588860" ID="Freemind_Link_1183325918" MODIFIED="1279182440949" STYLE="fork" TEXT="concentrations positivity">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Negative concentrations are reset.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1239091588860" ID="Freemind_Link_1137783445" MODIFIED="1279182471081" STYLE="fork" TEXT="gradients monotony">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Sharp gradients in concentration are smoothed.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
</node>
<node COLOR="#996600" CREATED="1244049628488" ID="Freemind_Link_1616423602" MODIFIED="1279182560982" TEXT="Convection">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Transport by convection.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#000000" CREATED="1244049677745" ID="Freemind_Link_1272464403" MODIFIED="1279182627493" STYLE="fork" TEXT="convective fluxes connected to tracers">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Tracers "see" the convection.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1244049685054" ID="Freemind_Link_359936109" MODIFIED="1279182675157" STYLE="fork" TEXT="vertical velocities connected to tracers">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Mass flux vertical velocities are connected with tracers.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
</node>
</node>
<node COLOR="#990099" CREATED="1239091990958" ID="Freemind_Link_396080714" MODIFIED="1256121739152" TEXT="Turbulence">
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#996600" CREATED="1239092150882" ID="Freemind_Link_595025936" MODIFIED="1279184004805" TEXT="Type">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Dimension of the turbulence scheme in chemistry transport.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1239092127747" ID="Freemind_Link_791086155" MODIFIED="1239109150985" STYLE="fork" TEXT="2D">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node CREATED="1239092140298" ID="Freemind_Link_567217699" MODIFIED="1239109151001" STYLE="fork" TEXT="3D">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
</node>
<node COLOR="#996600" CREATED="1239092321265" ID="Freemind_Link_1173589054" MODIFIED="1279184020887" TEXT="CouplingWithChemicalReactivity">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Chemistry transport scheme turbulence is coupled with chemical reactivity.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1233937791616" ID="Freemind_Link_121188564" MODIFIED="1233937816630" STYLE="fork" TEXT="yes">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node CREATED="1233937798254" ID="Freemind_Link_758738375" MODIFIED="1233937816630" STYLE="fork" TEXT="no">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
</node>
</node>
</node>
<node COLOR="#000000" CREATED="1243422071515" FOLDED="true" ID="Freemind_Link_1266135633" MODIFIED="1495727040222" TEXT="AtmChem_EmissionAndConc">
<font BOLD="true" NAME="SansSerif" SIZE="14"/>
<node COLOR="#990099" CREATED="1243422252593" ID="Freemind_Link_1774355464" MODIFIED="1264679960831" TEXT="2D-Emissions">
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#996600" CREATED="1244467041993" ID="Freemind_Link_1239785627" MODIFIED="1279184127326" TEXT="Method">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Method used to define chemical species emitted at the surface (several methods allowed because the different species may not use the same method)[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#000000" CREATED="1243422295125" ID="Freemind_Link_1570018734" MODIFIED="1253695989543" STYLE="fork" TEXT="prescribed (climatology)">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422171765" ID="Freemind_Link_153230918" MODIFIED="1253695977991" STYLE="fork" TEXT="prescribed (spatially uniform)">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422165921" ID="Freemind_Link_1191557498" MODIFIED="1253636178446" STYLE="fork" TEXT="interactive">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422303484" ID="Freemind_Link_192602583" MODIFIED="1253695060048" STYLE="fork" TEXT="other">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
</node>
<node COLOR="#996600" CREATED="1244467041993" ID="Freemind_Link_785643854" MODIFIED="1495726630338" TEXT="PrescribedClimatologyType">
<richcontent TYPE="NOTE"><html>
<head>
</head>
<body>
<p>
[definition]Specify the climatology type for chemical emissions prescribed at the surface.[/definition]
</p>
</body>
</html>
</richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1243422192375" ID="Freemind_Link_588980410" MODIFIED="1253695070095" STYLE="fork" TEXT="constant">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1244068644052" ID="Freemind_Link_1082039471" MODIFIED="1250167614944" STYLE="fork" TEXT="interannual">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1244068648459" ID="Freemind_Link_196856249" MODIFIED="1250167614944" STYLE="fork" TEXT="annual">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1244068651493" ID="Freemind_Link_1159812785" MODIFIED="1250167614929" STYLE="fork" TEXT="monthly">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1244068655650" ID="Freemind_Link_659540086" MODIFIED="1250167614929" STYLE="fork" TEXT="daily">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1243422226812" ID="Freemind_Link_47034677" MODIFIED="1253695074346" STYLE="fork" TEXT="other">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
</node>
<node COLOR="#996600" CREATED="1243422324468" ID="Freemind_Link_92874310" MODIFIED="1495726596362" TEXT="PrescribedClimatologyEmittedSpecies">
<richcontent TYPE="NOTE"><html>
<head>
</head>
<body>
<p>
[definition]List of chemical species emitted at the surface and prescribed via a climatology.[/definition]
</p>
</body>
</html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1244070048872" ID="Freemind_Link_489376238" MODIFIED="1257346662492" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="pencil"/>
</node>
</node>
<node COLOR="#996600" CREATED="1243422324468" ID="Freemind_Link_1775401126" MODIFIED="1495726544505" TEXT="PrescribedSpatiallyUniformEmittedSpecies">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]List of chemical species emitted at the surface and prescribed as spatially uniform.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1244070048872" ID="Freemind_Link_408999422" MODIFIED="1257346662492" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="pencil"/>
</node>
</node>
<node COLOR="#996600" CREATED="1243422324468" ID="Freemind_Link_1590099299" MODIFIED="1284132578655" TEXT="InteractivEmittedSpecies">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]List of chemical species emitted at the surface and specified via an interactive method.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1244070048872" ID="Freemind_Link_1916591148" MODIFIED="1257346662492" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="pencil"/>
</node>
</node>
<node COLOR="#996600" CREATED="1258103965122" ID="Freemind_Link_1120034120" MODIFIED="1495726581865" TEXT="OtherMethodCharacteristics">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Characteristics of the method used for chemical emissions at the surface.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1258104235821" ID="Freemind_Link_650872146" MODIFIED="1258104252264" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="pencil"/>
</node>
</node>
<node COLOR="#996600" CREATED="1243422324468" ID="Freemind_Link_1250937615" MODIFIED="1495726614674" TEXT="OtherEmittedSpecies">
<richcontent TYPE="NOTE"><html>
<head>
</head>
<body>
<p>
[definition]List of chemical species emitted at the surface and specified via the method described above.[/definition]
</p>
</body>
</html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1244070048872" ID="Freemind_Link_207474634" MODIFIED="1257346662492" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="pencil"/>
</node>
</node>
<node COLOR="#996600" CREATED="1244467041993" ID="Freemind_Link_1065722201" MODIFIED="1279184141455" TEXT="SourceTypes">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Sources of chemical species emitted at the surface that are taken into account in the emissions scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#000000" CREATED="1243422295125" ID="Freemind_Link_232746905" MODIFIED="1265044080393" STYLE="fork" TEXT="vegetation">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422171765" ID="Freemind_Link_1883374133" MODIFIED="1265044101056" STYLE="fork" TEXT="bare ground">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422165921" ID="Freemind_Link_1715725469" MODIFIED="1265044098038" STYLE="fork" TEXT="sea surface">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422303484" ID="Freemind_Link_1376682245" MODIFIED="1265044128021" STYLE="fork" TEXT="anthropogenic">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422303484" ID="Freemind_Link_1978884088" MODIFIED="1253695060048" STYLE="fork" TEXT="other">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
</node>
</node>
<node COLOR="#990099" CREATED="1243422252593" ID="Freemind_Link_64279269" MODIFIED="1264681553009" TEXT="3D-Emissions">
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#996600" CREATED="1244467041993" ID="Freemind_Link_1016845722" MODIFIED="1279184199210" TEXT="Method">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Method used to define the chemical species emitted in the atmosphere (several methods allowed because the different species may not use the same method).[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#000000" CREATED="1243422295125" ID="Freemind_Link_295276803" MODIFIED="1253695989543" STYLE="fork" TEXT="prescribed (climatology)">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422171765" ID="Freemind_Link_891744105" MODIFIED="1253695977991" STYLE="fork" TEXT="prescribed (spatially uniform)">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422165921" ID="Freemind_Link_493199744" MODIFIED="1253636178446" STYLE="fork" TEXT="interactive">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422303484" ID="Freemind_Link_523411660" MODIFIED="1253695060048" STYLE="fork" TEXT="other">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
</node>
<node COLOR="#996600" CREATED="1244467041993" FOLDED="true" ID="Freemind_Link_93200593" MODIFIED="1495726745775" TEXT="PrescribedClimatologyType">
<richcontent TYPE="NOTE"><html>
<head>
</head>
<body>
<p>
[definition]Specify the climatology type for chemical emissions prescribed in the atmosphere.[/definition]
</p>
</body>
</html>
</richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1243422192375" ID="Freemind_Link_622398568" MODIFIED="1253695070095" STYLE="fork" TEXT="constant">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1244068644052" ID="Freemind_Link_578572174" MODIFIED="1250167614944" STYLE="fork" TEXT="interannual">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1244068648459" ID="Freemind_Link_288922325" MODIFIED="1250167614944" STYLE="fork" TEXT="annual">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1244068651493" ID="Freemind_Link_1311691626" MODIFIED="1250167614929" STYLE="fork" TEXT="monthly">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1244068655650" ID="Freemind_Link_1655261312" MODIFIED="1250167614929" STYLE="fork" TEXT="daily">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1243422226812" ID="Freemind_Link_1365853782" MODIFIED="1253695074346" STYLE="fork" TEXT="other">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
</node>
<node COLOR="#996600" CREATED="1243422324468" ID="Freemind_Link_1696981333" MODIFIED="1495726761622" TEXT="PrescribedClimatologyEmittedSpecies">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]List of aerosol species emitted in the atmosphere and prescribed via a climatology.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1244070048872" ID="Freemind_Link_567329655" MODIFIED="1257346662492" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="pencil"/>
</node>
</node>
<node COLOR="#996600" CREATED="1243422324468" ID="Freemind_Link_145574185" MODIFIED="1495726685524" TEXT="PrescribedSpatiallyUniformEmittedSpecies">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]List of chemical species emitted in the atmosphere and prescribed as spatially uniform.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1244070048872" ID="Freemind_Link_414628421" MODIFIED="1257346662492" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="pencil"/>
</node>
</node>
<node COLOR="#996600" CREATED="1243422324468" ID="Freemind_Link_1122292032" MODIFIED="1284132643889" TEXT="InteractivEmittedSpecies">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]List of chemical species emitted in the atmosphere and specified via an interactive method.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1244070048872" ID="Freemind_Link_265631292" MODIFIED="1257346662492" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="pencil"/>
</node>
</node>
<node COLOR="#996600" CREATED="1258103965122" ID="Freemind_Link_1200913506" MODIFIED="1495726699379" TEXT="OtherMethodCharacteristics">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Characteristics of the method used for chemical emissions in the atmosphere.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1258104235821" ID="Freemind_Link_101449740" MODIFIED="1258104252264" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="pencil"/>
</node>
</node>
<node COLOR="#996600" CREATED="1243422324468" ID="Freemind_Link_1498402119" MODIFIED="1495726706084" TEXT="OtherEmittedSpecies">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]List of chemical species emitted in the atmosphere and specified via the method described above.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1244070048872" ID="Freemind_Link_27384893" MODIFIED="1257346662492" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="pencil"/>
</node>
</node>
<node COLOR="#996600" CREATED="1244467041993" ID="Freemind_Link_423875565" MODIFIED="1279184211354" TEXT="SourceTypes">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Sources of chemical species emitted in the atmosphere that are taken into account in the emissions scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#000000" CREATED="1243422295125" ID="Freemind_Link_1388051881" MODIFIED="1265044217666" STYLE="fork" TEXT="aircraft">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422171765" ID="Freemind_Link_708234101" MODIFIED="1265044228272" STYLE="fork" TEXT="biomass burning">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422165921" ID="Freemind_Link_661714887" MODIFIED="1265277740278" STYLE="fork" TEXT="lightning">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422303484" ID="Freemind_Link_106808488" MODIFIED="1265277751479" STYLE="fork" TEXT="volcanoes">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1243422303484" ID="Freemind_Link_634119130" MODIFIED="1253695060048" STYLE="fork" TEXT="other">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
</node>
</node>
<node COLOR="#990099" CREATED="1244068729399" ID="Freemind_Link_1670336521" MODIFIED="1256199786544" TEXT="Concentrations">
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#996600" CREATED="1244068742729" ID="Freemind_Link_1701507840" MODIFIED="1257346917012" TEXT="PrescribedLowerBoundary">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]List of species prescribed at the lower boundary.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1244070048872" ID="Freemind_Link_1620175564" MODIFIED="1257346897665" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="pencil"/>
</node>
</node>
<node COLOR="#996600" CREATED="1244068753954" ID="Freemind_Link_1309362891" MODIFIED="1259247497491" TEXT="PrescribedUpperBoundary">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]List of species prescribed at the upper boundary.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1244070048872" ID="Freemind_Link_295332117" MODIFIED="1257346943685" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="pencil"/>
</node>
</node>
</node>
</node>
<node COLOR="#000000" CREATED="1244062026857" FOLDED="true" ID="Freemind_Link_1658904618" MODIFIED="1495727042222" TEXT="AtmChem_GasPhaseChemistry">
<font BOLD="true" NAME="SansSerif" SIZE="14"/>
<node COLOR="#990099" CREATED="1258105576222" ID="_" MODIFIED="1258105604395" TEXT="AtmGasPhaseChemistryAttributes_">
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#996600" CREATED="1243421960140" ID="Freemind_Link_1586399056" MODIFIED="1259248308131" TEXT="Species">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Species included in the gas phase chemistry scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1243422025640" ID="Freemind_Link_806402109" MODIFIED="1250167615428" STYLE="fork" TEXT="HOx">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#111111" CREATED="1243422030312" ID="Freemind_Link_1130041483" MODIFIED="1250167615428" STYLE="fork" TEXT="NOy">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#111111" CREATED="1243422033500" ID="Freemind_Link_1983773289" MODIFIED="1250167615428" STYLE="fork" TEXT="Ox">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#111111" CREATED="1243422036734" ID="Freemind_Link_1551562018" MODIFIED="1250167615428" STYLE="fork" TEXT="Cly">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#111111" CREATED="1244057407621" ID="Freemind_Link_1208654724" MODIFIED="1250167615428" STYLE="fork" TEXT="SOx">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#111111" CREATED="1244057412464" ID="Freemind_Link_1783800803" MODIFIED="1250167615428" STYLE="fork" TEXT="Bry">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#111111" CREATED="1243422041328" ID="Freemind_Link_165774698" MODIFIED="1250167615428" STYLE="fork" TEXT="VOCs">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#111111" CREATED="1243422046265" ID="Freemind_Link_1157666894" MODIFIED="1264600246989" STYLE="fork" TEXT="isoprene">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#111111" CREATED="1244068521467" ID="Freemind_Link_190306735" MODIFIED="1250167615412" STYLE="fork" TEXT="H2O">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#111111" CREATED="1243422057562" ID="Freemind_Link_1105335321" MODIFIED="1253695209566" STYLE="fork" TEXT="other">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
</node>
</node>
<node COLOR="#990099" CREATED="1243421967109" ID="Freemind_Link_1856848959" MODIFIED="1256200444621" TEXT="Processes">
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#996600" CREATED="1243422075515" ID="Freemind_Link_1525698741" MODIFIED="1279184460162" TEXT="DryDeposition">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Dry deposition is prescribed or interactive. Dry deposition describes the dry processes by which gaseous species deposit themselves on solid surfaces thus decreasing their concentration in the air.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1243422111046" ID="Freemind_Link_629893309" MODIFIED="1253695188148" STYLE="fork" TEXT="prescribed">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1243422115937" ID="Freemind_Link_563113952" MODIFIED="1253695193943" STYLE="fork" TEXT="interactive">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
</node>
<node COLOR="#996600" CREATED="1243422079562" ID="Freemind_Link_1815102915" MODIFIED="1279184464780" TEXT="WetDeposition">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Wet deposition is included or not. Wet deposition describes the moist processes by which gaseous species deposit themselves on solid surfaces thus decreasing their concentration in the air.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1244467432064" ID="Freemind_Link_964595177" MODIFIED="1250167614742" STYLE="fork" TEXT="yes">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1244467435114" ID="Freemind_Link_1578916818" MODIFIED="1250167614726" STYLE="fork" TEXT="no">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
</node>
<node COLOR="#996600" CREATED="1244068541318" ID="Freemind_Link_339660491" MODIFIED="1279184468822" TEXT="Oxidation">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Oxidation is included or not. Oxidation describes the loss of electrons or an increase in oxidation state by a molecule. [/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1244467439958" ID="Freemind_Link_1895355301" MODIFIED="1250167614726" STYLE="fork" TEXT="yes">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1244467442181" ID="Freemind_Link_786328667" MODIFIED="1250167614710" STYLE="fork" TEXT="no">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
</node>
<node COLOR="#996600" CREATED="1244049962944" ID="Freemind_Link_764628178" MODIFIED="1256200465870" TEXT="WashOut-RainOut">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Downward transport of soluble chemistry species in clouds.[/definition]<br/></p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#000000" CREATED="1244059256903" ID="Freemind_Link_270074369" MODIFIED="1250604924863" STYLE="fork" TEXT="in-cloud scavenging">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1244059273307" ID="Freemind_Link_1099608709" MODIFIED="1250604940439" STYLE="fork" TEXT="below-cloud scavenging">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
</node>
</node>
<node COLOR="#990099" CREATED="1243421950156" ID="Freemind_Link_1148089485" MODIFIED="1256200759012" TEXT="NumOfReactionsAndSpecies">
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#996600" CREATED="1243422663812" ID="Freemind_Link_418531539" MODIFIED="1259248277671" TEXT="NumberOfBimolecularReactions">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]The number of bi-molecular reactions in the gas phase chemistry scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1250169579304" ID="Freemind_Link_1603669206" MODIFIED="1250604655568" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
<node COLOR="#996600" CREATED="1243422663812" ID="Freemind_Link_459989577" MODIFIED="1259248269335" TEXT="NumberOfTermolecularReactions">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]The number of ter-molecular reactions in the gas phase chemistry scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1250169579304" ID="Freemind_Link_504678623" MODIFIED="1250604655568" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
<node COLOR="#996600" CREATED="1243422663812" ID="Freemind_Link_1775179408" MODIFIED="1259248262325" TEXT="NumberOfAdvectedSpecies">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]The number of advected species in the gas phase chemistry scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1250169579304" ID="Freemind_Link_1945310536" MODIFIED="1250604655568" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
<node COLOR="#996600" CREATED="1243422663812" ID="Freemind_Link_206533849" MODIFIED="1259248248811" TEXT="NumberOfSteadyStateSpecies">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]The number of steady state species in the gas phase chemistry scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1250169579304" ID="Freemind_Link_1947590912" MODIFIED="1250604655568" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
</node>
</node>
<node COLOR="#000000" CREATED="1244069441485" FOLDED="true" ID="Freemind_Link_1820070223" MODIFIED="1495727043838" TEXT="AtmChem_StratosphericHeterogenChemistry">
<font BOLD="true" NAME="SansSerif" SIZE="14"/>
<node COLOR="#990099" CREATED="1244058101228" ID="Freemind_Link_61219831" MODIFIED="1256200475577" TEXT="Species">
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#996600" CREATED="1244063735330" FOLDED="true" ID="Freemind_Link_1274278688" MODIFIED="1264602176920" TEXT="GasPhase">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Gas phase species included in the stratospheric heterogeneous chemistry scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1244063822635" ID="Freemind_Link_1006717839" MODIFIED="1250167714129" STYLE="fork" TEXT="Cly">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#111111" CREATED="1244069519016" ID="Freemind_Link_1005614091" MODIFIED="1250167714129" STYLE="fork" TEXT="Bry">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#111111" CREATED="1244069531176" ID="Freemind_Link_980733720" MODIFIED="1250167714114" STYLE="fork" TEXT="NOy">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#111111" CREATED="1244467485831" ID="Freemind_Link_1482834801" MODIFIED="1250167714114" STYLE="fork" TEXT="other">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
</node>
<node COLOR="#996600" CREATED="1244063743933" FOLDED="true" ID="Freemind_Link_561874729" MODIFIED="1269598467299" TEXT="Aerosol">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Aerosol species included in the stratospheric heterogeneous chemistry scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#000000" CREATED="1233869783778" ID="Freemind_Link_1406944166" MODIFIED="1264514522899" STYLE="fork" TEXT="sulphate">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1233869783778" ID="Freemind_Link_670574332" MODIFIED="1264603220039" STYLE="fork" TEXT="polar stratospheric ice">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1233869783778" ID="Freemind_Link_1820640090" MODIFIED="1264599299570" STYLE="fork" TEXT="NAT (nitric acid trihydrate)">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1233869783778" ID="Freemind_Link_716839503" MODIFIED="1264599299570" STYLE="fork" TEXT="NAD (nitric acid dihydrate)">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1233869783778" ID="Freemind_Link_1709145948" MODIFIED="1264599299570" STYLE="fork" TEXT="STS (supercooled ternary solution aerosol particule)">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1233869783778" ID="Freemind_Link_72156411" MODIFIED="1264599316278" STYLE="fork" TEXT="other">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
</node>
</node>
<node COLOR="#990099" CREATED="1243421967109" ID="Freemind_Link_840670510" MODIFIED="1256200475537" TEXT="Processes">
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#996600" CREATED="1244069718439" FOLDED="true" ID="Freemind_Link_433279967" MODIFIED="1279184489282" TEXT="Sedimentation">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Sedimentation is included in the stratospheric heterogeneous chemistry scheme or not. Sedimentation is the vertical settling of particles. [/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1244467519029" ID="Freemind_Link_1664722456" MODIFIED="1250167714082" STYLE="fork" TEXT="yes">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1244467521190" ID="Freemind_Link_181097358" MODIFIED="1250167714082" STYLE="fork" TEXT="no">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
</node>
<node COLOR="#996600" CREATED="1244069953392" FOLDED="true" ID="Freemind_Link_1499725962" MODIFIED="1279184521025" TEXT="Coagulation">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Coagulation is included in the stratospheric heterogeneous chemistry scheme or not. Coagulation is a process by which aerosol particles grow. [/definition]<br/>[info]Implies link/coupling with aerosol scheme.[/info]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1244467542616" ID="Freemind_Link_904056364" MODIFIED="1250167714051" STYLE="fork" TEXT="yes">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
<node COLOR="#111111" CREATED="1244467544637" ID="Freemind_Link_31503297" MODIFIED="1250167714051" STYLE="fork" TEXT="no">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_cancel"/>
</node>
</node>
</node>
<node COLOR="#990099" CREATED="1243421955578" ID="Freemind_Link_414974984" MODIFIED="1256200475469" TEXT="NumOfReactionsAndSpecies">
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#996600" CREATED="1243421950156" FOLDED="true" ID="Freemind_Link_114942711" MODIFIED="1259248179674" TEXT="NumberOfReactions">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]The number of reactions in the stratospheric heterogeneous chemistry scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1250169579304" ID="Freemind_Link_798477784" MODIFIED="1250604655568" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
<node COLOR="#996600" CREATED="1243422663812" FOLDED="true" ID="Freemind_Link_969923922" MODIFIED="1259248172840" TEXT="NumberOfAdvectedSpecies">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]The number of advected species in the stratospheric heterogeneous chemistry scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1250169579304" ID="Freemind_Link_795037769" MODIFIED="1250604655568" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
<node COLOR="#996600" CREATED="1243422663812" FOLDED="true" ID="Freemind_Link_1355626859" MODIFIED="1259248163543" TEXT="NumberOfSteadyStateSpecies">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]The number of steady state species in the stratospheric heterogeneous chemistry scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node CREATED="1250169579304" ID="Freemind_Link_146022616" MODIFIED="1250604655568" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="full-1"/>
</node>
</node>
</node>
</node>
<node COLOR="#000000" CREATED="1244069441485" FOLDED="true" ID="Freemind_Link_1859110436" MODIFIED="1495727045182" TEXT="AtmChem_TroposphericHeterogenChemistry">
<font BOLD="true" NAME="SansSerif" SIZE="14"/>
<node COLOR="#990099" CREATED="1244058101228" ID="Freemind_Link_104726676" MODIFIED="1256200484095" TEXT="Species">
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#996600" CREATED="1244063735330" FOLDED="true" ID="Freemind_Link_663231646" MODIFIED="1264602162435" TEXT="GasPhase">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]List of gas phase species involved in tropospheric heterogeneous chemistry processes.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#111111" CREATED="1244070048872" ID="Freemind_Link_760382090" MODIFIED="1257347131654" STYLE="fork" TEXT="">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="pencil"/>
</node>
</node>
<node COLOR="#996600" CREATED="1244063743933" FOLDED="true" ID="Freemind_Link_1843933572" MODIFIED="1269598481386" TEXT="Aerosol">
<richcontent TYPE="NOTE"><html><head/><body><p>[definition]Aerosol species included in the tropospheric heterogeneous chemistry scheme.[/definition]</p></body></html></richcontent>
<font NAME="SansSerif" SIZE="14"/>
<node COLOR="#000000" CREATED="1233869783778" ID="Freemind_Link_869579204" MODIFIED="1264514522899" STYLE="fork" TEXT="sulphate">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1233869783778" ID="Freemind_Link_129744965" MODIFIED="1264599299586" STYLE="fork" TEXT="nitrate">
<font NAME="SansSerif" SIZE="14"/>
<icon BUILTIN="button_ok"/>
</node>
<node COLOR="#000000" CREATED="1233869783778" ID="Freemind_Link_473209664" MODIFIED="1264599299586" STYLE="fork" TEXT="sea salt">
<font NAME="SansSerif" SIZE="14"/>