-
Notifications
You must be signed in to change notification settings - Fork 0
/
Publications.html
1026 lines (954 loc) · 80.9 KB
/
Publications.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>
<html>
<head>
<title>Publications</title>
<meta name="description" content="website description" />
<meta name="keywords" content="website keywords, website keywords" />
<meta http-equiv="content-type" content="text/html; charset=windows-1252" />
<link rel="stylesheet" type="text/css" href="Style/style.css" title="style" />
</head>
<body>
<div id="main">
<header>
<div id="background_img">
<div id="logo_text">
<a name="Top"><h1><a href="index.html"><i>Computational Environmental Science Lab</i></h1></a>
<img id="logo_img" src="Style/CESLAB.jpg"/>
</div>
<!----------------- Menu ------------------>
<div id="menubar">
<ul id="menu">
<li id="menu_headers"><a href="Opportunities.html">Opportunities</a> </li>
<li id="menu_headers"><a href="Publications.html"><span class="selected">Publications</span></a>
<div class= "dropdown">
<ul id="smaller">
<li><a href="Publications.html#PeerArticles"> Peer Reviewed Articles </a></li>
<li><a href="Publications.html#Magazine"> Magazine Articles </a></li>
<li><a href="Publications.html#PeerBook"> Peer Reviewed Book Chapters </a></li>
<li><a href="Publications.html#Reports"> Reports </a></li>
</ul>
</div>
</li>
<li id="menu_headers" ><a href="People.html">People</a>
<div class="dropdown">
<ul>
<li><a href="People.html#Principal"> Principal Investigator </a></li>
<li><a href="People.html#Post"> Post-Doctoral Researchers </a></li>
<li><a href="People.html#Visit"> Visiting Scientists </a></li>
<li><a href="People.html#Grad"> Graduate Students </a></li>
<li><a href="People.html#Under"> Undergraduate Students </a></li>
<li><a href="People.html#High"> High School Students </a></li>
</ul>
</div>
</li>
<li id="menu_headers"><a href="Research.html">Research</a></li>
<li id="menu_headers"><a href="index.html">Home</a></li>
</ul>
</div>
</div>
</div>
</header>
</div>
<!---------------- Content ------------------------>
<div id="site_content">
<div id="content">
<div id="MainPublication">
<table>
<a name="PeerArticles"></a> <th colspan="3"><h2> Peer Reviewed Articles</h2></th>
<tr>
<td> 2017 </td>
<td>
<ul>
<li>
<span class="bold">Impact of global climate change on ozone, particulate matter, and secondary organic aerosol concentrations in California: a model perturbation analysis.
</span>
<br/> Horne J.R. and Dabdub D.<br/>
<span class="italic"> Atmospheric Environment</span>, (2017) doi: 10.1016/j.atmosenv.2016.12.049
<a href = "PublicationFiles/2017_Horne-Dabdub_AE.pdf"> [PDF]</a>
<a href="PublicationFiles/2017_Horne-Dabdub_AE_SI.pdf" class="second_link"> Additional Material </a>
</li><br/>
<li>
<span class="bold">Description and evaluation of the Multiscale Online Nonhydrostatic Atmosphere Chemistry model (NMMB-MONARCH) version 1.0: gas-phase chemistry at global scale
</span>
<br/> Alba Badia, Oriol Jorba, Apostolos Voulgarakis, Donald Dabdub, Carlos Pérez García-Pando, Andreas Hilboll, María Gonçalves, and Zavisa Janjic<br/>
<span class="italic"> Geosci. Model Dev.</span> <b>10</b>, (2017) 609-638. doi:10.5194/gmd-10-609-2017
<a href = "http://www.geosci-model-dev.net/10/609/2017/"> [Link]</a>
</li>
</td>
</tr>
<tr>
<td> 2016 </td>
<td>
<ul>
<li>
<span class="bold">Assessment of the emissions and air quality Impacts of biomass and biogas use in California. </span>
<br/> Carreras-Sospedra M., Williams R. and Dabdub D. <br/>
<span class="italic"> Journal of the Air & Waste
Management Association </span> <span class="bold">66</span>,(2016) 134-150. doi:10.1080/10962247.2015.1087892
<a href= "PublicationFiles/2016_Assessment of the Emissions and Air Quality Impacts of Biomass and Biogas Use in California.pdf"> [PDF] </a>
</li><br/>
<li>
<span class="bold">Development of aroCACM/MPMPO 1.0: a model to simulate secondary organic aerosol from aromatic precursors in regional models. </span>
<br/> Dawson M. L., Xu J., Griffin R. J., and Dabdub D.<br/>
<span class="italic"> Geosci. Model Dev. </span> <span class="bold">9</span>,(2016) 2143-2151. doi:10.5194/gmd-9-2143-2016
<a href= "PublicationFiles/2016_Development of aroCACM.pdf"> [PDF] </a>
</li><br/>
<li>
<span class="bold">Episodic air quality impacts of plug-in electric vehicles.</span>
<br/> Razeghi G., Carreras-Sospedra M., Brown T., Brouwer J., Dabdub D., and Samuelsen S.<br/>
<span class="italic"> Atmospheric Environment </span> <span class="bold">9</span>,(2016) doi: 10.1016/j.atmosenv.2016.04.031
<a href= "PublicationFiles/2016_Razeghi-et-al_AE.pdf"> [PDF] </a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2015 </td>
<td>
<ul>
<li>
<span class="bold">The future of airborne sulfur-containing particles in the absence of fossil fuel sulfur dioxide emissions.</span>
<br/> Perraud V., Horne J.R., Martinez A.S., Kalinowski J., Meinardi S., Dawson M.L., Wingen L.M., Dabdub D., Black D.R., Gerber R.B., and Finlayson-Pitts B.J.<br/>
<span class="italic"> Proc. Natl. Acad. Sci. </span> <span class="bold">112</span>,(2015) 13514-13519. doi: 10.1073/pnas.1510743112
<a href = "PublicationFiles/2015_Perraud-et-al_PNAS.pdf"> [PDF]</a>
<a href="PublicationFiles/2015_Perraud-et-al_PNAS_SI.pdf" class="second_link"> Additional Material </a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2014 </td>
<td>
<ul>
<li>
<span class="bold">Air quality impacts of liquefied natural gas in the South Coast Air Basin of California.</span>
<br/> Carreras-Sospedra M., Lunden M.M., Brouwer J., Singer B.C., and Dabdub D.<br/>
<span class="italic"> Journal of Natural Gas Science and Engineering </span> <span class="bold">21</span>,(2014) 680-690. doi: 10.1016/j.jngse.2014.09.025
<a href = "PublicationFiles/2014_Carreras-et-al_JNGSE.pdf"> [PDF]</a>
<a href="PublicationFiles/2014_Carreras-et-al_JNGSE_SI.pdf" class="second_link">
Additional Material </a><br/><br/>
</li><br/>
<li>
<span class="bold">Rapid formation of molecular bromine from deliquesced NaBr aerosol in the presence of ozone and UV light.</span>
<br/> Nissenson P., Wingen L.M., Hunt S.W., Finlayson-Pitts B.J., Dabdub D.<br/>
<span class="italic"> Atmospheric Environment</span> <span class="bold">89</span>,(2014) 491-506. doi: 10.1016/j.atmosenv.2014.02.056
<a href = "PublicationFiles/2014_Nissenson-et-al_AE.pdf"> [PDF]</a>
<a href="PublicationFiles/2014_Nissenson-et-al_AE_SI.pdf" class="second_link">
Additional Material </a><br/><br/>
</li><br/>
<li>
<span class="bold">Emission factor estimation in regional air quality studies of residential natural gas fuel interchangeability. </span>
<br/>Martinez A., Jani A., Dabdub D.<br/>
<span class="italic"> Fuel</span> <span class="bold">119</span>,(2014) 129-140. doi: 10.1016/j.fuel.2013.11.018
<a href = "PublicationFiles/2014_Martinez-et-al_FUEL.pdf"> [PDF]</a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2013 </td>
<td>
<ul>
<li>
<span class="bold">Secondary organic aerosol formation from naphthalene roadway emissions in the South Coast Air Basin of California.</span>
<br/> Cohan A., Eiguren-Fernandez A., Miguel A.H., Dabdub D.<br/>
<span class="italic"> Int. J. of Environ. & Pollution </span> <span class="bold">52</span>,(2013) 206-224. doi: 10.1504/IJEP.2013.058461
<a href = "PublicationFiles/2013_Cohan-et-al_IJEP.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Emission estimates of HCFCs and HFCs in California from the 2010 CalNex study.</span>
<br/> arletta B., Carreras-Sospedra M., Cohan A., Nissenson P., Dabdub D., Meinardi S., Atlas E., Lueb R., Holloway J.S., Ryerson T.B., Pederson J., VanCuren R.A., Blake D.R.<br/>
<span class="italic"> J. Geophys. Res. </span> <span class="bold">118</span>,(2013) 2019-2030. doi: 10.1002/jgrd.50209
<a href = "PublicationFiles/2013_Barletta-et-al_JGR.pdf"> [PDF]</a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2012 </td>
<td>
<ul>
<li>
<span class="bold">Images reveal that atmospheric particles can undergo liquid-liquid phase separations.</span>
<br/> You Y., Renbaum-Wolff L., Carreras-Sospedra M., Hanna S.J., Hiranuma N., Kamal S., Smith M.L., Zhang X.L., Weber R.J., Shilling J.E., Dabdub D., Martin S.T., Bertram A.K.<br/>
<span class="italic"> Proc. Natl. Acad. Sci.</span> <span class="bold">109</span>,(2012) 13188-13193. doi: 10.1073/pnas.1206414109
<a href = "PublicationFiles/2012_You-et-al_PNAS.pdf"> [PDF]</a>
</li><br/>
<li>
<span <class="bold">Potential significance of photoexcited NO<sub>2</sub> on global air quality with the NMMB/BSC chemical transport model.</span>
<br/>Jorba O., Dabdub D., Blaszczak-Boxe C., Perez C., Janjic Z., Baldasano J.M., Spada M., Badia A., Goncalves, M.<br/>
<span class="italic"> J. Geophys. Res. </span> <span class="bold">117</span>,D13301, (2012) doi: 10.1029/2012JD017730
<a href= "PublicationFiles/2012_Jorba-et-al_JGR.pdf"> [PDF] </a>
</li><br/>
<li>
<span class="bold">Impact of HONO sources on the performance of mesoscale air quality models. </span>
<br/>Gonçalves M., Dabdub D., Chang W.L., Jorba O.and Baldasano J.M.<br/>
<span class="italic"> Atmospheric Environment </span> <span class="bold">54</span>,(2012) 168-176. doi: 10.1016/j.atmosenv.2012.02.079
<a href= "PublicationFiles/2012_Goncalves-et-al_AE.pdf"> [PDF] </a>
</li><br/>
<li>
<span class="bold">Nonequilibrium atmospheric secondary organic aerosol formation and growth. </span>
<br/> Perraud V., Bruns E.A., Ezell M.J., Johnson SN., Yu Y., Alexander M.L., Zelenyuk A., Imre D., Chang W.L., Dabdub D., Pankow J.F., Finlayson-Pitts B.J.<br/>
<span class="italic"> Proc. Natl. Acad. Sci. </span> <span class="bold">109</span>,(2012) (2012) 2836-2841. doi: 10.1073/pnas.1119909109
<a href= "PublicationFiles/2012_Perraud-et-al_PNAS.pdf"> [PDF] </a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2011 </td>
<td>
<ul>
<li>
<span class="bold">Future impacts of distributed power generation on ambient ozone and particulate matter concentrations in the San Joaquin Valley of California. </span>
<br/> Vutukuru S., Carreras-Sospedra M., Brouwer J. and Dabdub D.<br/>
<span class="italic"> J. Air & Waste Manage. Assoc. </span> <span class="bold">61</span>, (2011) 1319-1333. doi: 10.1080/10473289.2011.603990
<a href = "PublicationFiles/2011_Vutukuru-et-al_JAWMA.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Projecting full build-out environmental impacts and roll-out strategies associated with viable hydrogen fueling infrastructure strategies.</span>
<br/> Stephens-Romero S.D., Brown T.M., Carreras-Sospedra M., Kang J.E., Brouwer J., Dabdub D., Recker W.W. and Samuelsen G.S. <br/>
<span class="italic"> International Journal of Hydrogen Energy</span> <span class="bold">3</span>, (2011) 14309-14323. doi: 10.1016/j.ijhydene.2011.08.005
<a href = "PublicationFiles/2011_Stephens-Romero-et-al_IJHE.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">HFC-152a and HFC-134a emission estimates and characterization of CFCs, CFC replacements, and other halogenated solvents measured during the 2008 ARCTAS campaign (CARB phase) over the South Coast Air Basin of California.</span>
<br/> Barletta B., Nissenson P., Meinardi S., Dabdub D., Rowland F., VanCuren R. A., Pederson J. and Blake D. R. <br/>
<span class="italic"> Atmospheric Chemistry and Physics </span> <span class="bold">10</span>, (2011) 2655-2669. doi: 10.5194/acp-11-2655-2011
<a href = "PublicationFiles/2011_Barletta-et-al_ACP.pdf"> [PDF]</a>
<a href="PublicationFiles/2011_Barletta-et-al_ACP_SI.pdf" class="second_link">
Support Info </a>
</li><br/>
<li>
<span class="bold">High-resolution pollutant transport in the San Pedro Bay of California.</span><br/>Cohan A., Wu J. and Dabdub D. <br/>
<span class="italic"> Atmospheric Pollution Research </span> <span class="bold">2</span>, (2011) 237-246. doi: 10.5094/APR.2011.030
<a href = "PublicationFiles/2011_Cohan-et-al_APR.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Heterogeneous and homogeneous atmospheric chemistry, ambient measurements and model calculations of N2O5: A review. </span><br/>Chang W.L., Bhave P.V., Brown S.S., Riemer N., Stutz J. and Dabdub D. <br/>
<span class="italic"> Aerosol Science & Technology </span> <span class="bold">45</span>, (2011) 665-695. doi: 10.1080/02786826.2010.551672
<a href = "PublicationFiles/2011_Chang-et-al_AST.pdf"> [PDF]</a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2010 </td>
<td>
<ul>
<li>
<span class="bold">Evidence of the water-cage effect on the photolysis of NO3- and FeOH2+. Implications of this effect and of H2O2 surface accumulation on photochemistry at the air-water interface of atmospheric droplets.</span>
<br/> Nissenson P., Dabdub D., Das R., Maurino V., Minero C. and Vione D. <br/>
<span class="italic"> Atmospheric Environment </span> <span class="bold">44</span>,(2010) 4859-4866. doi: 10.1016/j.atmosenv.2010.08.035
<a href = "PublicationFiles/2010_Nissenson-et-al_AE.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">A full year evaluation of the CALIOPE-EU air quality modeling system over Europe for 2004.</span>
<br/> Pay M.T., Piot M., Jorba O., Gass S., Gonçalves M., Basart S., Dabdub D., Jimenez-Guerrero P. and Baldasano J.M. <br/>
<span class="italic"> Atmospheric Environment </span> <span class="bold">44</span>,(2010) 3322-3342. doi: 10.1016/j.atmosenv.2010.05.040
<a href = "PublicationFiles/2010_Pay-et-al_AE.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Central power generation versus distributed generation - an air quality assessment in the South Coast Air Basin of California.</span>
<br/> Carreras-Sospedra M., Vutukuru S., Brouwer J. and Dabdub D. <br/>
<span class="italic"> Atmospheric Environment </span> <span class="bold">44</span>,(2010) 3215-3223. doi: 10.1016/j.atmosenv.2010.05.017
<a href = "PublicationFiles/2010_Carreras-et-al_AE.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Partitioning phase preference for secondary organic aerosol in an urban atmosphere. </span>
<br/>Chang W. L., Griffin R. J. and Dabdub D. <br/>
<span class="italic"> Proc. Natl. Acad. Sci.</span> <span class="bold">107</span>,(2010) 6705-6710. doi: 10.1073/pnas.0911244107
<a href = "PublicationFiles/2010_Chang-et-al_PNAS.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">A new aerosol flow system for photochemical and thermal studies of tropospheric aerosols. </span>
<br/>Ezell M.J., Johnson S.N., Yu Y., Perraud V., Bruns E.A., Alexander M.L., Zelenyuk A., Dabdub D. and Finlayson-Pitts B.J. <br/>
<span class="italic"> Aerosol Science & Technology</span> <span class="bold">44</span>,(2010) 329-338. doi: 10.1080/02786821003639700
<a href = "PublicationFiles/2010_Ezell-et-al_AST.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Impact of the Knudsen number and mass transfer expression on multi-phase kinetic modeling.</span>
<br/>Pokkunuri P., Nissenson P. and Dabdub D. <br/>
<span class="italic"> Atmospheric Environment</span> <span class="bold">44</span>,(2010) 153-163. doi: 10.1016/j.atmosenv.2009.10.014
<a href = "PublicationFiles/2010_Pokkunuri-et-al_AE.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Impacts of electronically photo-excited NO2 on air pollution in the South Coast Air Basin of California.</span>
<br/>Ensberg J.J., Carreras-Sospedra M. and Dabdub D. <br/>
<span class="italic"> Atmospheric Chemistry and Physics</span> <span class="bold">10</span>,(2010) 1171-1181. doi: 10.5194/acp-10-1171-2010
<a href = "PublicationFiles/2010_Ensberg-et-al_ACP.pdf"> [PDF]</a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2009 </td>
<td>
<ul>
<li>
<span class="bold">Mass conservative, positive definite integrator for atmospheric chemical dynamics. </span>
<br/> Nguyen K., Caboussat A. and Dabdub D.<br/>
<span class="italic"> Atmospheric Environment </span> <span class="bold">43</span>,(2009) 6287-6295. doi: 10.1016/j.atmosenv.2009.09.032
<a href = "PublicationFiles/2009_Nguyen-et-al_AE.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Determining air quality and greenhouse gas impacts of hydrogen infrastructure and fuel cell vehicles. </span>
<br/> Stephens-Romero S., Carreras-Sospedra M., Brouwer J., Dabdub D. and Samuelsen S. <br/>
<span class="italic"> Environmental Science & Technology </span> <span class="bold">43</span>,(2009) 9022-9029. doi: 10.1021/es901515y
<a href = "PublicationFiles/2009_Stephens-Romero-et-al_EST.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Potential for atmospheric driven lead paint degradation in the South Coast Air Basin of California. </span>
<br/> Cohan A. J., Edwards R. D., Kleinman M. T. and Dabdub D. <br/>
<span class="italic">Environmental Science & Technology </span> <span class="bold">43</span>,(2009) 8881-8887. doi: 10.1021/es901360j
<a href = "PublicationFiles/2009_Cohan-et-al_EST.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Chlorine activation indoors and outdoors via surface-mediated reactions of nitrogen oxides with hydrogen chloride. </span>
<br/> Raff J. D., Njegic B., Chang W. L., Gordon M. S., Dabdub D., Gerber R. B. and Finlayson-Pitts B. J. <br/>
<span class="italic">Proc. Natl. Acad. Sci. </span> <span class="bold">106</span>,(2009)
<a href = "PublicationFiles/2009_Raff-et-al_PNAS.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Probing the sensitivity of gaseous Br<sub>2</sub> production from the oxidation of aqueous bromide-containing aerosols and atmospheric implications. </span>
<br/> Nissenson P., Packwood D. M., Hunt S. H., Finlayson-Pitts B. J. and Dabdub D. <br/>
<span class="italic">Atmospheric Environment </span> <span class="bold">43</span>,(2009) 3951-3962. doi: 10.1016/j.atmosenv.2009.04.006
<a href = "PublicationFiles/2009_Nissenson-et-al_AE.pdf"> [PDF]</a>
</li><br/>
</ul>
</td>
</tr>
<tr>
<td> 2008 </td>
<td>
<ul>
<li>
<span class="bold">Influence of the public transportation system on the air quality of a major urban center. A case study: Milan, Italy.</span>
<br/> Meinardi S., Nissenson P., Barletta B., Dabdub D., Rowland F. S. and Blake D. R. <br/>
<span class="italic"> Atmospheric Environment </span> <span class="bold">42</span>, (2008) 7915-7923. doi: 10.1016/j.atmosenv.2008.07.046
<a href = "PublicationFiles/2008_Meinardi-et-al_AE.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Sensitivity and uncertainty analysis of the mechanism of gas-phase chlorine production from NaCl aerosols in the MAGIC model.</span>
<br/>Nissenson P., Thomas J.L., Finlayson-Pitts B. J. and Dabdub D. <br/>
<span class="italic"> Atmospheric Environment </span> <span class="bold">42</span>, (2008) 6934-6941. doi: 10.1016/j.atmosenv.2008.04.041
<a href = "PublicationFiles/2008_Nissenson-et-al_AE.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">A methodology for developing distributed generation scenarios in urban areas using geographical information systems. </span>
<br/>Medrano M., Brouwer J., Carreras-Sospedra M., Rodriguez M. A., Dabdub D. and Samuelsen G. S.<br/>
<span class="italic"> Int. J. Energy Tech. Pol</span> <span class="bold">6</span>, (2008) 413-434. doi: 10.1504/IJETP.2008.019958
<a href = "PublicationFiles/2008_Medrano-et-al_IJETP.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Air quality impacts of distributed energy resources implemented in the Northeastern United States. </span>
<br/> Carreras-Sospedra M., Dabdub D., Brouwer J., Knipping E., Kumar N., Darrow K., Hampson A. and Hedman B.<br/>
<span class="italic"> J. Air & Waste Manage. Assoc., </span> <span class="bold">6</span>, (2008) 902-912. doi: 10.3155/1047-3289.58.7.902
<a href = "PublicationFiles/2008_Carreras-et-al_JWMA.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Modeling the effects of ship emissions on coastal air quality: A case study of southern California. </span>
<br/> Vutukuru S. and Dabdub D. <br/>
<span class="italic"> Atmospheric Environment </span> <span class="bold">42</span>, (2008) 3751-3764. doi: 10.1016/j.atmosenv.2007.12.073
<a href = "PublicationFiles/2008_Vutukuru-Dabdub_AE.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Influence of sea-salt activated chlorine and surface-mediated renoxification on the weekend effect in the South Coast Air Basin of California. </span>
<br/> Cohan A., Chang W., Carreras-Sospedra M. and Dabdub D. <br/>
<span class="italic"> Atmospheric Environment </span> <span class="bold">42</span>, (2008) 3115-3129. doi: 10.1016/j.atmosenv.2007.11.046
<a href = "PublicationFiles/2008_Cohan-et-al_AE.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Rethinking ozone production. </span>
<br/> Wennberg P. O. and Dabdub D.<br/>
<span class="italic"> Science </span> <span class="bold">319</span>, (2008) 1624-1625. doi: 10.1126/science.1155747
<a href = "PublicationFiles/2008_Wennberg-Dabdub_Science.pdf"> [PDF]</a>
</li><br/>
</ul>
</td>
</tr>
<tr>
<td> 2007 </td>
<td>
<ul>
<li>
<span class="bold">Air quality impacts of distributed power generation in the South Coast Air Basin of California 2: Model uncertainty and sensitivity analysis.</span>
<br/> Rodriguez M. A., Brouwer J., Samuelsen G. S. and Dabdub D.<br/>
<span class="italic"> Atmospheric Environment </span> <span class="bold">41</span>, (2007) 5618-5635. doi: 10.1016/j.atmosenv.2007.02.049
<a href = "PublicationFiles/2007_Rodriguez-et-al_AE.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Addition. Gas-phase molecular halogen formation from NaCl and NaBr aerosols: When are interface reactions important?</span>
<br/> Thomas J. L., Jimenez-Aranda A., Finlayson-Pitts B. J. and Dabdub D.<br/>
<span class="italic"> J. Phys. Chem. A </span> <span class="bold">111</span>, (2007) 7243-7244. doi: 10.1021/jp073927v
<a href = "PublicationFiles/2007_Thomas-et-al_JPCA.pdf">[PDF]</a>
</li><br/>
<li>
<span class="bold">Contribution of gas phase oxidation of volatile organic compounds to atmospheric carbon monoxide levels in two areas of the United States. </span>
<br/> Griffin R.J., Chen J., Carmody K., Vutukuru S. and Dabdub D.<br/>
<span class="italic"> J. Geophys. Res. </span> <span class="bold">112</span>, D10S17, (2007) doi: 10.1029/2006JD007602
<a href = "PublicationFiles/2007_Griffin-et-al_JGR.pdf">[PDF]</a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2006 </td>
<td>
<ul>
<li>
<span class="bold">Enhanced photolysis in aerosols: evidence for important surface effects. </span>
<br/> Nissenson P., Knox C. J. H., Finlayson-Pitts B. J., Phillips L. F. and Dabdub D. <br/>
<span class="italic"> Phys. Chem. Chem. Phys. </span> <span class="bold">8</span>, (2006) 4700-4710. doi: 10.1039/b609219e
<a href = "PublicationFiles/2006_Nissenson-et-al_PCCP.pdf">[PDF]</a>
</li><br/>
<li>
<span class="bold">Air quality impacts of distributed power generation in the South Coast Air Basin of California 1: Scenario development and modeling analysis. </span>
<br/> Rodriguez M. A., Carreras-Sospedra M., Medrano M., Brouwer J., Samuelsen G. S. and Dabdub D. <br/>
<span class="italic"> Atmospheric Environment</span> <span class="bold">40</span>, (2006) 5508-5521. doi: 10.1016/j.atmosenv.2006.03.054
<a href = "PublicationFiles/2006_Rodriguez-et-al_AE.pdf">[PDF]</a>
</li><br/>
<li>
<span class="bold">Air quality modeling in the South Coast Air Basin of California: What do the numbers really mean? </span>
<br/> Carreras-Sospedra M., Dabdub D., Rodriguez M. and Brouwer J. <br/>
<span class="italic"> J. Air & Waste Manage. Assoc.</span> <span class="bold">56</span>, (2006) 1184-1195. doi: 10.1080/10473289.2006.10464530
<a href = "PublicationFiles/2006_Carreras-et-al_JWMA.pdf">[PDF]</a>
</li><br/>
<li>
<span class="bold">Simulation and analysis of secondary organic aerosol dynamics in the South Coast Air Basin of California</span>
<br/> Vutukuru S., Griffin R. J. and Dabdub D. <br/>
<span class="italic"> J. Geophys. Res. </span> <span class="bold">111</span>, D10S12, (2006) doi: 10.1029/2005JD006139
<a href = "PublicationFiles/2005_Vutukuru-et-al_JGR.pdf">[PDF]</a>
</li><br/>
<li>
<span class="bold">Gas-phase molecular halogen formation from NaCl and NaBr aerosols: when are interface reactions important? </span>
<br/> Thomas J., Jimenez-Aranda A., Finlayson-Pitts B. J. and Dabdub D. <br/>
<span class="italic"> J. Phys. Chem. A, </span> <span class="bold">110</span>,(2006) 1859-1867. doi: 10.1021/jp054911c
<a href = "PublicationFiles/2006_Thomas-et-al_JPCA.pdf">[PDF]</a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2005 </td>
<td>
<ul>
<li>
<span class="bold">Comment on "Semiempirical model for organic aerosol growth by acid-catalyzed heterogeneous reactions of carbonyls".</span>
<br/> Barsanti K. C., Pankow J. F., Dabdub D., Griffin R. J. and Seinfeld J. H.<br/>
<span class="italic"> Environ. Sci. Technol. </span> <span class="bold">39</span>, (2005) 8108--8109. doi: 10.1021/es0512529
<a href = "PublicationFiles/2005_Barsanti-et-al_EST.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Development and initial evaluation of a dynamic species-resolved model for gas-phase chemistry and size-resolved gas/particle partitioning associated with secondary organic aerosol formation. </span>
<br/> Griffin R. J., Dabdub D. and Seinfeld J. H.<br/>
<span class="italic"> J. Geophys. Res. </span> <span class="bold">110</span>, D05304, (2005) doi: 10.1029/2004JD005219
<a href = "PublicationFiles/2005_Griffin-Dabdub-Seinfeld_JGR.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Calculation of incremental secondary organic aerosol reactivity.</span>
<br/> Carreras-Sospedra, M., Griffin R. J. and Dabdub D. <br/>
<span class="italic"> Environ. Sci. Technol. </span> <span class="bold">39</span>, (2005) 1724-1730. doi: 10.1021/es0495359
<a href = "PublicationFiles/2005_Carreras-et-al_EST.pdf"> [PDF]</a>
</li><br/>
</ul>
</td>
</tr>
<tr>
<td> 2004 </td>
<td>
<ul>
<li>
<span class="bold">Formation of molecular bromine from the reaction of ozone with deliquesced NaBr aerosol: Evidence for interface chemistry </span>
<br/> Hunt S. W., Roeselová M., Wang W., Wingen L. M., Knipping E. M., Tobias D. J., Dabdub D. and Finlayson-Pitts B. J. <br/>
<span class="italic">J. Phys. Chem. A. </span> <span class="bold">108</span>, (2004) 11559-11572. doi: 10.1021/jp0467346
<a href = "PublicationFiles/2004_Hunt-et-al_JPCA.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Three-dimensional simulations of inorganic aerosol distributions in east Asia during spring 2001. </span>
<br/> Tang Y., Carmichael G. R., Seinfeld J. H., Dabdub D., Weber R. J., Huebert B., Clarke A. D., Guazzotti S. A., Sodeman D. A., Prather K. A., Uno I., Woo J. H., Yienger J. J., Streets D. G., Quinn P. K., Johnson J. E., Song C. H., Grassian V. H., Sandu A., Talbot R. W. and Dibb J. E.<br/>
<span class="italic">J. Geophys. Res. </span> <span class="bold">109</span>, D19S23, (2004) doi: 10.1029/2003JD004201
<a href = "PublicationFiles/2004_Tang-et-al_JGR2.pdf"> [PDF]</a>
</li><br>
<li>
<span class="bold">Multiscale simulations of tropospheric chemistry in the eastern Pacific and on the US West Coast during spring 2002. </span>
<br/> Tang Y., Carmichael G. R., Horowitz L. W., Uno I., Woo J. H., Streets D. G., Dabdub D., Kurata G., Sandu A., Allan J., Atlas E., Flocke F., Huey L. G., Jakoubek R. O., Millet D. B., Quinn P. K., Roberts J. M., Worsnop D. R., Goldstein A., Donnelly S., Schauffler S., Stroud V., Johnson K., Avery M. A., Singh H. B. and Apel E. C.<br/>
<span class="italic">J. Geophys. Res. </span> <span class="bold">109</span>, D23S11, (2004) doi: 10.1029/2004JD004513
<a href = "PublicationFiles/2004_Tang-et-al_JGR1.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Comment on "Instantaneous secondary organic aerosol yields and their comparison with overall aerosol yields for aromatic and biogenic hydrocarbons" by Weimin Jiang. </span>
<br/> Knipping E. M., Griffin R. J., Bowman F. M., Pun B., Seigneur C., Dabdub D. and Seinfeld J. H. <br/>
<span class="italic">Atmospheric Environment </span> <span class="bold">38</span>, (2004) 2759-2761. doi: 10.1016/j.atmosenv.2004.02.017
<a href = "PublicationFiles/2004_Knipping-et-al_AE.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">IMAGES-SCAPE2: A modeling study of size and chemically resolved aerosol thermodynamics in a global chemical transport model. </span>
<br/> Rodriguez M. A. and Dabdub D. <br/>
<span class="italic">J. Geophys. Res. </span> <span class="bold">109</span>, D02203, (2004) doi: 10.1029/2003JD003639
<a href = "PublicationFiles/2004_Rodriguez-Dabdub_JGR.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Modeling the oxidative capacity of the atmosphere of the South Coast Air Basin of California: 1. Ozone formation metrics. </span>
<br/> Griffin R. J., Revelle M. K. and Dabdub D. <br/>
<span class="italic"> Environ. Sci. Technol. </span> <span class="bold">38</span>, (2004) 746-752. doi: 10.1021/es0341283
<a href = "PublicationFiles/2004_Griffin-Revell-Dabdub_EST.pdf"> [PDF]</a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2003 </td>
<td>
<ul>
<li>
<span class="bold">Comparison of photochemical mechanisms for air quality modeling.</span>
<br/> Jimenez P., Baldasano J.M. and Dabdub D. <br/>
<span class="italic">Atmospheric Environment </span> <span class="bold">37</span>, (2003) 4179-4194. doi: 10.1016/S1352-2310(03)00567-3
<a href = "PublicationFiles/2003_Jimenez-et-al_AE.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Monte Carlo uncertainty and sensitivity analysis of the CACM chemical mechanism. </span>
<br/> Rodriguez M. A. and Dabdub D. <br/>
<span class="italic">J. Geophys. Res.</span> <span class="bold">108</span>, (D15), 4443, (2003) doi: 10.1029/2002JD003281
<a href = "PublicationFiles/2003_Rodriguez-Dabdub_JGR.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Development and analysis of a non-splitting solution for three-dimensional air quality models. </span>
<br/> Nguyen K. and Dabdub D. <br/>
<span class="italic">Atmospheric Environment</span> <span class="bold">37</span>, (2003) 3741-3748. doi: 10.1016/S1352-2310(03)00348-0
<a href = "PublicationFiles/2003_Nguyen-Dabdub_AE.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">A coupled hydrophobic-hydrophilic model for predicting secondary organic aerosol formation. </span>
<br/> Griffin R. J., Nguyen K., Dabdub D. and Seinfeld J. H. <br/>
<span class="italic">Journal of Atmospheric Chemistry </span> <span class="bold">44</span>, (2003) 171-190. doi: 10.1023/A:1022436813699
<a href = "PublicationFiles/2003_Griffin-et-al_JAC.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Impact of chlorine emissions from sea-salt aerosol on coastal urban ozone. </span>
<br/> Knipping E. M. and Dabdub D. <br/>
<span class="italic">Environ. Sci. Technol. </span> <span class="bold">37</span>, (2003) 275-284. doi: 10.1021/es025793z
<a href = "PublicationFiles/2003_Knipping-Dabdub_EST.pdf"> [PDF]</a>
<a href="PublicationFiles/2003_Knipping-Dabdub_SI.pdf" class="second_link">
Additional Material </a><br/><br/>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2002 </td>
<td>
<ul>
<li>
<span class="bold">Modeling study of Cl2 formation from aqueous NaCl particles: Evidence for interfacial reactions and importance of Cl2 decomposition in alkaline solution. </span>
<br/> Knipping E. M. and Dabdub D. <br/>
<span class="italic">J. Geophys. Res. </span> <span class="bold">107</span>,(D18), 4360, (2002) doi: 10.1029/2001JD000867
<a href = "PublicationFiles/2002_Knipping-Dabdub_JGR.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Secondary organic aerosol: 3. Urban/regional scale model of size- and composition-resolved aerosols. </span>
<br/>Griffin R. J., Dabdub D., Kleeman M. J., Fraser M. P., Cass G. R. and Seinfeld J. H. <br/>
<span class="italic">J. Geophys. Res. </span> <span class="bold">107</span>,(D17), 4334, (2002) doi: 10.1029/2001JD000544
<a href = "PublicationFiles/2002_Griffin-et-al_JGR.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Secondary organic aerosol: 1. Atmospheric chemical mechanism for production of molecular constituents.</span>
<br/>Griffin R. J., Dabdub D. and Seinfeld J. H. <br/>
<span class="italic">J. Geophys. Res. </span> <span class="bold">107</span>,(D17), 4332, (2002) doi: 10.1029/2001JD000541
<a href = "PublicationFiles/2002_Griffin-Dabdub-Seinfeld_JGR.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Modeling surface-mediated renoxification of the atmosphere via reaction of gaseous nitric oxide with deposited nitric acid.</span>
<br/> Knipping E. M. and Dabdub D.<br/>
<span class="italic">Atmospheric Environment </span> <span class="bold">36</span>,(2002) 5741-5748. doi: 10.1016/S1352-2310(02)00652-0
<a href = "PublicationFiles/2002_Knipping-Dabdub_AE.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">NO<sub>x</sub> and VOC control and its effect on the formation of aerosols.</span>
<br/>Nguyen K. and Dabdub D. <br/>
<span class="italic">Aerosol Science & Technology </span> <span class="bold">36</span>,(2002) 560-572. doi: 10.1080/02786820252883801
<a href = "PublicationFiles/2002_Nguyen-Dabdub_AST2.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Semi-Lagrangian flux scheme for the solution of the aerosol condensation/evaporation equation.</span>
<br/>Nguyen K. and Dabdub D. <br/>
<span class="italic">Aerosol Science & Technology </span> <span class="bold">36</span>,(2002) 407-418. doi: 10.1080/027868202753571232
<a href = "PublicationFiles/2002_Nguyen-Dabdub_AST1.pdf"> [PDF]</a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2001 </td>
<td>
<ul>
<li>
<span class="bold">Numerical solution of the aerosol condensation/evaporation equation. </span>
<br/> Nguyen K. and Dabdub D. <br/>
<span class="italic">Computational Science </span> <span class="bold">2074</span>, (2001) 77-81. doi: 10.1007/3-540-45718-6
<a href = "PublicationFiles/2001_Nguyen-Dabdub_CompSci.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Two-level time-marching scheme using splines for solving the advection equation. </span>
<br/> Nguyen K. and Dabdub D. <br/>
<span class="italic">Atmospheric Environment </span> <span class="bold">35</span>, (2001) 1627-1637. doi: 10.1016/S1352-2310(00)00443-X
<a href = "PublicationFiles/2001_Nguyen-Dabdub_AE.pdf"> [PDF]</a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2000 </td>
<td>
<ul>
<li>
<span class="bold">Effect of alveolar volume and sequential filling on the diffusing capacity of the lungs: II. Experiment. </span>
<br/> Tsoukias N. M., Dabdub D., Wilson A. F. and George S. C.<br/>
<span class="italic"> Respiration Physiology</span> <span class="bold">120</span>, (2000) 251-271. doi: 10.1016/S0034-5687(00)00104-3
<a href = "PublicationFiles/2000_Tsoukias-et-al_Resp-Phys.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Experiments and simulations of ion-enhanced interfacial chemistry on aqueous NaCl aerosols. </span>
<br/> Knipping E. M., Lakin M. J., Foster K. L., Jungwirth P., Tobias D. J., Gerber R. B., Dabdub D. and Finlayson-Pitts B. J.<br/>
<span class="italic"> Science</span> <span class="bold">288</span>, (2000) 301-306. doi: 10.1126/science.288.5464.301
<a href = "PublicationFiles/2000_Knipping-et-al_Science.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Determination of domain for diagnostic wind field estimation in Korea. </span>
<br/> Kim J. Y., Ghim Y. S., Kim Y. P. and Dabdub D. <br/>
<span class="italic"> Atmospheric Environment </span> <span class="bold">34</span>, (2000) 595-601. doi: 10.1016/S1352-2310(99)00174-0
<a href = "PublicationFiles/2000_Kim-Ghim-Kim-Dabdub_AE.pdf"> [PDF]</a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 1999 </td>
<td>
<ul>
<li>
<span class="bold">Estimate of global atmospheric organic aerosol from oxidation of biogenic hydrocarbons.</span>
<br/> Griffin R. J., Cocker D. R., Seinfeld J. H. and Dabdub D.<br/>
<span class="italic"> Geophysical Research Letters </span> <span class="bold">26</span>,(1999) 2501-2514. doi: 10.1016/S1352-2310(98)00256-8 <a href = "PublicationFiles/1999_Griffin-et-al_GRL.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Analysis of ozone in the San Joaquin Valley of California. </span>
<br/> Dabdub D., DeHaan L. L. and Seinfeld J. H.<br/>
<span class="italic"> Atmospheric Environment </span> <span class="bold">33</span>,(1999) 2721-2724. doi: 10.1029/1999GL900476
<a href = "PublicationFiles/1999_Dabdub-DeHaan-Seinfeld_AE.pdf"> [PDF]</a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 1998 </td>
<td>
<ul>
<li>
<span class="bold">Modeling bronchial circulation with application to soluble gas exchange: description and sensitivity analysis. </span>
<br/> Bui T. D., Dabdub D. and George S. C.<br/>
<span class="italic"> J. Applied Physiology </span> <span class="bold">84</span>, (1998) 2070-2088.
<a href = "PublicationFiles/1998_Bui-Dabdub-George_JAP.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Size-resolved and chemically resolved model of atmospheric aerosol dynamics. </span>
<br/> Meng Z., Dabdub D. and Seinfeld, J. H.<br/>
<span class="italic"> J. Geophys. Res. </span> <span class="bold">103</span>, (1998) 3419-3436. doi: 10.1029/97JD02796 [
<a href = "PublicationFiles/1998_Meng-Dabdub-Seinfeld_JGR.pdf"> [PDF]</a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 1997 </td>
<td>
<ul>
<li>
<span class="bold">Performance and portability of an air quality model.</span>
<br/> Dabdub D. and Manohar R.<br/>
<span class="italic"> Parallel Computing </span> <span class="bold">23</span>, (1997) 2187-2200. doi: 10.1016/S0167-8191(97)00108-7
<a href = "PublicationFiles/1997_Dabdub-Manohar-Parallel_Comp.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Benchmarking stiff ODE solvers for atmospheric chemistry problems I: implicit versus explicit. </span>
<br/> Sandu A., Verwer J. G., van Loon M., Carmichael G. R., Potra F. A., Dabdub D. and Seinfeld J. H. <br/>
<span class="italic"> Atmospheric Environment </span> <span class="bold">31</span>, (1997) 3149-3164. doi: 10.1016/S1352-2310(97)00059-9
<a href = "PublicationFiles/1997_Sandu-et-al_Atmos_Envr.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Chemical coupling between atmospheric ozone and particulate matter. </span>
<br/> Meng Z., Dabdub D. and Seinfeld J. H. <br/>
<span class="italic"> Science </span> <span class="bold">277</span>, No 5322 (1997) 116-119. doi: 10.1126/science.277.5322.116
<a href = "PublicationFiles/1997_Meng-Dabdub-Seinfeld_Science.pdf"> [PDF]</a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 1996 </td>
<td>
<ul>
<li>
<span class="bold">Parallel computation in atmospheric chemical modeling. </span>
<br/> Dabdub D. and Seinfeld J. H. <br/>
<span class="italic"> Parallel Computing </span> <span class="bold">22</span>, (1996) 111-130. doi: 10.1016/0167-8191(95)00063-1
<a href = "PublicationFiles/1992_Dabdub-Klein-Sperling_PP.pdf"> [PDF]</a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 1995 </td>
<td>
<ul>
<li>
<span class="bold">Extrapolation techniques used in the solution of stiff ODEs associated with chemical kinetics of air quality models. </span>
<br/> Dabdub D. and Seinfeld J. H.<br/>
<span class="italic"> Atmospheric Environment </span> <span class="bold">29</span>, (1995) 403-410. doi: 10.1016/1352-2310(94)00282-P
<a href = "PublicationFiles/1995_Dabdub-Seinfeld_AE.pdf"> [PDF]</a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 1994 </td>
<td>
<ul>
<li>
<span class="bold">Numerical advective schemes used in air quality models---Sequential and parallel implementation.</span>
<br/> Dabdub D. and Seinfeld J. H.<br/>
<span class="italic">Atmospheric Environment </span> <span class="bold">28</span>, (1994) 3369-3385. doi: 10.1016/1352-2310(94)00124-4
<a href = "PublicationFiles/1994_Dabdub-Seinfeld_AE.pdf"> [PDF]</a>
</li><br/>
<li>
<span class="bold">Air quality modeling on massively parallel computers. </span>
<br/> Dabdub D. and Seinfeld J. H.<br/>
<span class="italic">Atmospheric Environment </span> <span class="bold">28</span>, (1994) 1679-1687. doi: 10.1016/1352-2310(94)90313-1
<a href = "PublicationFiles/1994_Dabdub-Seinfeld_AE1.pdf"> [PDF]</a>
</li>
</ul>
</td>
</tr>
<tr>
<td> 1992 </td>
<td>
<ul>
<li>
<span class="bold">High-molecular-weight polymer segment distribution in small latex-particles.</span>
<br/> Dabdub D., Klein A. and Sperling L. H.<br/>
<span class="italic"> J. of Polymer Sciences Part B: Polymer Physics </span> <span class="bold">30</span>, No. 7 (1992) 787-789. doi: 10.1002/polb.1992.090300718
<a href = "PublicationFiles/1992_Dabdub-Klein-Sperling_PP.pdf"> [PDF]</a>
</li>
</ul>
</td>
</tr>
</table>
<table>
<tr>
<a name="Magazine"></a> <th colspan="3"><h2> Magazine Articles</h2></th>
</tr>
<tr>
<td> 2012 </td>
<td>
<ul>
<li>
<span class="bold">Simulation of secondary organic research needs. </span><br/>Dabdub D., Knipping E.
<span class="italic"> EM Magazine </span> Sep. 2012: 48-51.
<a href= "PublicationFiles/2014_Simulation_Secondary_Organic.pdf"> [PDF] </a><br/>
<p>This article appears in the September 2012 issue of EM Magazine, a publication of the Air & Waste Management Association (A &WMA; www.awma.org). To obtain copies and reprints, please contact A&WMA directly at 1-412-232-3444. </p>
</li>
</ul>
</td>
</tr>
</table>
<table>
<tr>
<a name="PeerBook"></a> <th colspan="3"><h2> Peer Reviewed Book Chapters</h2></th>
</tr>
<tr>
<td> 2000 </td>
<td>
<ul>
<li>
<span class="bold">Managing specificity and generality: tailoring general archetypal PSEs to specific users </span><br/> Dabdub D., Chandy K. M. and Hewett T.<br/>
<span class="italic"> Enabling technologies for computational science: frameworks, middleware and environments. </span> Sep. 2012: 48-51.
<p>This article appears in the September 2012 issue of EM Magazine, a publication of the Air & Waste Management Association (A &WMA; www.awma.org). To obtain copies and reprints, please contact A&WMA directly at 1-412-232-3444.
Kluwer Academic Publishers. Editors: Houstis E. N. and Rice J. R. </p>
</li>
</ul>
</td>
</tr>
<tr>
<td> 1996 </td>
<td>
<ul>
<li>
<span class="bold">Emerging air quality modeling techniques for high performance computing and communication environments. </span><br/> Byun D. W., Dabdub D., Fine S., Hanna A. F., Mathur R., Odman M. T., Russell A., Segall E. J., Seinfeld, J. H., Steenkiste P. and Young J.<br/>
<span class="italic">Air pollution modeling and its application. </span>
<p>Proceedings of the 21st NATO/CCMS meeting. New York, Plenum Press.</p>
</li>
</ul>
</td>
</tr>
</table>
<table>
<tr>
<a name="Reports"></a> <th colspan="3"><h2> Reports</h2></th>
</tr>
<tr>
<td> 2016 </td>
<td>
<ul>
<li>
<span class="bold">Impacts of natural gas composition on air quality, an assessment using TEMPLES model - Phase 2. </span><br/>Carreras-Sospedra M., Boado E. S. and Dabdub D.<br/>
<span class="italic"> Final report to the California Air Resources Board. </span> ARB Contract 11-416 (2016)
</li>
</ul>
</td>
</tr>
<tr>
<td> 2015 </td>
<td>
<ul>
<li>
<span class="bold">Assessment of the emissions and energy impacts of biomass and biogas use in California. </span><br/> Carreras-Sospedra M., MacKinnon M., Williams R. and Dabdub D. <br/>
<span class="italic"> Final report to the California Air Resources Board.</span> ARB Contract 11-307 (2015). <a href= "PublicationFiles/R013_ARB_11-307.pdf"> [PDF] </a><br/>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2014 </td>
<td>
<ul>
<li>
<span class="bold">Impacts of natural gas composition on air quality, an assessment using TEMPLES model - Phase 1. </span><br/> Carreras-Sospedra M., Martinez A. S. and Dabdub D. <br/>
<span class="italic"> Final report to the California Air Resources Board.</span> ARB Contract 11-416 (2014).
</li>
</ul>
</td>
</tr>
<tr>
<td> 2011 </td>
<td>
<ul>
<li>
<span class="bold">Air quality impacts of liquefied natural gas in the South Coast Air Basin of California.</span><br/> Carreras-Sospedra M., Brouwer J., Dabdub D., Lunden M., Singer B. <br/>
<span class="italic"> Final report to the California Energy Commission - Public Interest Energy Research Program. </span> CEC-500-2011-041 (2011). <a href= "PublicationFiles/R012_ARB_11-416.pdf"> [PDF] </a><br/>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2009 </td>
<td>
<ul>
<li>
<span class="bold">Air quality impacts of distributed generation in the South Coast Air Basin and the San Joaquin Valley.</span><br/> Samuelsen G.S., Dabdub D., Brouwer J., Carreras-Sospedra M. and Vutukuru S. <br/>
<span class="italic"> Final report to the California Energy Commission - Public Interest Energy Research Program. </span> CEC-500-2009-070 (2009). <a href= "PublicationFiles/R010_CEC_500-2009-070.pdf"> [PDF] </a><br/>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2008 </td>
<td>
<ul>
<li>
<span class="bold">How new chemistry findings affect our understanding of the weekend effect --- A modeling study.</span><br/> Dabdub D., Carreras-Sospedra M., Chang W. and Cohan A.<br/>
<span class="italic"> Final report to the California Air Resources Board. </span> ARB Contract 04-333 (2008). <a href= "PublicationFiles/R009_ARB_04-333.pdf"> [PDF] </a><br/>
</li><br/>
<li>
<span class="bold">Determining relative air quality impacts of various personal vehicle options in 2050.</span><br/> Brouwer J., Dabdub D., Samuelsen G.S. and Carreras-Sospedra M. <br/>
<span class="italic"> Report to Toyota Motor Sales U.S.A. Inc. </span> (2008). <a href= "PublicationFiles/R008_Toyota.pdf"> [PDF] </a><br/>
</li><br/>
<li>
<span class="bold">Air quality impacts of ship emissions in the South Coast Air Basin of California.</span><br/> Dabdub D. and Vutukuru S. <br/>
<span class="italic"> Final report to the California Air Resources Board.</span> ARB Contract 04-752 (2008). <a href= "PublicationFiles/R007_ARB_04-752.pdf"> [PDF] </a><br/>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2005 </td>
<td>
<ul>
<li>
<span class="bold">Air quality impacts of distributed generation.</span><br/> Samuelsen G.S., Dabdub D., Brouwer J., Medrano M., Rodriguez M. and Carreras-Sospedra M. <br/>
<span class="italic"> Final report to the California Energy Commission---Public Interest Research Program.</span> CEC-500-2005-O69-F (2005). <a href= "PublicationFiles/R006_CEC_500-2005-069-F.pdf"> [PDF] </a><br/>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2004 </td>
<td>
<ul>
<li>
<span class="bold">Heterogeneous NOx chemistry in polluted urban atmospheres: implications for the formation of particles and ozone and control strategy development. </span><br/> Samuelsen G.S., Dabdub D., Brouwer J., Carreras-Sospedra M. and Vutukuru S. <br/>
<span class="italic"> Final report to the California Air Resources Board and the California Environmental Protection Agency. </span> ARB Contract 00-323. (2004). <a href= "PublicationFiles/R005_ARB_00-323.pdf"> [PDF] </a><br/>
</li>
</ul>
</td>
</tr>
<tr>
<td> 2002 </td>
<td>
<ul>
<li>
<span class="bold">Chlorine emissions from activated sea-salt aerosols and their potential impact on ozone. </span><br/> Knipping E. M. and Dabdub D. <br/>
<span class="italic"> Final Report to the California Air Resources Board and the California Environmental Protection Agency. </span> ARB Contract 00-324 (2002).<a href= "PublicationFiles/R004_ARB_00-324.pdf"> [PDF] </a><br/>
</li><br/>
<li>
<span class="bold">Impact of altering NO/NO<sub>2</sub> splits in NOx emissions of diesel sources. </span><br/> Knipping E. M. and Dabdub D. <br/>
<span class="italic"> Final report to the California Air Resources Board and the California Environmental Protection Agency. </span> ARB Contract 01-331 (2002).<a href= "PublicationFiles/R003_ARB_01-331.pdf"> [PDF] </a><br/>
</li>
</ul>
</td>
</tr>
<tr>
<td> 1992 </td>
<td>
<ul>
<li>
<span class="bold">Continued development of a photochemical model and application to the Southern California Air Quality Study (SCAQS) intensive monitoring periods: Phase II Model Application. </span><br/> McNair L. A., Harley R. A., Russell A. G., Cass G. R., Odman M. T., McRae G. J., Seinfeld J. H., Winner D. A. and Dabdub D. <br/>
<span class="italic"> Final Report to the Coordinating Research Council</span> (1992).
</li><br/>
<li>
<span class="bold">Continued development of a photochemical model and application to the Southern California Air Quality Study (SCAQS) intensive monitoring periods: Phase I. </span><br/> Harley R. A., Russell A. G., McRae G. J., McNair L. A., Winner D. A., Odman M. T., Dabdub D., Cass G. R. and Seinfeld J. H. <br/>
<span class="italic"> Final Report to the Coordinating Research Council </span> (1992).
</li>
</ul>
</td>
</tr>
</table>
<button id="scrollme" type="#button" > Go To Top </button>
<script type="text/javascript">
function runScroll(){
scrollTo(document.body, 0, 600);
}
var scrollme;
scrollme= document.querySelector("#scrollme");
scrollme.addEventListener("click", runScroll,false);