-
Notifications
You must be signed in to change notification settings - Fork 0
/
people.html
executable file
·1105 lines (1091 loc) · 83.6 KB
/
people.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 lang="en" dir="ltr">
<head>
<title>IMPACT: People</title>
<link rel="icon" type="image/x-icon" href="images/logos/IMPACT_favicon.ico">
<meta charset="iso-8859-1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="The People of IMPACT">
<link href="layout/styles/main.css" rel="stylesheet" type="text/css" media="all">
<link href="layout/styles/mediaqueries.css" rel="stylesheet" type="text/css" media="all">
<link href="layout/styles/people.css" rel="stylesheet" type="text/css" media="all">
</head>
<body class="secondary">
<header class="header__top the-header">
<a href="index.html"><img loading="lazy" class="header__logo" src="images/logos/IMPACT_logo1.png" alt="Institute for Modeling Plama, Atmospheres and Cosmic Dust (IMPACT)"/></a>
<div id="hamburger__menu">
<input id="menu__toggle" type="checkbox" />
<label class="menu__btn" for="menu__toggle">
<div id="menu">MENU</div>
<div><span class="menu__hamburger"></span></div>
</label>
<ul class="menu__box">
<li><a class="menu__item" href="index.html">HOMEPAGE</a></li>
<li><a class="menu__item" href="news.html">NEWS</a></li>
<li><a class="menu__item" href="about.html">ABOUT IMPACT</a></li>
<li><a class="menu__item" href="facilities.html">FACILITIES</a></li>
<li><a class="menu__item" href="people.html">PEOPLE</a></li>
<li><a class="menu__item" href="publications.html">PUBLICATIONS</a></li>
<li><a class="menu__item" href="epo.html">EDUCATION / PUBLIC OUTREACH</a></li>
<li><a class="menu__item" href="sservi.html">SSERVI / TEAMS</a></li>
<li><a class="menu__item" href="IDEX.html">IDEX</a></li>
<li><a class="menu__item" href="media.html">MEDIA</a></li>
<li><a class="menu__item" href="meetings.html">MEETINGS</a></li>
<li><a class="menu__item" href="contact.html">CONTACT</a></li>
</ul>
</div>
</header>
<div id="container" class="page__content">
<div class="page__top" style="background-image: url('images/Centaurus-a-xlarge_3000px.jpg');">
<div class="page__top__bottom">
<div class="bottom__nav"><a href="index.html">Home </a><span class='divide'> ❱ </span><span class="bottom__nav__page"> People</span></div>
<div class="page__title">People of IMPACT</div>
</div>
</div>
<!-- content -->
<div class="content_section">
<div id="container" class="content_container">
<div id="sidebar_1" class="sidebar one_quarter first">
<aside>
<h2>People</h2>
<nav>
<ul>
<li><a href="#PI">PI</a></li>
<li><a href="#staff">Staff</a></li>
<li><a href="#collaborate">Collaborators</a></li>
<li><a href="#students">Students</a></li>
<li><a href="#past_students">Past Students</a></li>
</ul>
</nav>
</aside>
</div>
<!-- ################################################################################################ -->
<!--STAFF-->
<div class="three_quarter">
<section class="clear ">
<a name="PI"></a>
<h1></h1>
<!--MIHALY & TOBIN-->
<ul class="nospace clear people_topsection">
<li class="one_third first people_topbox">
<a name="munsat"></a>
<figure class="team-member"><div class="person_container"><img loading="lazy" src="images/staff/munsat.jpg" alt="Tobin Munsat" class="people_img"></div>
<figcaption>
<div class="people_name">
<p class="team-name">Tobin Munsat</p>
<p class="team-title">PI</p>
</div>
<p class="team-description">Tobin received his PhD in Plasma Physics from Princeton University. He is the PI of IMPACT and a professor in the Physics Department at the University of Colorado, Boulder.</p>
<p class="read-more"><a href="https://www.colorado.edu/physics/tobin-munsat" target="_blank">More information</a></p>
</figcaption>
</figure>
</li>
<li class="one_third second people_topbox">
<a name="horanyi"></a>
<figure class="team-member"><div class="person_container"><img loading="lazy" src="images/staff/horanyi.jpg" alt="Mihály Horányi" class="people_img"></div>
<figcaption>
<div class="people_name">
<p class="team-name">Mihály Horányi</p>
<p class="team-title">Deputy PI</p>
</div>
<p class="team-description">Mihály Horányi received his PhD in Space Physics from the Lorand Eötvös University in Budapest, Hungary. He is professor of physics at the University of Colorado, Boulder and was the PI of IMPACT from 2008-2022.</p>
<!--<p class="read-more"><a href="http://phys.colorado.edu/people/hor%C3%A1nyi-mih%C3%A1ly">More information</a></p>-->
</figcaption>
</figure>
</li>
<p></p>
</li>
</ul>
<br /><br />
</div>
<!--REST OF STAFF-->
<section id="rest-of-people">
<div class="tile clear" id="staff_list">
<a name="staff"></a>
<h1>Staff</h1>
<ul class="nospace clear staff_ul">
<li class="one_quarter">
<a name="madrid"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/abbud-madrid.jpg" alt="Angel Abbud-Madrid">
<figcaption>
<p class="team-name">Angel Abbud-Madrid</p>
<p class="team-title">CO-I</p>
<p class="team-description">Angel Abbud-Madrid recieved his PhD in Mechanical Engineering from the University of Colorado, Boulder. Angel is the director for the Center for Space Resources at the Colorado School on Mines.</p>
<!--<p class="read-more"><a href="http://8clunarventures.com/newsite/angel-abbud-madrid/">More information</a></p>-->
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="baker"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/baker.jpg" alt="Dan Baker">
<figcaption>
<p class="team-name">Dan Baker</p>
<p class="team-title">CO-I</p>
<p class="team-description">Dan Baker recieved his PhD from the University of Iowa and is currently the director of the Laboratory for Atmospheric and Space Physics (LASP).</p>
<!--<p class="read-more"><a href="http://lasp.colorado.edu/home/about/leadership/directors-page/">More information</a></p>-->
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="bouwman"></a>
<figure class="team-member"><img loading="lazy" src="images/Bouwman_resize.png" alt="Jordy Bouwman">
<figcaption>
<p class="team-name">Jordy Bouwman</p>
<p class="team-title">CO-I</p>
<p class="team-description">Jordy Bouwman is a professor of chemistry at CU Boulder and IMPACT researcher. His research explores the formation and dissociation mechanisms of interstellar Polycyclic Aromatic Hydrocarbons (PAHs) as well as other organic compounds in the ISM.</p>
<p class="read-more"><a href="https://sites.google.com/view/bouwmanlab/the-group/about-me" target="_blank">More information</a></p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="brain"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/brain.jpg" alt="David Brain">
<figcaption>
<p class="team-name">David Brain</p>
<p class="team-title">CO-I</p>
<p class="team-description">David Brain recieved his PhD in Astrophysical, Planetary, and Atmospheric Sciences from the University of Colorado, Boulder. He is an assistant professor at the University of Colorado, Boulder.</p>
<!--<p class="read-more"><a href="http://lasp.colorado.edu/mop/people/brain/Home.html">More information</a></p>-->
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="deca"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/deca.jpg" alt="Jan Deca">
<figcaption>
<p class="team-name">Jan Deca</p>
<p class="team-title">Research Associate</p>
<p class="team-description">Jan received his PhD from the Centre for mathematical Plasma Astrophysics (KULeuven), Belgium. Currently he is a research associate at the Laboratory for Atmospheric and Space Physics (LASP).</p>
<!--<p class="read-more"><a href="http://lasp.colorado.edu/~jdeca/">More information</a></p>-->
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="dreyer"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/dreyer.jpg" alt="Christopher B. Dreyer">
<figcaption>
<p class="team-name">Christopher B. Dreyer</p>
<p class="team-title">CO-I</p>
<p class="team-description">Christopher Dreyer received his PhD in Mechanical Engineering from the University of Colorado, Boulder. Currently, he is a research scientist at the Center for Space Resources at the Colorado School of Mines.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="fontanese"></a>
<figure class="team-member"><img loading="lazy" src="images/students/fontanese2.jpg" alt="John Fontanese">
<figcaption>
<p class="team-name">John Fontanese</p>
<p class="team-title">Research Associate</p>
<p class="team-description">John is the dust accelerator lead engineer working on the large and small accelerators at <a href="facilities.html#dal">DAL</a>.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="gilmer"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/gilmer.jpg" alt="George Gilmer">
<figcaption>
<p class="team-name">George Gilmer</p>
<p class="team-title">CO-I</p>
<p class="team-description">George Gilmer recieved his PhD in Physics from the University of Virginia. He is a research scientist at the Center for Space Resources at the Colorado School of Mines.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="gorokhovsky"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/gorokhovsky.png" alt="Vladimir Gorokhovsky">
<figcaption>
<p class="team-name">Vladimir Gorokhovsky</p>
<p class="team-title">CO-I</p>
<p class="team-description">Vladimir Gorokhovsky has research interests in plasma processing technologies, plasma synthesis of nanomaterials, coating and functionalization of micro-and nano-powders, and arc plasma physics.</p>
<p class="read-more"><a href="http://www.nanoproductengineering.com" target="_blank">More information</a></p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="grun"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/grun.jpg" alt="Eberhard Grün">
<figcaption>
<p class="team-name">Eberhard Grün</p>
<p class="team-title">CO-I</p>
<p class="team-description">Eberhard Grün recieved his PhD from the University of Heidelberg. He is a research associate at the Laboratory for Atmospheric and Space Physics (LASP).</p>
<!--<p class="read-more"><a href="http://www.irs.uni-stuttgart.de/cosmicdust/aboutus/team_members/gruen/">More information</a></p>-->
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="hermalyn"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/hermalyn.jpg" alt="Brendan Hermalyn">
<figcaption>
<p class="team-name">Brendan Hermalyn</p>
<p class="team-title">CO-I</p>
<p class="team-description">Brendan Hermalyn received his PhD in Planetary Science from Brown University. Brendan is an assistant researcher (SOEST Young Investigator) at the University of Hawaii, Manoa, and a researcher at NASA Ames Research Center.</p>
<!--<p class="read-more"><a href="http://www.hsfl.hawaii.edu//~brendan/">More information</a></p>-->
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="hsu"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/hsu.jpg" alt="Hsiang-Wen Hsu">
<figcaption>
<p class="team-name">Hsiang-Wen Hsu</p>
<p class="team-title">CO-I</p>
<p class="team-description">Hsiang-Wen (Sean) Hsu received his PhD from the Max-Planck Institute for Nuclear Physics in Heidelberg. He is a research associate at the Laboratory for Atmospheric and Space Physics (LASP).</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="kempf"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/kempf.jpg" alt="Sascha Kempf">
<figcaption>
<p class="team-name">Sascha Kempf</p>
<p class="team-title">CO-I</p>
<p class="team-description">Sascha Kempf is the deputy PI of the Cassini dust detector CDA and develops instrumentation for compositional analysis of comsic dust. He is also an assistant professor at the University of Colorado, Boulder.</p>
<p class="read-more"><a href="./kempf.html">More information</a></p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="robertson"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/robertson.jpg" alt="Scott Robertson">
<figcaption>
<p class="team-name">Scott Robertson</p>
<p class="team-title">CO-I</p>
<p class="team-description">Scott Robertson received his PhD in Applied Physics from Cornell University. He was a professor at the University of Colorado, Boulder.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="scheeres"></a>
<figure class="team-member"><img loading="lazy" width="170" src="images/staff/scheeres.jpg" alt="Daniel J. Scheeres">
<figcaption>
<p class="team-name">Daniel J. Scheeres</p>
<p class="team-title">CO-I</p>
<p class="team-description">Daniel Scheeres received a PhD from the University of Michigan. He is a professor in the Aerospace Engineering Sciences Department at the University of Colorado, Boulder.</p>
<p class="read-more"><a href="http://www.colorado.edu/aerospace/people/daniel-scheeres" target="_blank">More information</a></p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="stern"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/stern.jpg" alt="Alan Stern">
<figcaption>
<p class="team-name">Alan Stern</p>
<p class="team-title">CO-I</p>
<p class="team-description">Alan Stern received his PhD in Astrophysical and Planetary Sciences from the University of Colorado, Boulder. He is the associate vice-president of the Southwest Research Institute in Boulder, Colorado.</p>
<!--<p class="read-more"><a href="https://solarsystem.nasa.gov/people/profile.cfm?Code=SternA">More information</a></p>-->
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="sternovksy"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/sternovsky.jpg" alt="Zoltan Sternovsky">
<figcaption>
<p class="team-name">Zoltan Sternovsky</p>
<p class="team-title">CO-I</p>
<p class="team-description">Zoltan Sternovsky received his PhD from Charles University in Prague. He is an assistant professor at the University of Colorado, Boulder.</p>
<p class="read-more"><a href="http://www.colorado.edu/aerospace/people/zoltan-sternovsky" target="_blank">More information</a></p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="sture"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/sture.jpg" alt="Stein Sture">
<figcaption>
<p class="team-name">Stein Sture</p>
<p class="team-title">CO-I</p>
<p class="team-description">Stein Sture received a PhD in Civil Engineering from the University of Colorado, Boulder. He is the vice chancellor for research and dean of the graduate school at the University of Colorado, Boulder.</p>
<!--<p class="read-more"><a href="http://www.colorado.edu/academicaffairs/EVCPsture.html">More information</a></p>-->
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="wang"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/wang.jpg" alt="Xu Wang">
<figcaption>
<p class="team-name">Xu Wang</p>
<p class="team-title">CO-I</p>
<p class="team-description">Xu Wang received his PhD in Engineering Physics from the University of Wisconsin-Madison. Xu is a research scientist for the Laboratory of Atmospheric and Space Physics (LASP).</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="werner"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/werner.jpg" alt="Greg Werner">
<figcaption>
<p class="team-name">Greg Werner</p>
<p class="team-title">CO-I</p>
<p class="team-description">Greg Werner received his PhD in Experimental Physics from Cornell University. He is a research scientist for the Center for Integrated Plasma Studies (CIPS), Boulder, Colorado.</p>
<p class="read-more"><a href="http://cips.colorado.edu/Content/Directory/Detail.php?id=40" target="_blank">More information</a></p>
</figcaption>
</figure>
</li>
</ul>
<br /><br />
</div>
<br /><br /><br /><br /><br />
<!--COLLABORATORS-->
<div class="tile" id="collaborators_list">
<a name="collaborate"></a>
<h1>Collaborators</h1>
<ul class="nospace clear collaborators_ul" name="Collaborators">
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/staff/blum.jpg" alt="Jürgen Blum">
<figcaption>
<p class="team-name">Jürgen Blum</p>
<p class="team-description">Jürgen Blum received his PhD from the University of Heidelberg. He is professor for physics at the University of Braunschweig in Germany.</p>
<p class="read-more"><a href="http://www.igep.tu-bs.de/forschung/planetenentstehung/index.html" target="_blank">More information</a></p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/staff/brown.jpg" alt="Margaret Campbell-Brown">
<figcaption>
<p class="team-name">Margaret Campbell-Brown</p>
<p class="team-description">Margaret Campbell-Brown recieved her PhD in Physics and Astronomy from the University of Western Ontario. She is an associate professor in the Physics and Astronomy Department at the University of Western Ontario.</p>
<!--<p class="read-more"><a href="http://meteor.uwo.ca/~mcampbell/">More information</a></p>-->
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/staff/cintala.jpg" alt="Mark J. Cintala">
<figcaption>
<p class="team-name">Mark J. Cintala</p>
<p class="team-description">Mark Cintala received his PhD in Geological Sciences from Brown University. He is a researcher at NASA's Johnson Space Center.</p>
<!--<p class="read-more"><a href="http://ares.jsc.nasa.gov/ares/research/kr_bio/krbio_cintala.cfm">More information</a></p>-->
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="dee"></a>
<figure class="team-member"><img loading="lazy" src="images/staff/dee.png" alt="Richard Dee">
<figcaption>
<p class="team-name">Richard Dee</p>
<p class="team-description">Richard Dee received his PhD in Low Temperature Solid State Physics from the University of Lancaster, England. Currently he is an Affiliate to the Department of Physics and CIPS assisting in the design of cryogenic targets for the dust accelerator.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/staff/lapenta.jpg" alt="Giovanni Lapenta">
<figcaption>
<p class="team-name">Giovanni Lapenta</p>
<p class="team-description">Giovanni Lapenta received a PhD in Plasma Physics from the Polytechnic University of Turin. He is a professor in the Mathematics Department at University of Leuven, Leuven, Belgium.</p>
<!--<p class="read-more"><a href="https://perswww.kuleuven.be/~u0052182/">More information</a></p>-->
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/staff/srama.jpg" alt="Ralf Srama">
<figcaption>
<p class="team-name">Ralf Srama</p>
<p class="team-description">Ralf Srama recieved a PhD in Aerospace Engineering from the Technical University of Munich. He is a research scientist for the Institute of Space Systems at the University of Stuttgart in Stuttgart, Germany</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/staff/zakharov.jpg" alt="Alexander Zakharov">
<figcaption>
<p class="team-name">Alexander Zakharov</p>
<p class="team-description">Alexander Zakharov is a researcher in space physics and works at the Space Research Institute, Moscow. His main science interests are space plasmas, space dust, Mars and its moons. He has been a member of the International Academy of Astronautics since 1994.</p>
</figcaption>
</figure>
</li>
</ul>
<br /><br />
</div>
<br /><br /><br /><br /><br />
<!--STUDENTS-->
<div class="tile" id="students_list">
<a name="students"></a>
<h1>Students</h1>
<ul class="nospace clear students_ul" name="Students">
<li class="one_quarter">
<a name="ayari"></a>
<figure class="team-member"><img loading="lazy" src="images/students/Ayari_headshot1.jpeg" alt="Ethan Ayari" >
<figcaption>
<p class="team-name">Ethan Ayari</p>
<p class="team-description">Ethan Ayari is a graduate student in Physics working with <a href="#horanyi">Mihály Horányi</a> and <a href="#sternovksy">Zoltan Sternovsky</a> on designing and analyzing data from the Interstellar Dust Experiment (IDEX) instrument aboard NASA's Interstellar Mapping and Acceleration Probe (IMAP) mission.</p>
<p class="read-more"><a href="student_profiles/ayari.html">More information</a></p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="corbette"></a>
<figure class="team-member"><img loading="lazy" src="images/students/Corbett1.jpg" alt="Thomas Corbett">
<figcaption>
<p class="team-name">Thomas Corbett</p>
<p class="team-description">Thomas Corbett is an undergraduate in physics working with <a href="#fontanese">John Fontanese</a> on the dust accelerators at DAL. He is also working with <a href="#horanyi">Mihály Horányi</a> on simulating interplanetary dust production in the Kuiper belt.</p>
</figcaption>
</figure>
</li>
<!-- -->
<li class="one_quarter">
<a name="creager"></a>
<figure class="team-member"><img loading="lazy" src="images/students/creagor.JPG" alt="Michael Creagor" >
<figcaption>
<p class="team-name">Michael Creager</p>
<p class="team-description">Michael Creager is a graduate from CU with a bachelor's in engineering physics and currenlty plans to return to CU to obtain his Master's in Aerospace Engineering. Michael has been working under <a href="#kempf">Sascha Kempf</a>, and has been responsible for designing, simulating and manufacturing an experimental prototype TOF linear mass spectrometer (chemical sensor) with a high mass resolution optimized to obtain mass spectra in dust rich environments with water in space. </p>
<!-- <p class="read-more"><a href="">More information</a></p> -->
</figcaption>
</figure>
</li>
<!-- -->
<li class="one_quarter">
<a name="diaz"></a>
<figure class="team-member"><img loading="lazy" src="images/students/diaz.png" alt="Erick Diaz">
<figcaption>
<p class="team-name">Erick Diaz</p>
<p class="team-description">Erick Diaz is an undergraduate student in Engineering Physics and Mechanical Engineering working with <a href="#munsat">Tobin Munsat</a> and <a href="#grun">Vladimir Gorokhovsky</a> on developing methods of coating micron scale particles with thin metal layers for use in the dust accelerator.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="doner"></a>
<figure class="team-member"><img loading="lazy" src="images/students/doner.png" alt="Alexander Doner">
<figcaption>
<p class="team-name">Alexander Doner</p>
<p class="team-description">Alex Doner is a graduate student working under the advisement of <a href="#horanyi">Mihály Horányi</a> as the student lead on the Student Dust Counter (SDC) instrument on-board the New Horizons spacecraft. He is also part of the team developing a lunar-based PVDF dust detector called the Lunar Meteoroid Monitor (LMM) for future missions.</p>
<p class="read-more"><a href="student_profiles/doner.html">More information</a></p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="Mikula"></a>
<figure class="team-member"><img loading="lazy" src="images/students/Becca1.jpg" alt="Rebecca Mikula">
<figcaption>
<p class="team-name">Rebecca Mikula</p>
<p class="team-description">Rebecca Mikula is a PhD student at IMPACT. Her background is in astrophysics and chemistry. She currently works on collecting and analyzing dust impact ionization mass spectra of organic particles.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="pagan"></a>
<figure class="team-member"><img loading="lazy" src="images/students/Jose_Munoz.jpg" alt="José H. Pagán Muñoz">
<figcaption>
<p class="team-name">José H. Pagán Muñoz</p>
<p class="team-description">José is a graduate student in the Department of Physics working with <a href="#wang">Xu Wang</a> on understanding the charging mechanisms of dust within plasmas and working with industry collaborators in mitigating dust mobility.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="austinsmith"></a>
<figure class="team-member"><img loading="lazy" src="images/students/austin_smith1.JPG" alt="Austin Smith">
<figcaption>
<p class="team-name">Austin Smith</p>
<p class="team-description">Austin is a graduate student working under <a href="#sternovksy">Dr. Zoltan Sternovsky</a> on characterizing the dust impact waveforms from the STEREO spacecraft missions. He is also an aerospace engineering major at CU Boulder with an emphasis in remote sensing, earth, and space sciences.</p>
<p class="read-more"><a href="student_profiles/austinSmith.html">More information</a></p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="kelyan"></a>
<figure class="team-member"><img loading="lazy" src="images/students/Kelyan_taylor.jpg" alt="Kelyan Taylor">
<figcaption>
<p class="team-name">Kelyan Taylor</p>
<p class="team-description">Kelyan Taylor is an undergraduate student in the Aerospace Engineering department. Kelyan is working with <a href="#wang">Xu Wang</a> on the physics behind dust charging and lofting in particle accelerators and potential mitigation avenues.</p>
</figcaption>
</figure>
</li>
</ul>
<br /><br />
</div>
<br /><br /><br /><br /><br />
<!--PAST STUDENTS-->
<div class="tile" id="p-students_list">
<a name="past_students"></a>
<h1>Past Students</h1>
<ul class="nospace clear p-students_ul" name="Past Students">
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/anaya.jpg" alt="Chris Anaya">
<figcaption>
<p class="team-name">Chris Anaya</p>
<p class="team-description">Chris Anaya graduated from the University of Colorado, Boulder with a degree in physics. Chris is now a graduate student at Faculty of Sciences of the University of Lisbon.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/barnes.jpeg" alt="Forrest Barnes">
<figcaption>
<p class="team-name">Forrest Barnes</p>
<p class="team-description">Forrest Barnes was an undergraduate student at the university of Colorado at Boulder working under <a href="#munsat">Tobin Munsat</a> on control and data visualization software for the accelerator. Forrest is now a software engineer at Lockheed Martin.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/beadles.jpg" alt="Robert Beadles">
<figcaption>
<p class="team-name">Robert Beadles</p>
<p class="team-description">Robert Beadless was an undergraduate student at the University of Colorado working under <a href="#wang">Xu Wang</a>. Robert is now working at Sierra Space as a sr. mechanical test lead.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/beaty.jpg" alt="Nicholaus Beaty">
<figcaption>
<p class="team-name">Nicholaus Beaty</p>
<p class="team-description">Nicholaus Beaty worked under <a href="#horanyi">Mihály Horányi</a> with Anthony Shu trying to optimize and improve the efficiency of the accelerator. He also helped to characterize the different types of dust that can be used. Nicholaus now works for Epic.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/boschert.jpg" alt="Nick Boschert">
<figcaption>
<p class="team-name">Nick Boschert</p>
<p class="team-description">Nick Boschert was an interning high school student and entered CU-Boulder as a Physics major.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/burnett.png" alt="Jessica Burnett">
<figcaption>
<p class="team-name">Jessica Burnett</p>
<p class="team-description">Jessica Burnett was an incoming undergraduate at CU-Boulder studying computer engineering. She worked under <a href="#horanyi">Mihály Horányi</a> on simulating magnetic field anomalies found on the Moon.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/burrows.jpg" alt="Spenser Burrows">
<figcaption>
<p class="team-name">Spenser Burrows</p>
<p class="team-description">Spenser Burrows graduated from the University of Colorado, Boulder with a degree in Engineering Physics and chemistry. Spencer is now a graduate research assistant at Auburn University.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="cage"></a>
<figure class="team-member"><img loading="lazy" src="images/students/cage.png" alt="Brandon Cage">
<figcaption>
<p class="team-name">Brandon Cage</p>
<p class="team-description">Brandon Cage was an undergraduate student in the Physics department working with <a href="#deca">Jan Deca</a> on simulations of attractive regimes between dust grains in plasma. Brandon since went on to obtain a Master of Science degree in physics from Rice University.</a></p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="chaparro"></a>
<figure class="team-member"><img loading="lazy" src="images/students/chaparro.jpeg" alt="David Chaparro">
<figcaption>
<p class="team-name">David Chaparro</p>
<p class="team-description">David Chaparro is a current graduate student at the CU Physics Department. He completed his BS in Physics at the University of Texas at Dallas. He now works with <a href="#munsat">Tobin Munsat</a> and <a href="#kempf">Sascha Kempf</a> continuing research on dust impacts on icy planets.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/coffman.jpg" alt="Mark Coffman">
<figcaption>
<p class="team-name">Mark Coffman</p>
<p class="team-description">Mark graduated from the University of Colorado, Boulder with an aerospace engineering degree. Mark now works as a structural engineering consultant for Answer Engineering Inc.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/cruz.jpg" alt="Akaxia Cruz">
<figcaption>
<p class="team-name">Akaxia Cruz</p>
<p class="team-description">Akaxia Cruz was an undergraduate student at the University of Colorado, Boulder studying Physics and Mathematics. Akaxia is currently a presidential postdoctoral fellow at Princeton University.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="cyrus"></a>
<figure class="team-member"><img loading="lazy" src="images/students/cyrus.png" alt="Brandon Cyrus">
<figcaption>
<p class="team-name">Brandon Cyrus</p>
<p class="team-description">Brandon Cyrus was an undergraduate student in Mechanical Engineering working with <a href="#sternovksy">Zoltan Sternovsky</a> and <a href="#horanyi">Mihály Horányi</a> on designing an ultra-high vacuum (UHV) chamber and supporting structure to be incorporated with a Time of Flight Mass Spectrometer and tested on the dust accelerator. Brandon has since founded Delta Horizons, and now works as a fabrication design engineer for eps-Doublet. </p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/deluca.jpg" alt="Michael DeLuca">
<figcaption>
<p class="team-name">Michael DeLuca</p>
<p class="team-description">Michael DeLuca worked with <a href="#sternovksy">Zoltan Sternovsky</a> and completed his PhD on meteoric ablation in April of 2020. He is currently a postdocteral researcher at Princeton University interested in the development of spacecraft instruments.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/dickson.jpg" alt="Shannon Dickson">
<figcaption>
<p class="team-name">Shannon Dickson</p>
<p class="team-description">Shannon Dickson graduated from CU with a degree in engineering physics and a minor in astronomy. Shannon now works at Blue Origin. </p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/dove.jpg" alt="Adrienne Dove">
<figcaption>
<p class="team-name">Adrienne Dove</p>
<p class="team-description">Adrienne Dove received her PhD in Astrophysical and Planetary Sciencees from the University of Colorado. Adrienne now works at The Universuty of Central Florida as an assistant professor.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/duncan.jpg" alt="Nicole Duncan">
<figcaption>
<p class="team-name">Nicole Duncan</p>
<p class="team-description">Nicole Duncan received her B.A. in Engineering Physics from the University of Colorado and worked on the Dust Trajectory Sensor (DTS) project. Nicole has since recieved a physics PhD from The University of California, Berkeley, and is now a strategic planning manager at Ball Aerospace.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="fontanese"></a>
<figure class="team-member"><img loading="lazy" src="images/students/eberl.jpg" alt="Chad Eberl">
<figcaption>
<p class="team-name">Chad Eberl</p>
<p class="team-description">Chad Eberl worked with <a href="#kempf">Sascha Kempf</a> on SUDA testing and calibration. Chad currently works for Lockheed Martin.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="eberwein"></a>
<figure class="team-member"><img loading="lazy" src="images/students/eberwein.png" alt="Luke Eberwein">
<figcaption>
<p class="team-name">Luke Eberwein</p>
<p class="team-description">Luke Eberwein was an undergraduate in Physics working with <a href="#wang">Xu Wang</a> on studying electrostatic dust charging and lofting on surfaces of airless planetary bodies.</a></p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="farr"></a>
<figure class="team-member"><img loading="lazy" src="images/students/farr.jpg" alt="Ben Farr">
<figcaption>
<p class="team-name">Ben Farr</p>
<p class="team-description">Ben Farr completed his undergraduate Physics degree in May 2020 and continued his work with <a href="#wang">Xu Wang</a> on a project to develop and test new methods for mitigating dust on the Lunar surface. Ben currently works for Boulder Engineering Studio as an engineering technician.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/flexman.jpg" alt="Connor Flexman">
<figcaption>
<p class="team-name">Connor Flexman</p>
<p class="team-description">Connor participated in a Research Experience for Undergraduates (REU) program at IMPACT. He worked with <a href="#horanyi">Mihály Horányi</a> developing the spatial variability of detectors for the dust accelerator at <a href="facilities.html#dal">DAL</a>. Connor is now a researcher at Alvea.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="gemer"></a>
<figure class="team-member"><img loading="lazy" src="images/students/gemer.jpg" alt="AJ Gemer">
<figcaption>
<p class="team-name">AJ Gemer</p>
<p class="team-description">AJ Gemer worked with <a href="#sternovksy">Zoltan Sternovsky</a> on the development of the Hyperdust, Dust Trajectory Sensor (DTS), Electrostatic Lunar Dust Analyzer (ELDA), and Nano-Dust Analyzer (NDA) instruments. After graduation, he co-founded <a href="https://www.lunaroutpost.com/">Lunar Outpost Inc.</a> and is currently serving as the Chief Technology Officer.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="gerard"></a>
<figure class="team-member"><img loading="lazy" src="images/students/gerard.png" alt="Michael Gerard">
<figcaption>
<p class="team-name">Michael Gerard</p>
<p class="team-description">Michael Gerrard was an undergrauate studying Physics and Applied Mathematics. He worked on simulations dealing with lunar swirl morphology and is now an Engineering Physics grad student at The University of Wisconsin at Madison.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="goode"></a>
<figure class="team-member"><img loading="lazy" src="images/students/goode.jpg" alt="Bill Goode">
<figcaption>
<p class="team-name">Bill Goode</p>
<p class="team-description">Bill Goode was a graduate student working for <a href="#kempf">Sascha Kempf</a> on SUDA science development. Bill now works for Blue Origin as a trajectory analyst.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/gorokhovsky.jpg" alt="Elliot Gorokhovsky">
<figcaption>
<p class="team-name">Elliot Gorokhovsky</p>
<p class="team-description">Elliot was a high school student from Fairview HS working under <a href="#collette">Andrew Collette</a> on the motion control system for the accelerator chamber. Elliot then went on to obtain a Bachelor's degree in mathematics from Arizona State University, and now works as a software engineer for Facebook. </p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="gustafson"></a>
<figure class="team-member"><img loading="lazy" src="images/students/gustafson.jpg" alt="Erik Gustafson">
<figcaption>
<p class="team-name">Erik Gustafson</p>
<p class="team-description">Erik Gustafson was an undergraduate student in Physics and Mechanical Engineering and worked with <a href="#kempf">Sascha Kempf</a> on designing and machining the SUDA prototype. Erik is the founder of Hairspring Watches.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/hoffmeister.png" alt="Liam Hoffmeister">
<figcaption>
<p class="team-name">Liam Hoffmeister</p>
<p class="team-description">Liam Hoffmeister completed his bachelor's degrees in Math, Physics, and Computer Science in May of 2020. He worked with <a href="#munsat">Tobin Munsat</a> on development of an improved FPGA for the accelerator's particle selection unit. He is currently a Phd student and graduate research assistant at Yale University. </p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/hooks.jpg" alt="João Gabriel Moreira Hooks">
<figcaption>
<p class="team-name">João Gabriel Moreira Hooks</p>
<p class="team-description">João Hooks worked with <a href="#kempf">Sascha Kempf</a> on Cassini Time of Flight (TOF) mass spectroscopy for the Jovian and Saturnian systems. He worked on PDS data analysis and preparation. He now works as a blockchain integration consultant.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/howes.jpg" alt="Calvin Howes">
<figcaption>
<p class="team-name">Calvin Howes</p>
<p class="team-description">Calvin Howes was an undergraduate student working under <a href="#wang">Xu Wang</a>. Calvin is now pursuing a doctoral degree in atmospheric sciences and modeling from The University of California, Los Angeles.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="hunsaker"></a>
<figure class="team-member"><img loading="lazy" src="images/students/hunsaker.jpg" alt="Jack Hunsaker">
<figcaption>
<p class="team-name">Jack Hunsaker</p>
<p class="team-description">Jack Hunsaker was a high school intern working with <a href="#james">David James</a> developing the Argon Plasma Undergraduate Laboratory. Jack recieved a Bachelor of Arts in Astrophysics from Whitman College.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/junkins.jpg" alt="Eric Junkins">
<figcaption>
<p class="team-name">Eric Junkins</p>
<p class="team-description">Eric Junkins was an undergraduate student in Mechanical Engineering. He worked on fabiraction and design of test equipment for SUDA and GOLD. He now works at NASA Jet Propulsion Laboratory as a robotics engineer.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/kempf.jpg" alt="Maximilian Kempf">
<figcaption>
<p class="team-name">Maximilian Kempf</p>
<p class="team-description">Max Kempf studies Industrial Engineering in Berlin and came to Boulder to do an internship for five months.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/le.jpg" alt="Huy Le">
<figcaption>
<p class="team-name">Huy Le</p>
<p class="team-description">Huy Le was an undergraduate student in the Aerospace Engineering and Electrical Engineering departments. Huy now works for Lockheed Martin.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/leblanc.jpg" alt="Spencer LeBlanc">
<figcaption>
<p class="team-name">Spencer LeBlanc</p>
<p class="team-description">Spencer LeBlanc worked as an undergraduate student with IMPACT.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/levin.jpg" alt="Zuni Levin">
<figcaption>
<p class="team-name">Zuni Levin</p>
<p class="team-description">Zuni Levin is an undergraduate student of Physics working with <a href="#kempf">Sascha Kempf</a> on the computational modeling of the Lunar Dust Experiment in its operating environment orbiting around the moon.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/metzger.jpg" alt="Sean Metzger">
<figcaption>
<p class="team-name">Sean Metzger</p>
<p class="team-description">Sean Metzger was an interning high school student from Fairview High School in Boulder. Sean has since recieved a masters degree in electrical engineering from Stanford university, and is now a PhD candidate at The University of California, Berkeley.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/meyer.png" alt="Georg Meyer">
<figcaption>
<p class="team-name">Georg Meyer</p>
<p class="team-description">Georg Meyer was a visiting graduate student from Stuttgart, Germany. Georg worked with <a href="#sternovksy">Zoltan Sternovsky</a> developing the PVDF electronics at <a href="facilities.html#dal">DAL</a>. Georg now works for Siemens Gamesa.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/monk.jpg" alt="Destry Monk">
<figcaption>
<p class="team-name">Destry Monk</p>
<p class="team-description">Destry is an undergraduate at CU working for <a href="#munsat">Tobin Munsat</a>, and majoring in physics, computer science, and mathematics. His project entailed coding for the Vacuum Interlock System master control interface. Destry is currently a graduate research assistant at The University of New Mexico.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/namikis.jpg" alt="Rudy Namikis">
<figcaption>
<p class="team-name">Rudy Namikis</p>
<p class="team-description">Rudy Namikis studied Chemical Engineering and worked with <a href="#kempf">Sascha Kempf</a> on calibrations of mass analyzers.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="nelson"></a>
<figure class="team-member"><img loading="lazy" src="images/students/nelson.jpg" alt="Oak Nelson">
<figcaption>
<p class="team-name">Oak Nelson</p>
<p class="team-description">Oak Nelson was an undergraduate student in Engineering Physics and worked under <a hre="#munsat">Tobin Munsat</a> on initial experiments in the ice chamber. Oak is currently a postdoctoral research fellow at Columbia University.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/northway.jpg" alt="Paige Northway">
<figcaption>
<p class="team-name">Paige Northway</p>
<p class="team-description">Paige Northway graduated from the University of Colorado with a degree in Engineering Physics and a minor in German. Paige is now a systems engineer at First Mode.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/obrien.jpg" alt="Leela O'Brien">
<figcaption>
<p class="team-name">Leela O'Brien</p>
<p class="team-description">Leela O'Brien was a graduate student in Aerospace Engineering and worked with <a href="#sternovksy">Zoltan Sternovsky</a>. Her focus was on the development of space instruments including the Nano Dust Analyzer, which is a linear time-of-flight mass spectrometer.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/okeson.jpg" alt="Alexandra Okeson">
<figcaption>
<p class="team-name">Alexandra Okeson</p>
<p class="team-description">Alexandra Okeson was an undergraduate student in Computer Science. She worked under <a href="#horanyi">Mihály Horányi</a> developing software for the student dust counter. Alex is now a senior research engineer at iRhythm technologies.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/pilewskie.jpg" alt="Juliet Pilewskie">
<figcaption>
<p class="team-name">Juliet Pilewskie</p>
<p class="team-description">Juliet Pilewskie was an undergraduate student and worked under <a href="#horanyi">Mihály Horányi</a> developing computational models for IMPACT. Juliet is now a graduate student studying atmospheric science at the University of Wisconsin-Madison.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="piquette"></a>
<figure class="team-member"><img loading="lazy" src="images/students/piquette.jpg" alt="Marcus Piquette">
<figcaption>
<p class="team-name">Marcus Piquette</p>
<p class="team-description">Marcus Piquette completed his PhD in the Astrophysical and Planetary Sciences department working with <a href="#horanyi">Mihály Horányi</a> on simulations of photoelectron sheaths and dust dynamics on the lunar surface. He now works at Mission Ops at LASP.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/poppe.jpg" alt="Andrew Poppe">
<figcaption>
<p class="team-name">Andrew Poppe</p>
<p class="team-description">Andrew Poppe received his PhD in physics from the University of Colorado. Andrew is currently an Associate Research Scientist at the Space Sciences Laboratory at the University of California at Berkeley.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/priddy.jpg" alt="Steven Priddy">
<figcaption>
<p class="team-name">Steven Priddy</p>
<p class="team-description">Steven Priddy was pursing a master's degree in aerospace engineering with an emphasis on bioastronautics. He was working with <a href="#sternovsky">Zoltan Sternovsky</a> on new experimental setups. Steven is now a systems engineer at Northrop Grunman. </p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/randall.jpg" alt="Emily Randall">
<figcaption>
<p class="team-name">Emily Randall</p>
<p class="team-description">Emily Randall graduated from Fairview High School, and entered CU Boulder as a high school intern. They are now a Senior Software Engineer at Indigov. </p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/rasca.jpg" alt="Anthony Rasca">
<figcaption>
<p class="team-name">Anthony Rasca</p>
<p class="team-description">Anthony Rasca received his PhD from the Applied Mathematics Department at the University of Colorado at Boulder. Anthony is now a NASA Postdoctoral Fellow at NASA Goddard Flight Center.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/rocha2.jpg" alt="JR Rocha">
<figcaption>
<p class="team-name">JR Rocha</p>
<p class="team-description">JR Rocha was a graduate student in Aerospace Engineering and worked under <a href="#sternovksy">Zoltan Sternovsky</a> on the STEREO project. JR is currently a System Engineer at Sierra Space.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/samaniego.jpg" alt="Joseph Isaac Samaniego">
<figcaption>
<p class="team-name">Joseph Isaac Samaniego</p>
<p class="team-description">Joseph completed his PhD in Physics working with <a href="#wang">Xu Wang</a> and <a href="#horanyi">Mihály Horányi</a> on upgrades to Langmuir Probes. Jospeh now works as a staff scientist for HelicitySpace. </p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="schwan"></a>
<figure class="team-member"><img loading="lazy" src="images/students/schwan.jpg" alt="Joseph Schwan">
<figcaption>
<p class="team-name">Joseph Schwan</p>
<p class="team-description">Joseph Schwan was an undergraduate student in Mechanical Engineering and worked under <a href="#wang">Xu Wang</a> researching dust dynamics in plasmas. Joseph is currenlty working as a research scientist for Soane Technologies.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/staff/team-member2.gif" alt="Andy Seracuse">
<figcaption>
<p class="team-name">Andy Seracuse</p>
<p class="team-description">Andy was an undergraduate student working under <a href="#munsat">Tobin Munsat</a> developing the dust coordinate sensor used by the dust accelerator at <a href="facilities.html#dal">DAL</a>. Andy is now a software engineer at Amazon.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/shen.jpg" alt="Ming-Hsueh Shen">
<figcaption>
<p class="team-name">Ming-Hsueh Shen</p>
<p class="team-description">Ming-Hsueh Shen completed his PhD in Aerospace Engineering Sciences working with <a href="#sternovsky">Zoltan Sternovsky</a> on dust detection by antenna instruments: modeling and laboratory measurements. Mitchell is now an associate research scholar at Princeton University.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/shu.jpg" alt="Anthony Shu">
<figcaption>
<p class="team-name">Anthony Shu</p>
<p class="team-description">Anthony Shu received his PhD in 2015 for impact cratering experiments. He is now a PTD Process Engineer at Intel Corporation.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/staff/team-member2.gif" alt="Tanya Shultz">
<figcaption>
<p class="team-name">Tanya Shultz</p>
<p class="team-description">Tanya Shultz was an undergratuate student researching lunar swirls.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/staff/team-member2.gif" alt="Jonas Simolka">
<figcaption>
<p class="team-name">Jonas Simolka</p>
<p class="team-description">Jonas Simolka was a visiting graduate student from Stuttgart, Germany. Jonas worked with <a href="#sternovksy">Zoltan Sternovsky</a> on the gas target chamber at <a href="facilities.html#dal">DAL</a>.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/southwood.jpg" alt="Ben Southworth">
<figcaption>
<p class="team-name">Ben Southworth</p>
<p class="team-description">Ben Southworth was a graduate student in the Applied Math Department working with <a href="#kempf">Sascha Kempf</a> and <a href="#horanyi">Mihály Horányi</a> developing computational models of dust plumes. Ben is currently works at Los Alamos National Laboratory.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/stanley.jpg" alt="Jared Stanley">
<figcaption>
<p class="team-name">Jared Stanley</p>
<p class="team-description">Jared Stanley was an undergrauate student developing theoretical support for the SUDA instrument. Jared is now the CEO and founder of Adinkra.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<figure class="team-member"><img loading="lazy" src="images/students/stern.jpg" alt="Jordan Stern">
<figcaption>
<p class="team-name">Jordan Stern</p>
<p class="team-description">Jordan Stern graduated from Niwot High School, and entered CU Boulder in the Engineering Physics Program. Jordan is currenlty working as a data scientist for Shopify.</p>
</figcaption>
</figure>
</li>
<li class="one_quarter">
<a name="szalay"></a>
<figure class="team-member"><img loading="lazy" src="images/students/szalay.jpg" alt="Jamey Szalay">
<figcaption>
<p class="team-name">Jamey Szalay</p>
<p class="team-description">Jamey Szalay received his PhD in 2015 for work with the LDEX mission studying the Moon's dust cloud. He accepted a Post Doc at SwRI, San Antonio. He is now a research scholar at Princeton University.</p>
</figcaption>