-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1035 lines (898 loc) · 49.1 KB
/
index.html
File metadata and controls
1035 lines (898 loc) · 49.1 KB
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>
<!--
Story by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Susan E. Clark</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<!--<link href="https://use.fontawesome.com/releases/v5.0.4/css/all.css" rel="stylesheet">-->
<link href="assets/css/all.css" rel="stylesheet">
<link href="assets/css/fontawesome.css" rel="stylesheet">
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-J7D8YGK6LV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-J7D8YGK6LV');
</script>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper" class="divided">
<!-- One -->
<section class="banner style2 color1 invert orient-center content-align-center image-position-center fullscreen onload-image-fade-in onload-content-fade-right">
<div class="content">
<h1> <strong>Cosmic Magnetism & Interstellar Physics</strong></h1>
<p class="major">Exploring the physics of the interstellar medium and astrophysical magnetic fields at <a href="https://physics.stanford.edu/">Stanford University</a>.</p>
<p class="major">PI: <a href="index.html#me">Susan E. Clark</a></p>
<ul class="actions special">
<li>
<div class="icon-container">
<a href="#first" class="icon style2 solid major fa-chart-area" title="Research"></a>
<span class="icon-text">Research</span>
</div>
</li>
<li>
<div class="icon-container">
<a href="#group" class="icon style2 solid major fa-users" title="Group"></a>
<span class="icon-text">Group</span>
</div>
</li>
<li>
<div class="icon-container">
<a href="news.html" class="icon style2 solid major fa-newspaper" title="Group"></a>
<span class="icon-text">News</span>
</div>
</li>
<li>
<div class="icon-container">
<a href="#contact" class="icon style2 solid major fa-paper-plane" title="Contact"></a>
<span class="icon-text">Contact</span>
</div>
</li>
</ul>
<!--<p class="major" style="color: #FFA500;">Now hiring: <a href="joinus.html">join us!</a></p>-->
</div>
<div class="image">
<img src="images/lic_fade1.001.jpg" alt="Line Integral Convolution plot from Clark et al 2015" />
<!--<img src="images/banner.jpg" alt="" />-->
</div>
</section>
<!-- Two -->
<section class="spotlight style1 orient-right content-align-left image-position-center onscroll-image-fade-in" id="first">
<div class="content">
<h2>Research</h2>
<p>Our group is working on a diverse set of problems involving Galactic and extragalactic magnetism, 3D ISM structure, interstellar turbulence, star formation, and polarized cosmological foregrounds, among other topics.</p>
<p>Our research is funded in part by grants from the NSF and NASA, and by an Alfred P. Sloan Research Fellowship.</p>
<ul class="actions stacked">
<li><a href="index.html#gallery" class="button">Learn More</a></li>
</ul>
</div>
<div class="image">
<img src="images/galfa-lab-fiber-chunk1.jpg" alt="" />
</div>
</section>
<!-- Gallery -->
<section class="wrapper style1 align-center" id="gallery">
<div class="inner">
<h2>Recent paper highlights</h2>
<!--<p>This is a <strong>Gallery</strong> element. It can behave as a lightbox (when given the <code>lightbox</code> class), and you can customize its <span class="demo-controls">appearance with a number of modifiers</span>, as well as assign it an optional <code>onload</code> or <code>onscroll</code> transition modifier (<a href="#reference-gallery">details</a>).</p>-->
<p> Browse a few recent publications from our group below, or check out our <a href="news.html">recent news</a>.</p>
</div>
<!-- Gallery -->
<div class="gallery style2 medium lightbox onscroll-fade-in">
<article>
<a href="images/Paper_Spotlights/BKxHI_mom1map_crop.png" class="image">
<img src="images/Paper_Spotlights/BKxHI_mom1map_crop.png" alt="Magnetic field orientation inferred from HI structure in the BICEP/Keck region" />
</a>
<div class="caption">
<h3>BICEP/Keck. XVI. Characterizing Dust Polarization through Correlations with Neutral Hydrogen</h3>
<p>Led by George Halal</p>
<ul class="actions fixed">
<li><a href="https://ui.adsabs.harvard.edu/abs/2023ApJ...945...72A/abstract" class="button small">Learn More</a></li>
</ul>
</div>
</article>
<article>
<a href="images/Paper_Spotlights/MagneticMisalignment_datacartoon.png" class="image">
<img src="images/Paper_Spotlights/MagneticMisalignment_datacartoon.png" alt="Illustration of misaligned magnetic fields relative to HI structure" />
</a>
<div class="caption">
<h3>Magnetic Misalignment of Interstellar Dust Filaments</h3>
<p>Cukierman, Clark, & Halal 2023</p>
<ul class="actions fixed">
<li><a href="https://ui.adsabs.harvard.edu/abs/2023ApJ...946..106C/abstract" class="button small">Learn More</a></li>
</ul>
</div>
</article>
<article>
<a href="images/Paper_Spotlights/galfa_prior_cnm_syn.gif" class="image">
<img src="images/Paper_Spotlights/galfa_prior_cnm_syn.gif" alt="Illustration of CNM structure derived from CNM structure prior" />
</a>
<div class="caption">
<h3>Neutral gas phase distribution from HI morphology: phase separation with scattering spectra and variational autoencoders</h3>
<p>Lei, Clark, Morel, Allys, Butsky, Redshaw, Fielding 2025</p>
<ul class="actions fixed">
<li><a href="https://ui.adsabs.harvard.edu/abs/2025arXiv250520407L/abstract" class="button small">Learn More</a></li>
</ul>
</div>
</article>
<article>
<a href="images/Paper_Spotlights/HAWC+S106E.png" class="image">
<img src="images/Paper_Spotlights/HAWC+S106E.png" alt="HAWC+ E-band polarization data toward S106" />
</a>
<div class="caption">
<h3>Far-infrared Polarization Properties of Nearby Star-forming Regions: A New Compendium of SOFIA/HAWC+ Observations</h3>
<p>Karpovich, Clark, & Lopez-Rodriguez 2026</p>
<ul class="actions fixed">
<li><a href="https://ui.adsabs.harvard.edu/abs/2026arXiv260309962K/abstract" class="button small">Learn More</a></li>
</ul>
</div>
</article>
<article>
<a href="images/Paper_Spotlights/ST4CNM_STdiagram.png" class="image">
<img src="images/Paper_Spotlights/ST4CNM_STdiagram.png" alt="Diagram of the wavelet scattering transform applied to HI emission data" />
</a>
<div class="caption">
<h3>Probing the Cold Neutral Medium through HI Emission Morphology with the Scattering Transform</h3>
Transform</h3>
<p>Lei & Clark 2023</p>
<ul class="actions fixed">
<li><a href="https://ui.adsabs.harvard.edu/abs/2023ApJ...947...74L/abstract" class="button small">Learn More</a></li>
</ul>
</div>
</article>
<article>
<a href="images/Paper_Spotlights/Antennae_SOFIA.png" class="image">
<img src="images/Paper_Spotlights/Antennae_SOFIA.png" alt="Magnetic field structure in the Antennae galaxies" />
</a>
<div class="caption">
<h3>Extragalactic Magnetism with SOFIA (SALSA Legacy Program): The Magnetic Fields in the Multiphase Interstellar Medium of the Antennae Galaxies</h3>
<p>Lopez-Rodriguez et al. 2023</p>
<ul class="actions fixed">
<li><a href="https://ui.adsabs.harvard.edu/abs/2023ApJ...942L..13L/abstract" class="button small">Learn More</a></li>
</ul>
</div>
</article>
<article>
<a href="images/Paper_Spotlights/galaxy_mode_decomp.png" class="image">
<img src="images/Paper_Spotlights/galaxy_mode_decomp.png" alt="Mode structure of the magnetic field orientation in radio and far-infrared observations of galaxies" />
</a>
<div class="caption">
<h3>The structure of magnetic fields in spiral galaxies: a radio and far-infrared polarimetric analysis</h3>
<p>Surgent, Lopez-Rodriguez, & Clark 2023</p>
<ul class="actions fixed">
<li><a href="https://ui.adsabs.harvard.edu/abs/2023arXiv230207278S/abstract" class="button small">Learn More</a></li>
</ul>
</div>
</article>
<article>
<a href="images/gallery/fulls/06.jpg" class="image">
<img src="images/gallery/thumbs/06.jpg" alt="" />
</a>
<div class="caption">
<h3>Title</h3>
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
<ul class="actions fixed">
<li><span class="button small">Details</span></li>
</ul>
</div>
</article>
<article>
<a href="images/gallery/fulls/07.jpg" class="image">
<img src="images/gallery/thumbs/07.jpg" alt="" />
</a>
<div class="caption">
<h3>Title</h3>
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
<ul class="actions fixed">
<li><span class="button small">Details</span></li>
</ul>
</div>
</article>
<article>
<a href="images/gallery/fulls/08.jpg" class="image">
<img src="images/gallery/thumbs/08.jpg" alt="" />
</a>
<div class="caption">
<h3>Title</h3>
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
<ul class="actions fixed">
<li><span class="button small">Details</span></li>
</ul>
</div>
</article>
<article>
<a href="images/gallery/fulls/09.jpg" class="image">
<img src="images/gallery/thumbs/09.jpg" alt="" />
</a>
<div class="caption">
<h3>Title</h3>
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
<ul class="actions fixed">
<li><span class="button small">Details</span></li>
</ul>
</div>
</article>
<article>
<a href="images/gallery/fulls/10.jpg" class="image">
<img src="images/gallery/thumbs/10.jpg" alt="" />
</a>
<div class="caption">
<h3>Title</h3>
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
<ul class="actions fixed">
<li><span class="button small">Details</span></li>
</ul>
</div>
</article>
<article>
<a href="images/gallery/fulls/11.jpg" class="image">
<img src="images/gallery/thumbs/11.jpg" alt="" />
</a>
<div class="caption">
<h3>Title</h3>
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
<ul class="actions fixed">
<li><span class="button small">Details</span></li>
</ul>
</div>
</article>
<article>
<a href="images/gallery/fulls/12.jpg" class="image">
<img src="images/gallery/thumbs/12.jpg" alt="" />
</a>
<div class="caption">
<h3>Title</h3>
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
<ul class="actions fixed">
<li><span class="button small">Details</span></li>
</ul>
</div>
</article>
</div>
<!-- Gallery -->
<div class="gallery style2 medium lightbox onscroll-fade-in">
<article>
<a href="images/Paper_Spotlights/LeiClark23_phasecartoon.png" class="image">
<img src="images/Paper_Spotlights/LeiClark23_phasecartoon.png" alt="Diagram of a model of phase-dependent magnetic field disorder" />
</a>
<div class="caption">
<h3>A New Constraint on the Relative Disorder of Magnetic Fields between Neutral ISM Phases</h3>
<p>Lei & Clark 2024</p>
<ul class="actions fixed">
<li><a href="https://ui.adsabs.harvard.edu/abs/2023arXiv231203846L/abstract" class="button small">Learn More</a></li>
</ul>
</div>
</article>
<article>
<a href="images/Paper_Spotlights/galaxies_familyportrait.png" class="image">
<img src="images/Paper_Spotlights/galaxies_familyportrait.png" alt="Illustration of misaligned magnetic fields relative to HI structure" />
</a>
<div class="caption">
<h3>Extragalactic Magnetism with SOFIA (SALSA Legacy Program). V. First Results on the Magnetic Field Orientation of Galaxies</h3>
<p>Borlaff, Lopez-Rodriguez et al. 2023</p>
<ul class="actions fixed">
<li><a href="https://ui.adsabs.harvard.edu/abs/2023ApJ...952....4B/abstract" class="button small">Learn More</a></li>
</ul>
</div>
</article>
<article>
<a href="images/Paper_Spotlights/Marta_Blos_thetaHI.png" class="image">
<img src="images/Paper_Spotlights/Marta_Blos_thetaHI.png" alt="Relationship between HI absorption Zeeman magnetic field strength measurements and the dispersion of HI filaments" />
</a>
<div class="caption">
<h3>Joint Analysis of HI Absorption Zeeman Measurements and the Morphology of Filamentary HI Emission</h3>
<p>Nowotka, Clark et al. 2025</p>
<ul class="actions fixed">
<li><a href="https://ui.adsabs.harvard.edu/abs/2025arXiv250820065N/abstract" class="button small">Learn More</a></li>
</ul>
</div>
</article>
<article>
<a href="images/Paper_Spotlights/Sergio_tomography_snapshot.png" class="image">
<img src="images/Paper_Spotlights/Sergio_tomography_snapshot.png" alt="Synthetic observations of simulated galaxies" />
</a>
<div class="caption">
<h3>Extragalactic Magnetism with SOFIA (SALSA Legacy Program). VII. A Tomographic View of Far-infrared and Radio Polarimetric Observations through MHD Simulations of Galaxies</h3>
<p>Martin-Alvarez et al. 2024</p>
<ul class="actions fixed">
<li><a href="https://ui.adsabs.harvard.edu/abs/2024ApJ...966...43M/abstract" class="button small">Learn More</a></li>
</ul>
</div>
</article>
<article>
<a href="images/Paper_Spotlights/Dacunha_Bfield_est.png" class="image">
<img src="images/Paper_Spotlights/Dacunha_Bfield_est.png" alt="The magnetic field strength inferred from synchrotron observations under various assumptions" />
</a>
<div class="caption">
<h3>The Fallibility of Equipartition Magnetic Field Strengths from Synchrotron Emission Using Synthetically Observed Galaxies</h3>
<p>Dacunha, Martin-Alvarez, Clark, & Lopez-Rodriguez 2025</p>
<ul class="actions fixed">
<li><a href="https://ui.adsabs.harvard.edu/abs/2025ApJ...980..197D/abstract" class="button small">Learn More</a></li>
</ul>
</div>
</article>
<article>
<a href="images/Paper_Spotlights/CordovaRosado_PAHbackground.png" class="image">
<img src="images/Paper_Spotlights/CordovaRosado_PAHbackground.png" alt="Detection of the cosmic PAH background" />
</a>
<div class="caption">
<h3>The Atacama Cosmology Telescope: Galactic Dust Structure and the Cosmic PAH Background in Cross-correlation with WISE</h3>
<p>Cordova Rosado, Hensley, Clark et al. 2023</p>
<ul class="actions fixed">
<li><a href="https://ui.adsabs.harvard.edu/abs/2023arXiv230706352C/abstract" class="button small">Learn More</a></li>
</ul>
</div>
</article>
<article>
<a href="images/Paper_Spotlights/Halal_Clark_Tahani_snapshot.png" class="image">
<img src="images/Paper_Spotlights/Halal_Clark_Tahani_snapshot.png" alt="Evidence that the 3D structure of dust is imprinted on polarized dust emission" />
</a>
<div class="caption">
<h3>Imprints of the Local Bubble and Dust Complexity on Polarized Dust Emission</h3>
<p>Halal, Clark, & Tahani 2024</p>
<ul class="actions fixed">
<li><a href="https://ui.adsabs.harvard.edu/abs/2024ApJ...973...54H/abstract" class="button small">Learn More</a></li>
</ul>
</div>
</article>
<article>
<a href="images/gallery/fulls/06.jpg" class="image">
<img src="images/gallery/thumbs/06.jpg" alt="" />
</a>
<div class="caption">
<h3>Title</h3>
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
<ul class="actions fixed">
<li><span class="button small">Details</span></li>
</ul>
</div>
</article>
<article>
<a href="images/gallery/fulls/07.jpg" class="image">
<img src="images/gallery/thumbs/07.jpg" alt="" />
</a>
<div class="caption">
<h3>Title</h3>
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
<ul class="actions fixed">
<li><span class="button small">Details</span></li>
</ul>
</div>
</article>
<article>
<a href="images/gallery/fulls/08.jpg" class="image">
<img src="images/gallery/thumbs/08.jpg" alt="" />
</a>
<div class="caption">
<h3>Title</h3>
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
<ul class="actions fixed">
<li><span class="button small">Details</span></li>
</ul>
</div>
</article>
<article>
<a href="images/gallery/fulls/09.jpg" class="image">
<img src="images/gallery/thumbs/09.jpg" alt="" />
</a>
<div class="caption">
<h3>Title</h3>
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
<ul class="actions fixed">
<li><span class="button small">Details</span></li>
</ul>
</div>
</article>
<article>
<a href="images/gallery/fulls/10.jpg" class="image">
<img src="images/gallery/thumbs/10.jpg" alt="" />
</a>
<div class="caption">
<h3>Title</h3>
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
<ul class="actions fixed">
<li><span class="button small">Details</span></li>
</ul>
</div>
</article>
<article>
<a href="images/gallery/fulls/11.jpg" class="image">
<img src="images/gallery/thumbs/11.jpg" alt="" />
</a>
<div class="caption">
<h3>Title</h3>
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
<ul class="actions fixed">
<li><span class="button small">Details</span></li>
</ul>
</div>
</article>
<article>
<a href="images/gallery/fulls/12.jpg" class="image">
<img src="images/gallery/thumbs/12.jpg" alt="" />
</a>
<div class="caption">
<h3>Title</h3>
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
<ul class="actions fixed">
<li><span class="button small">Details</span></li>
</ul>
</div>
</article>
</div>
</section>
<!-- Three -->
<section class="spotlight style2 medium orient-right content-align-left image-position-center onscroll-image-fade-in" id="me">
<div class="content">
<h2>Susan E. Clark</h2>
<p>I am an Assistant Professor of Physics at Stanford. I am an astrophysicist, with primary research
interests in cosmic magnetic fields, magnetohydrodynamic processes, and the interstellar medium.
My group and I tackle these complex systems with a combination of observation, simulation, and
analytic theory.</p>
<p>Prior to joining the faculty at Stanford, I was a NASA Hubble Fellow and postdoctoral member at
the <a href="https://www.ias.edu/scholars/susan-e-clark">Institute for Advanced Study</a> in
Princeton, New Jersey. I received my Ph.D. in 2017 from Columbia University, where I was an
NSF Graduate Fellow, and I attended the University of North Carolina at Chapel Hill on a
<a href="https://www.moreheadcain.org/">Morehead-Cain scholarship</a>. I am originally from
Annandale, Virginia. </p>
<p>Astrophysical magnetism is a data-intensive, multi-wavelength field. I collaborate on a number
of ambitious astrophysics and cosmology experiments, including the
<a href="https://act.princeton.edu/">Atacama Cosmology Telescope</a>,
<a href="https://simonsobservatory.org/">Simons Observatory</a>,
<a href="https://cmb-s4.org/">CMB-S4</a>,
<a href="https://www.ccatobservatory.org/">CCAT-Prime</a>,
<a href=https://www.isas.jaxa.jp/en/missions/spacecraft/future/litebird.html>LiteBIRD</a>,
the <a href="https://gaskap.anu.edu.au/">Galactic Australian SKA Pathfinder (GASKAP)</a>,
the Global Magneto-Ionic Medium Survey (GMIMS), the Balloon-borne Large Aperture Submillimeter
Telescope (BLAST), and <a href="https://via-project.org/">Via</a>. I co-founded the Pan-Experiment Galactic Science Group, which brings together
scientists from a number of collaborations to facilitate Milky Way science with CMB experiment data.
I am the co-director of the <a href="https://datascience.stanford.edu/kipacsds-center-decoding-universe">Center for Decoding the Universe @ Stanford</a>,
a new center within Stanford Data Science that aims to build interdisciplinary collaborations that leverage complex data to infer how the universe works.
</p>
<!--<p>Prior to joining the faculty at Stanford, I was a NASA Hubble Fellow and postdoctoral member at the Institute for Advanced Study in Princeton, New Jersey. I received my Ph.D. from Columbia University, where I was an NSF Graduate Fellow, and my B.S. in Physics from the University of North Carolina at Chapel Hill on a Morehead-Cain Scholarship. </p>-->
<!--<a href="https://ui.adsabs.harvard.edu/abs/2019arXiv190210541H/abstract">PICO</a>-->
<ul class="actions special">
<!-- CV/Clark_CV.pdf?pdf=ClarkCV -->
<!--<a href="#" class="icon style2 solid major fa-graduation-cap"> CV</a>-->
<li><a href="CV/Clark_CV_Stanford.pdf" class="button">CV</a></li> <li><a href="https://ui.adsabs.harvard.edu/#/public-libraries/7OQ3v3qdTJutWdGxO2achg" class="button">Publications</a></li> <li><a href="news.html" class="button">News</a></li>
</ul>
</div>
<div class="image" style="text-align: center;">
<!--<img src="images/Clark_headshot_2020.JPG" alt="Susan E. Clark"/>-->
<img src="images/Susan_byChristopherMichel_crop.jpeg" alt="Susan E. Clark"/>
<p></br>Photo credit: <a href="https://explorers.com/">Christopher Michel</a></p>
</div>
</section>
<!--<section class="wrapper style1 align-center">
<div class="inner">-->
<section class="wrapper style1 align-center">
<div class="inner medium">
<div class="index align-left">
<section>
<header>
<h3> Upcoming Talks <br> and Travel </h3>
</header>
<div class="content">
<h4><b>Catch me at:</b></h4>
<ul class="alt">
<!--<li><a href="https://www.calacademy.org/events/benjamin-dean-astronomy-lectures/mapping-cosmic-magnetism-in-the-space-between-the-stars">California Academy of Sciences</a> (public talk): Oct. 2</li>
<li><a href="https://sites.google.com/asiaa.sinica.edu.tw/scintillometry2023">Scintillometry 2023</a>: Nov. 6-10</li>
<li>UC Berkeley TAC Seminar: Dec. 4</li>
<li>UPenn Astrophysics Seminar: Jan. 17</li>
<li>Yale Colloquium: Feb. 8</li>
<li>CfA Colloquium: Feb. 13</li>
<li>KITP Feb. 19 - March 15</li>
<li>Arthur C. Wolfe Symposium in Astrophysics, Scripps Institute for Oceanography: March 25 - 29</li>-->
<!--<li>UMD <a href="https://space.umd.edu/seminars/">Space and Cosmic Ray Physics Seminar</a>: April 22</li>
<li>AAS Summer, Madison Wisconsin: June 9 - 13</li>
<li>Simons Observatory collaboration meeting: July 22 - 26</li>-->
<!--<li>Texas A&M Mitchell Institute Seminar: Oct. 22</li>
<li>Harvard, CfA Colloquium: Nov. 19</li>
<li>Princeton/IAS Colloquium: March 4, 2025</li>-->
<!--<li><a href="https://aas.org/meetings/aas246/speakers">AAS Summer Meeting</a>, Anchorage, Alaska: June 8-11, 2025</li>
<li>Interstellar Institute, Orsay, France: July 7-18, 2025</li>-->
<!--<li><a href="https://openminds.stanford.edu/los-angeles?utm_source=LI">Stanford Open Minds</a> Los Angeles: Nov. 15, 2025</li>
<li>IAS/Princeton Colloquium: Nov. 18, 2025</li>
<li>UChicago Colloquium: Jan. 14, 2026</li>
<li>Caltech Colloquium: Feb. 18, 2026</li>
<li>PRIMA Community Astronomy Science and Technology (P-CAST) Talk: Feb. 23, 2026</li>-->
<li>Via Collaboration Meeting: March 16-17, CfA</li>
<li>Space Telescope Science Institute: March 18-20</li>
<li>Simons Observatory Collaboration Meeting, Toronto: July 20-24</li>
<li>Interstellar Institute, Orsay, France: Sept. 21 - Oct. 9</li>
<li>KITP Feb. 7 - March 12, 2027</li>
</ul>
</div>
</section>
</div>
</div>
</section>
<!-- Five -->
<!--
<section class="wrapper style1 align-center">
<div class="inner">
<h2>Massa sed condimentum</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi id ante sed ex pharetra lacinia sit amet vel massa. Donec facilisis laoreet nulla eu bibendum. Donec ut ex risus. Fusce lorem lectus, pharetra pretium massa et, hendrerit vestibulum odio lorem ipsum.</p>
</div>
-->
<!-- Gallery -->
<!--
<div class="gallery style2 medium lightbox onscroll-fade-in">
<article>
<a href="images/gallery/fulls/01.jpg" class="image">
<img src="images/gallery/thumbs/01.jpg" alt="" />
</a>
<div class="caption">
<h3>Ipsum Dolor</h3>
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
<ul class="actions fixed">
<li><span class="button small">Details</span></li>
</ul>
</div>
</article>
</div>
</section>
-->
<!-- makes the pics rounded -->
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
img {
border-radius: 50%;
}
</style>
</head>
<!-- Six -->
<section class="wrapper style1 align-center" id="group">
<div class="inner">
<h2>Group Members</h2>
<!--<p>Our group is working on a diverse set of problems involving Galactic and extragalactic magnetism, 3D ISM structure, interstellar turbulence, star formation, and polarized cosmological foregrounds, among other topics. </p>-->
<div class="items style2 medium">
<!--<section>
<article>
<a href="enrique.html"><img src="images/EnriqueLopezRodriguez_Portrait1_crop.jpg" alt="Enrique Lopez Rodriguez" style="width:200px"/></a>
</article>
<h3><a href="enrique.html">Enrique Lopez Rodriguez</a></h3>
<p>Research Scientist</p>
</section>-->
<!--<section>
<article>
<a href="ari.html"><img src="images/Ari_profile_photo.jpg" alt="Ari Cukierman" style="width:200px"/></a>
</article>
<h3><a href="ari.html">Ari Cukierman</a></h3>
<p>Postdoc</p>
</section>-->
<section id="grouprow1">
<article>
<a href="iryna.html"><img src="images/iryna_headshot.png" alt="Iryna Butsky" style="width:200px"/></a>
</article>
<h3><a href="iryna.html">Iryna Butsky</a></h3>
<p>Postdoc</p>
</section>
<section>
<article>
<a href="sanskriti.html"><img src="images/ISMwebsite_sanskriti.jpg" alt="Sanskriti Das" style="width:200px"/></a>
</article>
<h3><a href="sanskriti.html">Sanskriti Das</a></h3>
<p>Postdoc</p>
</section>
<section>
<article>
<a href="philipp.html"><img src="images/Philipp.jpeg" alt="Philipp Frank" style="width:200px"/></a>
</article>
<h3><a href="philipp.html">Philipp Frank</a></h3>
<p>Postdoc</p>
</section>
<section id="grouprow2">
<article>
<a href="dylan.html"><img src="images/Dylan.jpeg" alt="Dylan Jow" style="width:200px"/></a>
</article>
<h3><a href="dylan.html">Dylan Jow</a></h3>
<p>Postdoc</p>
</section>
<section>
<article>
<a href="jaeyeon.html"><img src="images/jkim.png" alt="Jaeyeon Kim" style="width:200px"/></a>
</article>
<h3><a href="jaeyeon.html">Jaeyeon Kim</a></h3>
<p>Postdoc</p>
</section>
<section>
<article>
<a href="sergio.html"><img src="images/Sergio_crop.jpg" alt="Sergio Martin Alvarez" style="width:200px"/></a>
</article>
<h3><a href="sergio.html">Sergio Martin Alvarez</a></h3>
<p>Postdoc</p>
</section>
<section id="grouprow3">
<article>
<a href="eric.html"><img src="images/moseley_headshot.jpeg" alt="Eric Moseley" style="width:200px"/></a>
</article>
<h3><a href="eric.html">Eric Moseley</a></h3>
<p>Postdoc</p>
</section>
<!--<section id="grouprow3">
<article>
<a href="mehrnoosh.html"><img src="images/MehrnooshTahani.jpg" alt="Mehrnoosh Tahani" style="width:200px"/></a>
</article>
<h3><a href="mehrnoosh.html">Mehrnoosh Tahani</a></h3>
<p>Postdoc → Research Scientist</p>
</section>-->
<!--<section id="grouprow2">
<a href="alejandro.html"><img src="images/alejandro.png" alt="Alejandro Borlaff" style="width:200px"/></a>
<h3><a href="alejandro.html">Alejandro Borlaff</a></h3>
<p>Visiting Postdoc</p>
</section>-->
<!--<section>
<a href="george.html"><img src="images/George_photo_crop.jpg" alt="George Halal" style="width:200px"/></a>
<h3><a href="george.html">George Halal</a></h3>
<p>Graduate Student</p>
</section>-->
<section>
<a href="ben.html"><span><img src="images/ben_headshot.jpg" alt="Ben Dodge" style="width:200px"/></span></a>
<h3><a href="ben.html">Ben Dodge</a></h3>
<p>Graduate Student</p>
</section>
<section>
<a href="kaitlyn.html"><span><img src="images/Kaitlyn.jpeg" alt="Kaitlyn Karpovich" style="width:200px"/></span></a>
<h3><a href="kaitlyn.html">Kaitlyn Karpovich</a></h3>
<p>Graduate Student</p>
</section>
<section>
<a href="minjie.html"><span><img src="images/profile_minjie.jpeg" alt="Minjie Lei" style="width:200px"/></span></a>
<h3><a href="minjie.html">Minjie Lei</a></h3>
<p>Graduate Student</p>
</section>
<section id="grouprow4">
<a href="marta.html"><span><img src="images/Marta_profile_square.jpg" alt="Marta Nowotka" style="width:200px"/></span></a>
<h3><a href="marta.html">Marta Nowotka</a></h3>
<p>Graduate Student</p>
</section>
<section>
<a href="natascha.html"><span><img src="images/Natascha.jpg" alt="Natascha Barac" style="width:200px"/></span></a>
<h3><a href="natascha.html">Natascha Barac</a></h3>
<p>Graduate Rotation Student</p>
</section>
<!--<section>
<a href="katie.html"><span><img src="images/Katie.jpeg" alt="Katie Brown" style="width:200px"/></span></a>
<h3><a href="kaitlyn.html">Katie Brown</a></h3>
<p>Graduate Rotation Student</p>
</section>-->
<!--<section id="grouprow5">
<a href="BenS.html"><span><img src="images/BenS.jpeg" alt="Ben Sherwin" style="width:200px"/></span></a>
<h3><a href="BenS.html">Ben Sherwin</a></h3>
<p>Graduate Rotation Student</p>
</section>-->
<!--<section>
<a href="inigo.html"><span><img src="images/Inigo.jpg" alt="Iñigo Valenzuela Lombera" style="width:200px"/></span></a>
<h3><a href="inigo.html">Iñigo Valenzuela Lombera</a></h3>
<p>Master's Student</p>
</section>-->
<!--<section id="grouprow3">
<a href="charles.html"><span><img src="images/Charles_photo.jpg" alt="Charles Yang" style="width:200px"/></span></a>
<h3><a href="charles.html">Charles Yang</a></h3>
<p>Graduate Rotation Student</p>
</section>-->
<!--<section>
<a href="tara.html"><span><img src="images/tara_headshot.jpeg" alt="Tara Dacunha" style="width:200px"/></span></a>
<h3><a href="tara.html">Tara Dacunha</a></h3>
<p>Graduate Rotation Student</p>
</section>-->
<!--<section>
<a href="jay.html"><span><img src="images/jay.png" alt="Jay Baptista" style="width:200px"/></span></a>
<h3><a href="jay.html">Jay Baptista</a></h3>
<p>Graduate Rotation Student</p>
</section>
<section>
<a href="annie.html"><span><img src="images/Annie.jpg" alt="Annie Cheng" style="width:200px"/></span></a>
<h3><a href="annie.html">Annie Cheng</a></h3>
<p>Graduate Rotation Student</p>
</section>-->
<!--<section>
<a href="sean.html"><span><img src="images/Sean_Picture.png" alt="Shenghua (Sean) Liu" style="width:200px"/></span></a>
<h3><a href="sean.html">Shenghua (Sean) Liu</a></h3>
<p>Graduate Rotation Student</p>
</section>
<section>
<a href="caleb.html"><span><img src="images/Caleb.jpg" alt="Caleb Redshaw" style="width:200px"/></span></a>
<h3><a href="caleb.html">Caleb Redshaw</a></h3>
<p>Graduate Rotation Student</p>
</section>
<section>
<a href="khwaish.html"><span><img src="images/khwaish_headshot.png" alt="Khwaish Billore" style="width:200px"/></span></a>
<h3><a href="khwaish.html">Khwaish Billore</a></h3>
<p>Undergraduate Student</p>
</section>-->
<!--<section>
<a href="laywood.html"><span><img src="images/Laywood_photo.jpeg" alt="Laywood Fayne" style="width:200px"/></span></a>
<h3><a href="laywood.html">Laywood Fayne</a></h3>
<p>Undergraduate Student</p>
</section>
<section>
<a href="francesca.html"><span><img src="images/Francesca_profile.jpg" alt="Francesca Fernandes" style="width:200px"/></span></a>
<h3><a href="francesca.html">Francesca Fernandes</a></h3>
<p>Undergraduate Student</p>
</section>-->
<!--<section>
<a href="eliza.html"><span><img src="images/Eliza_Gallagher_crop.jpg" alt="Eliza Gallagher" style="width:200px"/></span></a>
<h3><a href="eliza.html">Eliza Gallagher</a></h3>
<p>Undergraduate Student</p>
</section>-->
<!--<section id="grouprow4">
<a href="caio.html"><span><img src="images/Caio.jpeg" alt="Caio Gould" style="width:200px"/></span></a>
<h3><a href="caio.html">Caio Gould</a></h3>
<p>Undergraduate Student</p>
</section>-->
<section id="grouprow5">
<a href="diego.html"><span><img src="images/Diego_profile_picture.png" alt="Diego Maglione" style="width:200px"/></span></a>
<h3><a href="diego.html">Diego Maglione</a></h3>
<p>Undergraduate Student</p>
</section>
<!--<section>
<a href="will.html"><span><img src="images/Will_profile_photo.jpg" alt="Will Surgent" style="width:200px"/></span></a>
<h3><a href="will.html">Will Surgent</a></h3>
<p>Undergraduate Student</p>
</section>-->
<section>
<a href="mark.html"><span><img src="images/Mark_profile_photo.png" alt="Mark Zhu" style="width:200px"/></span></a>
<h3><a href="mark.html">Mark Zhu</a></h3>
<p>Undergraduate Student</p>
</section>
<!--<section id="grouprow5">
<a href="janani.html"><span><img src="images/janani_headshot_denim.png" alt="Janani Balasubramanian" style="width:200px"/></span></a>
<h3><a href="janani.html">Janani Balasubramanian</a></h3>
<p>Artist in Residence</p>
</section>-->
</div>
<h3>Group Alumni</h3>
<p>
<b> <span style="color: #C70039;">Postdoc & Research Scientist alumni</span> </b>
</br>
<b><a href="ari.html">Ari Cukierman</a></b>, KIPAC Fellow, 2021-2022. → Postdoc at Caltech. <a href="https://ui.adsabs.harvard.edu/search/fq=%7B!type%3Daqp%20v%3D%24fq_database%7D&fq_database=(database%3Aastronomy%20OR%20database%3Aphysics)&q=author%3A%22cukierman%22%20author%3A%22clark%2C%20s%20e%22&sort=date%20desc%2C%20bibcode%20desc&p_=0">[Our papers]</a>
</br>
<b><a href="enrique.html">Enrique Lopez Rodriguez</a></b>, KIPAC Research Scientist, 2021-2024. → Associate Professor at the University of South Carolina. <a href="https://ui.adsabs.harvard.edu/search/filter_author_facet_hier_fq_author=OR&filter_author_facet_hier_fq_author=author_facet_hier%3A%221%2FClark%2C%20S%2FClark%2C%20Susan%20E%22&filter_author_facet_hier_fq_author=author_facet_hier%3A%221%2FClark%2C%20S%2FClark%2C%20Susan%22&fq=%7B!type%3Daqp%20v%3D%24fq_database%7D&fq=%7B!type%3Daqp%20v%3D%24fq_author%7D&fq_author=(author_facet_hier%3A%221%2FClark%2C%20S%2FClark%2C%20Susan%20E%22%20OR%20author_facet_hier%3A%221%2FClark%2C%20S%2FClark%2C%20Susan%22)&fq_database=(database%3Aastronomy%20OR%20database%3Aphysics)&p_=0&q=author%3A%22lopez-rodriguez%22%20author%3A%22clark%2C%20s%20e%22&sort=date%20desc%2C%20bibcode%20desc">[Our papers]</a>
</br>
<b><a href="mehrnoosh.html">Mehrnoosh Tahani</a></b>, KIPAC and Banting Fellow, 2022-2025. → Assistant Professor at the University of South Carolina. <a href="https://ui.adsabs.harvard.edu/search/fq=%7B!type%3Daqp%20v%3D%24fq_database%7D&fq_database=(database%3Aastronomy%20OR%20database%3Aphysics)&q=author%3A%22tahani%22%20%20author%3A%22clark%22&sort=date%20desc%2C%20bibcode%20desc&p_=0">[Our papers]</a>
</br>
</br>
<b> <span style="color: #C70039;">Graduate student alumni</span> </b>
</br>
<a href="george.html"><b>George Halal</b></a>, Stanford Physics PhD '24. → Member of the Technical Staff, Contextual AI. <a href="https://ui.adsabs.harvard.edu/search/fq=%7B!type%3Daqp%20v%3D%24fq_database%7D&fq_database=(database%3Aastronomy%20OR%20database%3Aphysics)&q=author%3A%22halal%22%20author%3A%22clark%2C%20s%20e%22&sort=date%20desc%2C%20bibcode%20desc&p_=0">[Our papers]</a>
</br>
</br>
<b> <span style="color: #C70039;">Graduate rotation student alumni</span> </b>
</br>
<i>All rotation students are Stanford Physics PhD students unless otherwise noted.</i>
</br>
<b><a href="katie.html">Katie Brown</a></b>, fall 2025
</br>
<b><a href="bens.html">Ben Sherwin</a></b>, fall 2025
</br>
<b><a href="caleb.html">Caleb Redshaw</a></b>, Mechanical Engineering, spring 2024. <a href="https://ui.adsabs.harvard.edu/search/fq=%7B!type%3Daqp%20v%3D%24fq_database%7D&fq_database=(database%3Aastronomy%20OR%20database%3Aphysics)&q=%20author%3A%22redshaw%2C%20caleb%22%20%20author%3A%22clark%22&sort=date%20desc%2C%20bibcode%20desc&p_=0">[Our papers]</a>
</br>
<b><a href="annie.html">Annie Cheng</a></b>, spring 2024
</br>
<b><a href="jay.html">Jay Baptista</a></b>, winter 2024
</br>
<b><a href="sean.html">Shenghua (Sean) Liu</a></b>, fall 2023
</br>
<b><a href="tara.html">Tara Dacunha</a></b>, spring 2023. <a href="https://ui.adsabs.harvard.edu/search/q=author%3A%22dacunha%22%20author%3A%22clark%22&sort=date%20desc%2C%20bibcode%20desc&p_=0">[Our papers]</a>
</br>
<b>Viraj Manwadkar</b>, winter 2023
</br>
<b>Jack Dinsmore</b>, winter 2023
</br>
<b>Charles Yang</b>, fall 2022 <!--Currently a graduate student at Stanford.-->
</br>
</br>
<b> <span style="color: #C70039;">Undergraduate alumni</span> </b>
</br>
<!--Yujina Basnet, Khwaish Billore, Gisselle Jimenez, Diego Brandon Maglione,
Anthony Nu\~nez, Will Surgent, Patrick Tupoumalohi, Mark Ting Hong Zhu-->
<!--</br>
<b>Sally Jiang</b> (Leadership Alliance ◆ Currently a PhD student at Columbia)
</br>-->
<b><a href="caio.html">Caio Gould</a></b>, Stanford '26
</br>
<b>Emily Kim</b>, Stanford, Summer 2024
</br>
<b>Amber Yellow Horse</b>, Stanford, Summer 2024
</br>
<b>Jerry Yuan</b>, Stanford, Summer 2024
</br>
<b>Ziqian (Violet) Zhou</b>, Stanford, Summer 2024
</br>
<b>Carlos Rodriguez</b>, Stanford, Summer 2024
</br>
<b><a href="will.html">Will Surgent</a></b>, Stanford '24. → NSF Graduate Fellow, UC Santa Barbara Physics. <a href="https://ui.adsabs.harvard.edu/search/filter_author_facet_hier_fq_author=OR&filter_author_facet_hier_fq_author=author_facet_hier%3A%221%2FClark%2C%20S%2FClark%2C%20Susan%20E%22&filter_author_facet_hier_fq_author=author_facet_hier%3A%221%2FClark%2C%20S%2FClark%2C%20Susan%22&fq=%7B!type%3Daqp%20v%3D%24fq_database%7D&fq=%7B!type%3Daqp%20v%3D%24fq_author%7D&fq_author=(author_facet_hier%3A%221%2FClark%2C%20S%2FClark%2C%20Susan%20E%22%20OR%20author_facet_hier%3A%221%2FClark%2C%20S%2FClark%2C%20Susan%22)&fq_database=(database%3Aastronomy%20OR%20database%3Aphysics)&q=author%3A%22surgent%22%20author%3A%22clark%2C%20s%20e%22&sort=date%20desc%2C%20bibcode%20desc&p_=0">[Our papers]</a>
</br>
<b><a href="laywood.html">Laywood Fayne</a></b>, Stanford '24. → Master's student, Stanford Computer Science
</br>
<b><a href="khwaish.html">Khwaish Billore</a></b>, Stanford '25
</br>
<b><a href="francesca.html">Francesca Fernandes</a></b>, Stanford '25
</br>
<b>Patrick Tupoumalohi</b>, Summer 2023
</br>
<b>Anthony Nuñez</b>, Stanford '26. <a href="https://ui.adsabs.harvard.edu/search/filter_author_facet_hier_fq_author=OR&filter_author_facet_hier_fq_author=author_facet_hier%3A%221%2FClark%2C%20S%2FClark%2C%20Susan%20E%22&filter_author_facet_hier_fq_author=author_facet_hier%3A%221%2FClark%2C%20S%2FClark%2C%20Susan%22&fq=%7B!type%3Daqp%20v%3D%24fq_database%7D&fq=%7B!type%3Daqp%20v%3D%24fq_author%7D&fq_author=(author_facet_hier%3A%221%2FClark%2C%20S%2FClark%2C%20Susan%20E%22%20OR%20author_facet_hier%3A%221%2FClark%2C%20S%2FClark%2C%20Susan%22)&fq_database=(database%3Aastronomy%20OR%20database%3Aphysics)&q=author%3A%22nunez%22%20author%3A%22clark%2C%20s%20e%22&sort=date%20desc%2C%20bibcode%20desc&p_=0">[Our papers]</a>
</br>
<b>Gisselle Jimenez</b>, Cal-Bridge Summer 2023
</br>
<b>Yujina Basnet</b>, Stanford '26
</br>
<b>Monica Hicks</b>, Stanford '25. → Master's student, Stanford Computer Science. <a href="https://ui.adsabs.harvard.edu/search/fq=%7B!type%3Daqp%20v%3D%24fq_database%7D&fq_database=(database%3Aastronomy%20OR%20database%3Aphysics)&q=%20author%3A%22hicks%2C%20monica%22%20%20author%3A%22clark%2C%20susan%22&sort=date%20desc%2C%20bibcode%20desc&p_=0">[Our papers]</a>
</br>
<b>Gabriel Muñoz Zarazua</b>, Cal-Bridge Summer 2022
</br>
<b>Israel Reyes</b>, Summer 2022. → Undergraduate, UC Berkeley
</br>
<b>Abraar Saleem</b>, Cal-Bridge Summer 2022. → KIPAC post-baccalaurate fellow, Stanford
</br>
<b>Eliza Gallagher</b>, Stanford '25
</br>
<b>Kendall Zylstra</b>, Stanford '24. → Grad student, Stanford Geophysics
</br>
<b>Sally Jiang</b>, Leadership Alliance 2021. → PhD student, Columbia Astronomy
<!--</br>
</br>
<b> <span style="color: #C70039;">Artist in Residence Alumni</span> </b>
</br>
<b><a href="janani.html">Janani Balasubramanian</a></b>, Artist in Residence 2024-->
</p>
<ul class="actions stacked" id="joinus">
<li><a href="joinus.html" class="button">Join Us</a></li>
</ul>
</div>
</section>
<!-- join us -->
<!--<section class="wrapper style1 align-center ">
<div class="inner medium">
<h2>Tempus adipiscing</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi id ante sed ex pharetra lacinia sit amet vel massa. Donec facilisis laoreet nulla eu bibendum. Donec ut ex risus. Fusce lorem lectus, pharetra pretium massa et, hendrerit vestibulum odio lorem ipsum dolor sit amet.</p>
<ul class="actions stacked">
<li><a href="#" class="button">Learn More</a></li>
</ul>
</div>
</section>-->
<!-- Seven -->
<section id="contact" class="wrapper style2 align-center">
<div class="inner medium">
<h2>Contact</h2>
<h3>susanclark@stanford.edu</h3>
<h3>Department of Physics</br>