-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
14081 lines (12756 loc) · 321 KB
/
index.html
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
<!DOCTYPE html>
<!-- saved from url=(0046)https://geos-chem.seas.harvard.edu/geos-people -->
<html lang="en" dir="ltr" class="js webkit chrome mac js">
<!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
@charset "UTF-8";
[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak,
.ng-hide:not(.ng-hide-animate) {
display: none !important;
}
ng\:form {
display: block;
}
.ng-animate-shim {
visibility: hidden;
}
.ng-anchor {
position: absolute;
}
</style>
<!--<base href="/geos-people">-->
<base href=".">
<link rel="shortcut icon" href="https://geos-chem.seas.harvard.edu/files/acmg-geos/files/favicon.png?m=1631632075">
<link rel="dns-prefetch" href="https://static.projects.iq.harvard.edu/">
<meta name="description"
content="This page lists the scientists working with GEOS-Chem and gives a brief statement of their current activity using the model. It provides links to the research web sites of individual groups for more information. Also check out presentations from the 9th International GEOS-Chem Meeting (May 2019). Listing of GEOS-Chem User Groups">
<link rel="canonical" href="https://geos-chem.seas.harvard.edu/geos-people">
<link rel="shortlink" href="https://geos-chem.seas.harvard.edu/node/1585659">
<meta property="og:type" content="article">
<meta property="og:title" content="People and Projects">
<meta property="og:description"
content="This page lists the scientists working with GEOS-Chem and gives a brief statement of their current activity using the model. It provides links to the research web sites of individual groups for more information. Also check out presentations from the 9th International GEOS-Chem Meeting (May 2019). Listing of GEOS-Chem User Groups">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="People and Projects">
<meta name="twitter:image" content="https://geos-chem.seas.harvard.edu/">
<title>People and Projects | Welcome to the GEOS-Chem Web Site</title>
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link type="text/css" rel="stylesheet" href="./css/css_33z4KGY5BknhghATEcEwnnJeljoxSXNC2qm1_tyZjU0.css"
media="screen">
<link type="text/css" rel="stylesheet" href="./css/blue_sky.css" media="all">
<link type="text/css" rel="stylesheet" href="./css/responsive.blue_sky.css" media="all">
<link href="leaflet/leaflet.css" rel="stylesheet" type="text/css" media="all">
<link href="css/jacobgroup.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="leaflet/leaflet.js"></script>
<script type="text/javascript" src="leaflet/leaflet-color-markers.js"></script>
<!--[if lte IE 8]>
<script type="text/javascript">
var os_c = document.createElement;os_c('header');os_c('nav');os_c('section');os_c('article');os_c('aside');os_c('footer');os_c('hgroup');os_c('figure');
</script>
<![endif]-->
<!-- Styles from saving web page form OpenScholar -->
<style type="text/css">
.MathJax_Hover_Frame {
border-radius: .25em;
-webkit-border-radius: .25em;
-moz-border-radius: .25em;
-khtml-border-radius: .25em;
box-shadow: 0px 0px 15px #83A;
-webkit-box-shadow: 0px 0px 15px #83A;
-moz-box-shadow: 0px 0px 15px #83A;
-khtml-box-shadow: 0px 0px 15px #83A;
border: 1px solid #A6D ! important;
display: inline-block;
position: absolute
}
.MathJax_Menu_Button .MathJax_Hover_Arrow {
position: absolute;
cursor: pointer;
display: inline-block;
border: 2px solid #AAA;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-khtml-border-radius: 4px;
font-family: 'Courier New', Courier;
font-size: 9px;
color: #F0F0F0
}
.MathJax_Menu_Button .MathJax_Hover_Arrow span {
display: block;
background-color: #AAA;
border: 1px solid;
border-radius: 3px;
line-height: 0;
padding: 4px
}
.MathJax_Hover_Arrow:hover {
color: white !important;
border: 2px solid #CCC !important
}
.MathJax_Hover_Arrow:hover span {
background-color: #CCC !important
}
</style>
<style type="text/css">
#MathJax_About {
position: fixed;
left: 50%;
width: auto;
text-align: center;
border: 3px outset;
padding: 1em 2em;
background-color: #DDDDDD;
color: black;
cursor: default;
font-family: message-box;
font-size: 120%;
font-style: normal;
text-indent: 0;
text-transform: none;
line-height: normal;
letter-spacing: normal;
word-spacing: normal;
word-wrap: normal;
white-space: nowrap;
float: none;
z-index: 201;
border-radius: 15px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
-khtml-border-radius: 15px;
box-shadow: 0px 10px 20px #808080;
-webkit-box-shadow: 0px 10px 20px #808080;
-moz-box-shadow: 0px 10px 20px #808080;
-khtml-box-shadow: 0px 10px 20px #808080;
filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')
}
#MathJax_About.MathJax_MousePost {
outline: none
}
.MathJax_Menu {
position: absolute;
background-color: white;
color: black;
width: auto;
padding: 5px 0px;
border: 1px solid #CCCCCC;
margin: 0;
cursor: default;
font: menu;
text-align: left;
text-indent: 0;
text-transform: none;
line-height: normal;
letter-spacing: normal;
word-spacing: normal;
word-wrap: normal;
white-space: nowrap;
float: none;
z-index: 201;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-khtml-border-radius: 5px;
box-shadow: 0px 10px 20px #808080;
-webkit-box-shadow: 0px 10px 20px #808080;
-moz-box-shadow: 0px 10px 20px #808080;
-khtml-box-shadow: 0px 10px 20px #808080;
filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')
}
.MathJax_MenuItem {
padding: 1px 2em;
background: transparent
}
.MathJax_MenuArrow {
position: absolute;
right: .5em;
padding-top: .25em;
color: #666666;
font-size: .75em
}
.MathJax_MenuActive .MathJax_MenuArrow {
color: white
}
.MathJax_MenuArrow.RTL {
left: .5em;
right: auto
}
.MathJax_MenuCheck {
position: absolute;
left: .7em
}
.MathJax_MenuCheck.RTL {
right: .7em;
left: auto
}
.MathJax_MenuRadioCheck {
position: absolute;
left: .7em
}
.MathJax_MenuRadioCheck.RTL {
right: .7em;
left: auto
}
.MathJax_MenuLabel {
padding: 1px 2em 3px 1.33em;
font-style: italic
}
.MathJax_MenuRule {
border-top: 1px solid #DDDDDD;
margin: 4px 3px
}
.MathJax_MenuDisabled {
color: GrayText
}
.MathJax_MenuActive {
background-color: #606872;
color: white
}
.MathJax_MenuDisabled:focus,
.MathJax_MenuLabel:focus {
background-color: #E8E8E8
}
.MathJax_ContextMenu:focus {
outline: none
}
.MathJax_ContextMenu .MathJax_MenuItem:focus {
outline: none
}
#MathJax_AboutClose {
top: .2em;
right: .2em
}
.MathJax_Menu .MathJax_MenuClose {
top: -10px;
left: -10px
}
.MathJax_MenuClose {
position: absolute;
cursor: pointer;
display: inline-block;
border: 2px solid #AAA;
border-radius: 18px;
-webkit-border-radius: 18px;
-moz-border-radius: 18px;
-khtml-border-radius: 18px;
font-family: 'Courier New', Courier;
font-size: 24px;
color: #F0F0F0
}
.MathJax_MenuClose span {
display: block;
background-color: #AAA;
border: 1.5px solid;
border-radius: 18px;
-webkit-border-radius: 18px;
-moz-border-radius: 18px;
-khtml-border-radius: 18px;
line-height: 0;
padding: 8px 0 6px
}
.MathJax_MenuClose:hover {
color: white !important;
border: 2px solid #CCC !important
}
.MathJax_MenuClose:hover span {
background-color: #CCC !important
}
.MathJax_MenuClose:hover:focus {
outline: none
}
</style>
<style type="text/css">
.MathJax_Preview .MJXf-math {
color: inherit !important
}
</style>
<style type="text/css">
.MJX_Assistive_MathML {
position: absolute !important;
top: 0;
left: 0;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0 !important;
border: 0 !important;
height: 1px !important;
width: 1px !important;
overflow: hidden !important;
display: block !important;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.MJX_Assistive_MathML.MJX_Assistive_MathML_Block {
width: 100% !important
}
</style>
<style type="text/css">
#MathJax_Zoom {
position: absolute;
background-color: #F0F0F0;
overflow: auto;
display: block;
z-index: 301;
padding: .5em;
border: 1px solid black;
margin: 0;
font-weight: normal;
font-style: normal;
text-align: left;
text-indent: 0;
text-transform: none;
line-height: normal;
letter-spacing: normal;
word-spacing: normal;
word-wrap: normal;
white-space: nowrap;
float: none;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
box-shadow: 5px 5px 15px #AAAAAA;
-webkit-box-shadow: 5px 5px 15px #AAAAAA;
-moz-box-shadow: 5px 5px 15px #AAAAAA;
-khtml-box-shadow: 5px 5px 15px #AAAAAA;
filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')
}
#MathJax_ZoomOverlay {
position: absolute;
left: 0;
top: 0;
z-index: 300;
display: inline-block;
width: 100%;
height: 100%;
border: 0;
padding: 0;
margin: 0;
background-color: white;
opacity: 0;
filter: alpha(opacity=0)
}
#MathJax_ZoomFrame {
position: relative;
display: inline-block;
height: 0;
width: 0
}
#MathJax_ZoomEventTrap {
position: absolute;
left: 0;
top: 0;
z-index: 302;
display: inline-block;
border: 0;
padding: 0;
margin: 0;
background-color: white;
opacity: 0;
filter: alpha(opacity=0)
}
</style>
<style type="text/css">
.MathJax_Preview {
color: #888
}
#MathJax_Message {
position: fixed;
left: 1em;
bottom: 1.5em;
background-color: #E6E6E6;
border: 1px solid #959595;
margin: 0px;
padding: 2px 8px;
z-index: 102;
color: black;
font-size: 80%;
width: auto;
white-space: nowrap
}
#MathJax_MSIE_Frame {
position: absolute;
top: 0;
left: 0;
width: 0px;
z-index: 101;
border: 0px;
margin: 0px;
padding: 0px
}
.MathJax_Error {
color: #CC0000;
font-style: italic
}
</style>
<style type="text/css">
.MJXp-script {
font-size: .8em
}
.MJXp-right {
-webkit-transform-origin: right;
-moz-transform-origin: right;
-ms-transform-origin: right;
-o-transform-origin: right;
transform-origin: right
}
.MJXp-bold {
font-weight: bold
}
.MJXp-italic {
font-style: italic
}
.MJXp-scr {
font-family: MathJax_Script, 'Times New Roman', Times, STIXGeneral, serif
}
.MJXp-frak {
font-family: MathJax_Fraktur, 'Times New Roman', Times, STIXGeneral, serif
}
.MJXp-sf {
font-family: MathJax_SansSerif, 'Times New Roman', Times, STIXGeneral, serif
}
.MJXp-cal {
font-family: MathJax_Caligraphic, 'Times New Roman', Times, STIXGeneral, serif
}
.MJXp-mono {
font-family: MathJax_Typewriter, 'Times New Roman', Times, STIXGeneral, serif
}
.MJXp-largeop {
font-size: 150%
}
.MJXp-largeop.MJXp-int {
vertical-align: -.2em
}
.MJXp-math {
display: inline-block;
line-height: 1.2;
text-indent: 0;
font-family: 'Times New Roman', Times, STIXGeneral, serif;
white-space: nowrap;
border-collapse: collapse
}
.MJXp-display {
display: block;
text-align: center;
margin: 1em 0
}
.MJXp-math span {
display: inline-block
}
.MJXp-box {
display: block !important;
text-align: center
}
.MJXp-box:after {
content: " "
}
.MJXp-rule {
display: block !important;
margin-top: .1em
}
.MJXp-char {
display: block !important
}
.MJXp-mo {
margin: 0 .15em
}
.MJXp-mfrac {
margin: 0 .125em;
vertical-align: .25em
}
.MJXp-denom {
display: inline-table !important;
width: 100%
}
.MJXp-denom>* {
display: table-row !important
}
.MJXp-surd {
vertical-align: top
}
.MJXp-surd>* {
display: block !important
}
.MJXp-script-box>* {
display: table !important;
height: 50%
}
.MJXp-script-box>*>* {
display: table-cell !important;
vertical-align: top
}
.MJXp-script-box>*:last-child>* {
vertical-align: bottom
}
.MJXp-script-box>*>*>* {
display: block !important
}
.MJXp-mphantom {
visibility: hidden
}
.MJXp-munderover {
display: inline-table !important
}
.MJXp-over {
display: inline-block !important;
text-align: center
}
.MJXp-over>* {
display: block !important
}
.MJXp-munderover>* {
display: table-row !important
}
.MJXp-mtable {
vertical-align: .25em;
margin: 0 .125em
}
.MJXp-mtable>* {
display: inline-table !important;
vertical-align: middle
}
.MJXp-mtr {
display: table-row !important
}
.MJXp-mtd {
display: table-cell !important;
text-align: center;
padding: .5em 0 0 .5em
}
.MJXp-mtr>.MJXp-mtd:first-child {
padding-left: 0
}
.MJXp-mtr:first-child>.MJXp-mtd {
padding-top: 0
}
.MJXp-mlabeledtr {
display: table-row !important
}
.MJXp-mlabeledtr>.MJXp-mtd:first-child {
padding-left: 0
}
.MJXp-mlabeledtr:first-child>.MJXp-mtd {
padding-top: 0
}
.MJXp-merror {
background-color: #FFFF88;
color: #CC0000;
border: 1px solid #CC0000;
padding: 1px 3px;
font-style: normal;
font-size: 90%
}
.MJXp-scale0 {
-webkit-transform: scaleX(.0);
-moz-transform: scaleX(.0);
-ms-transform: scaleX(.0);
-o-transform: scaleX(.0);
transform: scaleX(.0)
}
.MJXp-scale1 {
-webkit-transform: scaleX(.1);
-moz-transform: scaleX(.1);
-ms-transform: scaleX(.1);
-o-transform: scaleX(.1);
transform: scaleX(.1)
}
.MJXp-scale2 {
-webkit-transform: scaleX(.2);
-moz-transform: scaleX(.2);
-ms-transform: scaleX(.2);
-o-transform: scaleX(.2);
transform: scaleX(.2)
}
.MJXp-scale3 {
-webkit-transform: scaleX(.3);
-moz-transform: scaleX(.3);
-ms-transform: scaleX(.3);
-o-transform: scaleX(.3);
transform: scaleX(.3)
}
.MJXp-scale4 {
-webkit-transform: scaleX(.4);
-moz-transform: scaleX(.4);
-ms-transform: scaleX(.4);
-o-transform: scaleX(.4);
transform: scaleX(.4)
}
.MJXp-scale5 {
-webkit-transform: scaleX(.5);
-moz-transform: scaleX(.5);
-ms-transform: scaleX(.5);
-o-transform: scaleX(.5);
transform: scaleX(.5)
}
.MJXp-scale6 {
-webkit-transform: scaleX(.6);
-moz-transform: scaleX(.6);
-ms-transform: scaleX(.6);
-o-transform: scaleX(.6);
transform: scaleX(.6)
}
.MJXp-scale7 {
-webkit-transform: scaleX(.7);
-moz-transform: scaleX(.7);
-ms-transform: scaleX(.7);
-o-transform: scaleX(.7);
transform: scaleX(.7)
}
.MJXp-scale8 {
-webkit-transform: scaleX(.8);
-moz-transform: scaleX(.8);
-ms-transform: scaleX(.8);
-o-transform: scaleX(.8);
transform: scaleX(.8)
}
.MJXp-scale9 {
-webkit-transform: scaleX(.9);
-moz-transform: scaleX(.9);
-ms-transform: scaleX(.9);
-o-transform: scaleX(.9);
transform: scaleX(.9)
}
.MathJax_PHTML .noError {
vertical-align: ;
font-size: 90%;
text-align: left;
color: black;
padding: 1px 3px;
border: 1px solid
}
</style>
<!-- Style for final adjustments after saving web page form OpenScholar -->
<style type="text/css">
html {
scroll-behavior: smooth;
}
#menu-bar ul.nice-menu li {
margin-right: 8px;
}
/* Introduction submenu */
.menu-853549 {
height: 2.5em !important;
}
.menu-853549:hover>.introduction {
display: block !important;
margin-top: -1em;
padding-top: 2em;
}
.introduction>ul {
position: absolute;
background: #027ac6;
color: #fff;
font-weight: 800;
margin-left: 5.3em;
}
/* Research submenu */
.menu-853553 {
height: 2.5em !important;
}
.menu-853553:hover>.research {
display: block !important;
margin-top: -1em;
padding-top: 2em;
}
.research>ul {
position: absolute;
background: #027ac6;
color: #fff;
font-weight: 800;
margin-left: 13.8em;
}
/* Meetings submenu */
.menu-853557 {
height: 2.5em !important;
}
.menu-853557:hover>.meetings {
display: block !important;
margin-top: -1em;
padding-top: 2em;
}
.meetings>ul {
position: absolute;
background: #027ac6;
color: #fff;
font-weight: 800;
margin-left: 21.1em;
}
/* About GEOS-Chem submenu */
.menu-853563 {
height: 2.5em !important;
}
.menu-853563:hover>.about {
display: block !important;
margin-top: -1em;
padding-top: 2em;
}
.about>ul {
position: absolute;
background: #027ac6;
color: #fff;
font-weight: 800;
margin-left: 28.5em;
}
/* Documentation submenu */
.menu-853583 {
height: 2.5em !important;
}
.menu-853583:hover>.documentation {
display: block !important;
margin-top: -1em;
padding-top: 2em;
}
.documentation>ul {
position: absolute;
background: #027ac6;
color: #fff;
font-weight: 800;
margin-left: 23.8em;
}
/* Software Tools submenu */
.menu-853602 {
height: 2.5em !important;
}
.menu-853602:hover>.tools {
display: block !important;
margin-top: -1em;
padding-top: 2em;
}
.tools>ul {
position: absolute;
background: #027ac6;
color: #fff;
font-weight: 800;
margin-left: 50.4em;
}
.link_to_top {
background: #027ac6;
border-radius: .2em;
bottom: 4em;
position: fixed;
padding: .3em .75em .5em .75em;
right: 2em;
color: #ffffff !important;
text-decoration: none !important;
}
/* Map zoom in/out links */
.leaflet-touch .leaflet-bar a {
text-decoration: none !important;
}
</style>
</head>
<body class="html not-front not-logged-in no-sidebars page-node page-node- page-node-1585659 node-type-page og-context og-context-node og-context-node-1585652 navbar-on ng-scope" ng-app="openscholar" data-new-gr-c-s-check-loaded="14.1033.0" data-gr-ext-installed="">
<div id="MathJax_Message" style="display: none;"></div>
<div id="skip-link"><a href="https://geos-chem.seas.harvard.edu/geos-people#main-content" class="element-invisible element-focusable" tabindex="1">Skip to main content</a></div>
<div id="page_wrap" class="page_wrap">
<!--REGION TO HOUSE RESPONSIVE MENU. OTHER CONTENT CAN'T BE PLACED HERE-->
<div class="responive-menu-container clearfix">
<ul class="mobile-buttons num-links-3">
<li class="link-count-mobi-main first"><a href="https://geos-chem.seas.harvard.edu/geos-people#" data-target="#block-os-primary-menu"><span aria-hidden="true" class="icon-menu"></span><span class="move">Main Menu</span></a></li>
<li class="link-count-mobi-util"></li>
<li class="link-count-mobi-search last"></li>
</ul>
</div>
<!--FLEXIBLE ADMIN HEADER FOR USE BY SELECT GROUPS USING OS-->
<div id="branding_header">
<div class="branding-container clearfix">
<div class="branding-left"><a href="http://www.harvard.edu/"><img src="./People and Projects _ Welcome to the GEOS-Chem Web Site_files/harvard-logo.png" width="235" height="32" alt="University Logo"></a></div>
<div class="branding-right"><a href="https://acmg.seas.harvard.edu/">acmg</a> | <a href="http://www.harvard.edu/">HARVARD.EDU</a></div>
</div>
</div>
<div id="page" class="container page header-main content-top footer-none">
<div id="page-wrapper">
<!--header regions beg-->
<header id="header" class="clearfix" role="banner">
<div id="header-container">
<div id="header-panels" class="at-panel gpanel panel-display three-col clearfix">
<div class="region region-header-second">
<div class="region-inner clearfix">
<section id="block-boxes-1630413211" class="block block-boxes block-boxes-os_boxes_html" module="boxes" delta="1630413211">
<div class="block-inner clearfix">
<div class="block-content content" ng-non-bindable="">
<div id="boxes-box-1630413211" class="boxes-box">
<div class="boxes-box-content">
<p style="text-align:center"><img alt="Welcome to the GEOS-Chem Web Site" src="./images/img_geos-chem_logo.png" style="width:420px"></p>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</header>
<!--header regions end-->
<!--main menu region beg-->
<div id="menu-bar" class="nav region-menu-bar clearfix">
<nav id="block-os-primary-menu" class="block block-os no-title menu-wrapper menu-bar-wrapper clearfix" module="os" delta="primary-menu">
<ul class="nice-menu nice-menu-down nice-menu-primary-menu nice-menus-processed sf-js-enabled" id="nice-menu-primary-menu">
<li class="menu-900 menu-path-front first odd "><a href="https://geos-chem.seas.harvard.edu/">HOME</a></li>
<li class="menu-853549 menuparent even"><a class="menu-heading">Introduction <span style="font-size:large">▾</span></a><span class="open-submenu"></span>
<div class="introduction" style="display: none">
<ul>
<li class="menu-853682 menu-path-node-1585687 first odd "><a href="https://geos-chem.seas.harvard.edu/geos-welcome">Welcome</a></li>
<li class="menu-853686 menu-path-node-1585688 even "><a href="https://geos-chem.seas.harvard.edu/geos-overview">Overview</a></li>
<li class="menu-853692 menu-path-node-1585689 odd "><a href="https://geos-chem.seas.harvard.edu/geos-licensing">GEOS-Chem Licensing</a></li>
<li class="menu-853669 menu-path-node-1585685 even "><a href="https://geos-chem.seas.harvard.edu/geos-steering-cmte">Steering Committee</a></li>
<li class="menu-853676 menu-path-node-1585686 odd "><a href="https://geos-chem.seas.harvard.edu/geos-working-groups">Working Groups</a></li>
<li class="menu-853551 menu-path-wikigeos-chemorg-GEOS-Chem_Support_Team even last "><a href="https://geos-chem.seas.harvard.edu/support-team">Support Team</a></li>
</ul>
</div>
</li>
<li class="menu-853553 menuparent odd"><a class="menu-heading">Research <span style="font-size:large">▾</span></a><span lass="open-submenu"></span>
<div class="research" style="display: none">
<ul>
<li class="menu-853694 menu-path-node-1585659 first odd "><a href="https://geos-chem.seas.harvard.edu/geos-people" class="active">People and Projects</a></li>
<li class="menu-853555 menu-path-https--scholargooglecom-citations even "><a href="https://scholar.google.com/citations?user=ho-sNj4AAAAJ">Publications</a></li>
<li class="menu-853561 menu-path-wikigeos-chemorg-GEOS-Chem_model_development_priorities odd "><a href="http://wiki.geos-chem.org/GEOS-Chem_model_development_priorities">Model Development Priorities</a></li>
<li class="menu-854271 menu-path-node-1585793 even "><a href="https://geos-chem.seas.harvard.edu/geos-chem-narrative">How to cite GEOS-Chem</a></li>
<li class="menu-854273 menu-path-node-1585794 odd "><a href="https://geos-chem.seas.harvard.edu/geos-new-developments">New GEOS-Chem developments</a></li>
<li class="menu-853698 menu-path-wikigeos-chemorg-GEOS-Chem_newsletters even last "><a href="http://wiki.geos-chem.org/GEOS-Chem_newsletters">GEOS-Chem Newsletters</a></li>
</ul>
</li>
<li class="menu-853557 menuparent even"><a class="menu-heading">Meetings <span style="font-size:large">▾</span></a><span class="open-submenu"></span>
<div class="meetings" style="display: none">
<ul>
<li class="menu-853700 menu-path-node-1585685 first odd "><a href="https://geos-chem.seas.harvard.edu/geos-steering-cmte#meetings">Steering Committee Meetings</a></li>
<li class="menu-856309 menu-path-node-1585795 even "><a href="https://geos-chem.seas.harvard.edu/geos-meetings-2020-gca">GCA2 Meeting (2022)</a></li>
<li class="menu-856396 menu-path-node-1586321 odd "><a href="https://geos-chem.seas.harvard.edu/geos-meetings-2022-igc10">IGC10 Meeting (2022)</a></li>
<li class="menu-857188 menu-path-node-1586483 even "><a href="https://geos-chem.seas.harvard.edu/geos-meetings-2020-gce">GCE1 Meeting (2020)</a></li>
<li class="menu-857219 menu-path-node-1586486 odd "><a href="https://geos-chem.seas.harvard.edu/geos-meetings-2019-igc9">IGC9 Meeting (2019)</a></li>
<li class="menu-853559 menu-path-https--2acomucaredu-workshop-integration-geos-chem-ncar-models-agenda even "><a href="https://www2.acom.ucar.edu/workshop/integration-geos-chem-ncar-models-agenda">NCAR-GEOS-Chem meeting (2018)</a></li>
<li class="menu-857304 menu-path-node-1586522 odd "><a href="https://geos-chem.seas.harvard.edu/geos-meetings-2018-gca1">GCA1 Meeting (2018)</a></li>
<li class="menu-858721 menu-path-node-1586817 even "><a href="https://geos-chem.seas.harvard.edu/geos-meetings-2017-igc8">IGC8 Meeting (2017)</a></li>
<li class="menu-858767 menu-path-node-1586831 odd "><a href="https://geos-chem.seas.harvard.edu/geos-meetings-2015-igc7">IGC7 Meeting (2015)</a></li>
<li class="menu-859545 menu-path-node-1586997 even "><a href="https://geos-chem.seas.harvard.edu/geos-meetings-2013-igc6">IGC6 Meeting (2013)</a></li>
<li class="menu-859913 menu-path-node-1587046 odd "><a href="https://geos-chem.seas.harvard.edu/geos-meetings-2011-igc5">IGC5 Meeting (2011)</a></li>
<li class="menu-859936 menu-path-node-1587057 even "><a href="https://geos-chem.seas.harvard.edu/geos-meetings-2009-igc4">IGC4 Meeting (2009)</a></li>
<li class="menu-860311 menu-path-node-1587125 odd "><a href="https://geos-chem.seas.harvard.edu/geos-meetings-2007-igc3">IGC3 Meeting (2007)</a></li>
<li class="menu-861155 menu-path-node-1587331 even "><a href="https://geos-chem.seas.harvard.edu/geos-meetings-2005-igc2">IGC2 Meeting (2005)</a></li>
<li class="menu-861301 menu-path-node-1587366 odd last "><a href="https://geos-chem.seas.harvard.edu/geos-meetings-2003-igc1">IGC1 Meeting (2003)</a></li>
</ul>
</li>
<li class="menu-853563 menuparent odd"><a class="menu-heading">About GEOS-Chem <span style="font-size:large">▾</span></a><span class="open-submenu"></span>
<div class="about" style="display: none;">
<ul>
<li class="menu-863322 menu-path-node-1587860 first odd "><a href="https://geos-chem.seas.harvard.edu/narrative">GEOS-Chem Description</a></li>
<li class="menu-863342 menu-path-node-1587862 even "><a href="https://geos-chem.seas.harvard.edu/logo">GEOS-Chem logo</a></li>
<li class="menu-853565 menu-path-wikigeos-chemorg-GEOS-Chem_versions odd "><a href="http://wiki.geos-chem.org/GEOS-Chem_versions">Version History</a></li>
<li class="menu-853567 menu-path-wikigeos-chemorg-Guide_to_GEOS-Chem_performance even "><a href="http://wiki.geos-chem.org/Guide_to_GEOS-Chem_performance">GEOS-Chem performance</a></li>
<li class="menu-853569 menu-path-wikigeos-chemorg-GEOS-Chem_benchmarking odd "><a href="http://wiki.geos-chem.org/GEOS-Chem_benchmarking">Benchmark Simulations</a></li>
<li class="menu-853571 menu-path-wikigeos-chemorg-GEOS-Chem_nested_grid_simulations even "><a href="http://wiki.geos-chem.org/GEOS-Chem_nested_grid_simulations">Nested Grid Simulations</a></li>
<li class="menu-853573 menu-path-wikigeos-chemorg-HEMCO odd "><a href="http://wiki.geos-chem.org/HEMCO">HEMCO</a></li>
<li class="menu-853575 menu-path-wikigeos-chemorg-Emissions_overview even "><a href="http://wiki.geos-chem.org/Emissions_overview">Emissions Overview</a></li>
<li class="menu-853577 menu-path-wikigeos-chemorg-GEOS-Chem_chemistry_mechanisms odd "><a href="http://wiki.geos-chem.org/GEOS-Chem_chemistry_mechanisms">Chemistry Mechanisms</a></li>
<li class="menu-853579 menu-path-wikigeos-chemorg-GCHP_Main_Page even "><a href="http://wiki.geos-chem.org/GCHP_Main_Page">GCHP</a></li>
<li class="menu-853581 menu-path-wrfgeos-chemorg- odd "><a href="http://wrf.geos-chem.org/">WRF-GC</a></li>
<li class="menu-863346 menu-path-node-1587863 even last "><a href="https://geos-chem.seas.harvard.edu/code_data">Get Code and Data</a></li>
</ul>
</li>
<li class="menu-853583 menuparent even"><a class="menu-heading">Documentation <span style="font-size:large">▾</span></a><span class="open-submenu"></span>
<div class="documentation" style="display: none;">
<ul>
<li class="menu-853585 menu-path-manualgeos-chemorg- first odd "><a href="http://manual.geos-chem.org/" title="">GEOS-Chem Classic Manual</a></li>
<li class="menu-933200 menu-path-https--gchpreadthedocsorg even "><a href="https://gchp.readthedocs.org/" title="Manual page for GEOS-Chem "High Peforrmance" (aka GCHP)">GCHP manual</a></li>
<li class="menu-853587 menu-path-wikigeos-chemorg- odd "><a href="http://wiki.geos-chem.org/">GEOS-Chem Wiki</a></li>
<li class="menu-853589 menu-path-cloudgeos-chemorg- even "><a href="http://cloud.geos-chem.org/">GEOS-Chem on cloud computing platforms</a></li>
<li class="menu-853591 menu-path-youtubegeos-chemorg- odd "><a href="http://youtube.geos-chem.org/">GEOS-Chem Youtube channel</a></li>
<li class="menu-853593 menu-path-wikigeos-chemorg-GEOS-Chem_overview even "><a href="http://wiki.geos-chem.org/GEOS-Chem_overview#GEOS-Chem_Guides">GEOS-Chem Guides</a></li>
<li class="menu-863363 menu-path-node-1587865 odd "><a href="https://geos-chem.seas.harvard.edu/geos-presentations">Presentations on new GEOS-Chem model developments</a></li>
<li class="menu-853595 menu-path-wikigeos-chemorg-Frequently_asked_questions_about_GEOS-Chem even "><a href="http://wiki.geos-chem.org/Frequently_asked_questions_about_GEOS-Chem">GEOS-Chem FAQ</a></li>
<li class="menu-853597 menu-path-wikigeos-chemorg-Speeding_up_GEOS-Chem odd "><a href="http://wiki.geos-chem.org/Speeding_up_GEOS-Chem">Speeding up GEOS-Chem</a></li>