-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtransients.html
1086 lines (966 loc) · 66.4 KB
/
transients.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
<!--
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
-->
<!DOCTYPE html>
<html>
<!-- Head -->
<head>
<title>Center for Theoretical Astrophysics, Los Alamos National Laboratory</title>
<!-- Meta-Tags -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="keywords" content="Computational Astrophysics Los Alamos LANL CTA transients kilonova supernova simulation modeling">
<script type="application/x-javascript"> addEventListener("load", function() {
setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); }
</script>
<!-- //Meta-Tags -->
<!-- Custom-Theme-Files -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css" type="text/css" media="all"> <!-- Page-Styling -->
<link rel="stylesheet" href="css/chocolat.css" type="text/css" media="all"> <!-- Gallery-Popup-CSS -->
<!-- //Custom-Theme-Files -->
<!-- Web-Fonts -->
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800" type="text/css">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Montserrat:400,700" type="text/css">
<!-- //Web-Fonts -->
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
</head>
<!-- //Head -->
<!-- Body -->
<body>
<!-- Header -->
<div class="header" id="home">
<!-- Top-Bar -->
<div class="top-bar">
<div class="container">
<!-- Logo -->
<div class="logo">
<p><a href="#">Center for Theoretical<br />Astrophysics</a></p>
<br>
<p class="subtitle"><a href="http://cta.lanl.gov">Los Alamos National Laboratory</a></p>
</div>
<!-- //Logo -->
<div class="info">
<!-- Email -->
<div class="email">
<p><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span><a href="mailto:[email protected]">[email protected]</a></p>
</div>
<!-- //Email -->
</div>
</div>
</div>
<!-- //Top-Bar -->
<!-- Slider -->
<div class="slider">
<div class="callbacks_container">
<ul class="rslides" id="slider">
<li>
<div class="slider-img">
<img src="images/sgra50.png" class="img-responsive" alt="Black Hole Accetion">
</div>
<div class="slider-info">
<h3>BLACK HOLE ACCRETION</h3>
<div class="underline"></div>
<p>General relativistic radiation magnetohydrodynamics.</p>
</div>
</li>
<li>
<div class="slider-img">
<img src="images/type1aflame.jpg" class="img-responsive" alt="Type Ia Supernovae">
</div>
<div class="slider-info">
<h3>TYPE IA SUPERNOVAE</h3>
<div class="underline"></div>
<p>High resolution models of turbulent flames.</p>
</div>
</li>
<li>
<div class="slider-img">
<img src="images/Oshell.jpg" class="img-responsive" alt="Stellar Astrophysics">
</div>
<div class="slider-info">
<h3>STELLAR ASTROPHYSICS</h3>
<div class="underline"></div>
<p>Turbulence in massive stars.</p>
</div>
</li>
<li>
<div class="slider-img">
<img src="images/ccsn.jpg" class="img-responsive" alt="Core-Collapse Supernovae">
</div>
<div class="slider-info">
<h3>CORE-COLLAPSE SUPERNOVAE</h3>
<div class="underline"></div>
<p>State-of-the-art neutrino radiation hydrodynamics.</p>
</div>
</li>
<li>
<div class="slider-img">
<img src="images/cosmology.jpg" class="img-responsive" alt="cosmology">
</div>
<div class="slider-info">
<h3>COSMOLOGY</h3>
<div class="underline"></div>
<p>Large-scale structure, star formation, and supermassive black hole growth.</p>
</div>
</li>
<li>
<div class="slider-img">
<img src="images/wd_merge.png" class="img-responsive" alt="Compact Object Mergers">
</div>
<div class="slider-info">
<h3>COMPACT OBJECT MERGERS</h3>
<div class="underline"></div>
<p>SPH simulations of binary mergers.</p>
</div>
</li>
<li>
<div class="slider-img">
<img src="images/plasma.png" class="img-responsive" alt="Plasma Astrophysics">
</div>
<div class="slider-info">
<h3>PLASMA ASTROPHYSICS</h3>
<div class="underline"></div>
<p>Particle-in-cell simulations of reconnection.</p>
</div>
</li>
</ul>
</div>
</div>
<!-- //Slider -->
</div>
<!-- //Header -->
<!-- Navbar -->
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Navbar-Collapse -->
<div class="collapse navbar-collapse nav-wil" id="bs-example-navbar-collapse-1">
<nav class="menu menu--francisco">
<ul class="nav navbar-nav menu__list">
<li class="menu__item__five"><a href="#codes" class="menu__link"><span class="menu__helper">RESEARCH</span></a></li>
<li class="menu__item__five"><a href="#data" class="menu__link"><span class="menu__helper">OUTREACH</span></a></li>
<li class="menu__item__five"><a href="#papers" class="menu__link"><span class="menu__helper">OPPORTUNITIES</span></a></li>
<li class="menu__item__five"><a href="#gallery" class="menu__link"><span class="menu__helper">PEOPLE</span></a></li>
<li class="menu__item__five"><a href="#team" class="menu__link"><span class="menu__helper">CONTACT</span></a></li>
</ul>
</nav>
</div>
<!-- //Navbar-Collapse -->
</div>
</nav>
<!-- //Navbar -->
<!-- About -->
<div class="about" id="about">
<div class="container">
<h1>ABOUT - Under Construction</h1>
<p>LANL models transient light-curves and using a broad set of astrophysical codes:</p>
<div class="underline1"></div>
<div class="about-grids" style="background: url('images/roundworld.jpg') no-repeat; background-position:100% 0%;background-size: 40%">
<div class="col-md-6 col-sm-6 about-grid about-info">
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
<!-- //About -->
<!-- Projects -->
<div class="about" id="projects">
<div class="container">
<h1>RESEARCH</h1>
<p>CTA scientists are engaged in a wide variety of projects. Some of these topics are listed below with links to more information.</p>
<h4><a href="https://ui.adsabs.harvard.edu/#/public-libraries/X_2en3tqRqa_sJXo-FL30w">Publications</h4></a>
<div class="underline1"></div>
<div class="projlist">
<ul>
<li class="projtitle">Active Galactic Nuclei</li>
<li>Evolution of massive black holes, studying both radiation and magneto-hydrodynamic effects</li>
<li class="projtitle">Computational Astrophysics</li>
<li>We develop and apply state-of-the-art methods and codes to tackle some of the most complex problems in astrophysics</li>
<li class="projtitle">Cosmic rays</li>
<li>Generation and propagation of cosmic rays from gamma-ray bursts and supernovae. Ties to a number of missions (e.g., HAWC, NuSTAR)</li>
<li class="projtitle">Cosmology and the first stars</li>
<li>Cosmology calculations using a broad range of tools (e.g., ENZO and Gadget), focused on studying the formation of the first stars and black holes</li>
<li class="projtitle">Engines behind transients</li>
<li>Thermonuclear and core-collapse supernovae, gamma-ray burst, and x-ray burst engines </li>
<li class="projtitle"><a href="transient/transients_astro.html"> Emission for transients </a> </li>
<li>Modeling spectra and light-curves, radiation-hydrodynamics effects, atomic physics. </li>
<li class="projtitle">Experimental astrophysics</li>
<li>Many of the fields leverage laboratory experiments in plasma physics, turbulence, radiation transport, nuclear, and atomic physics</li>
<li class="projtitle">Nuclear astrophysics</li>
<li>Understanding the behavior of matter and nuclear densities and applying these effects (neutrinos, equations of state) to supernova models</li>
<li class="projtitle">Nucleosynthesis</li>
<li>Yields from stars and supernovae, nuclear cross-sections (tying to experiment), galactic chemical evolution</li>
<li class="projtitle">Star and planet formation</li>
<li>Formation of the solar system, extra-solar planets</li>
<li class="projtitle">Stellar Astrophysics</li>
<li>Structure, evolution, nucleosynthesis and hydrodynamics of stars</li>
<li class="projtitle">Supernova remnants</li>
<li>Following the engine through the remnant phase, effects of NLTE opacities, and magneto-hydrodynamics</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</div>
<!-- //Outreach -->
<div class="portfolio" id="outreach">
<div class="container">
<h1>OUTREACH</h1>
<div class="underline1"></div>
<div class="projlist">
<ul>
<li class="projtitle">Outreach efforts</li>
Members of the CTA are extremely active in outreach, both locally and in surrounding communities. Check out our <a href="https://ccsweb.lanl.gov/astro/outreach/outreach_astro.html">Outreach Page</a> for more info.</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</div>
<!-- //Opportunities -->
<div class="portfolio" id="jobs">
<div class="container">
<h1>OPPORTUNITIES</h1>
<p>Check out opportunities to join LANL's CTA.</p>
<div class="underline1"></div>
<div class="projlist">
<ul>
<li class="projtitle">CTA Postdoc</li>
<li>The CTA accepts applications for postdoctoral positions year round. We seek candidates with interests and experience in computational physics/astrophysics, broadly defined, who will excel at carrying out research independently and in collaboration with members of the CTA. <a href='https://jobszp1.lanl.gov/OA_HTML/RF.jsp?function_id=14330&resp_id=51616&resp_appl_id=800&security_group_id=0%3C_code%3DUS¶ms=btOoWGkj963I..Q2L5dcEkwPdY2X8RgGyIGQIgmPvx1ATLhV1EKKfMP8X3LGjq5S&oas=LEh_BAM3qoSLDf-lxE5pKg'> APPPLY </a></li>
</ul>
</div>
<li class="projtitle"><a href="http://www.lanl.gov/careers/career-options/postdoctoral-research/postdoc-program/postdoc-appointment-types.php">LANL Postdoctoral Fellowship Programs</a></li>
<li class="projtitle"><a href="https://www.lanl.gov/projects/national-security-education-center/information-science-technology/summer-schools/index.php">LANL Summer Schools</a></li>
<div class="clearfix"></div>
</div>
</div>
<!-- Team -->
<div class="team" id="team">
<div class="container">
<h1>PEOPLE</h1>
<h2>LEADERSHIP</h2>
<div class="underline1"></div>
<!-- Chris Fryer -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/fryer.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="http://www.lanl.gov/expertise/profiles/view/christopher-fryer" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?author=Fryer,%20C&nr_to_return=2000" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=ZZZorWwAAAAJ&hl=en&oi=ao" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> <a href="http://www.lanl.gov/expertise/profiles/view/christopher-fryer">CHRIS FRYER</a></h4>
<h5>DIRECTOR</h5>
<h5>LANL FELLOW, COMPUTATIONAL PHYSICS & METHODS, <a href="https://www.lanl.gov/org/ddste/aldsc/computer-computational-statistical-sciences/computational-physics-methods/index.php">CCS-2</a></h5>
<p>Radiation-hydrodynamics, reaction networks</p>
</div>
<!-- Josh Dolence -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/dolence.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="http://www.lanl.gov/expertise/profiles/view/joshua-dolence" class="lanl" title="LANL Profile Page" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="https://ui.adsabs.harvard.edu/#search/q=(%20author%3A%22Dolence%2C%20J%22%20AND%20year%3A2006-2100)&sort=date%20desc%2C%20bibcode%20desc" class="ads" title="ADS Publication List" target="_blank"></a></li>
<li><a href="https://scholar.google.com/citations?user=znZemloAAAAJ&hl=en" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> <a href="profiles/dolence.html">JOSH DOLENCE</a></h4>
<h5>DEPUTY DIRECTOR: RESEARCH DEVELOPMENT</h5>
<h5>R&D SCIENTIST, COMPUTATIONAL PHYSICS & METHODS, <a href="https://www.lanl.gov/org/ddste/aldsc/computer-computational-statistical-sciences/computational-physics-methods/index.php">CCS-2</a></h5>
<p>Black hole astrophysics, supernovae, numerical methods and algorithms</p>
</div>
<!-- Wes Even -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/wes_even.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="http://www.lanl.gov/expertise/profiles/view/wesley-even" class="lanl" title="LANL Profile Page" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="https://ui.adsabs.harvard.edu/#search/fq=database%3A%20(astronomy%20or%20physics)&fq=%7B!type%3Daqp%20v%3D%24fq_database%7D&fq_database=database%3A%20(astronomy%20or%20physics)&q=pubdate%3A%5B2000-01%20TO%209999-12%5D%20author%3A(%22Even%2C%20W%22)&sort=date%20desc%2C%20bibcode%20desc&p_=0" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=BVH-rEQAAAAJ&hl=en&oi=ao" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> <a href="http://www.lanl.gov/expertise/profiles/view/wesley-even">WES EVEN</a></h4>
<h5>DEPUTY DIRECTOR: CAREER DEVELOPMENT</h5>
<h5>R&D SCIENTIST, COMPUTATIONAL PHYSICS & METHODS, <a href="https://www.lanl.gov/org/ddste/aldsc/computer-computational-statistical-sciences/computational-physics-methods/index.php">CCS-2</a></h5>
<p>Transient light curves, compact mergers, supernovae, nucleosynthesis</p>
</div>
<!-- Nicole Lloyd-Ronning -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/lloyd-ronning.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<div class="mask">
<ul class="social">
<li><a href="http://www.lanl.gov/expertise/profiles/view/nicole-lloyd-ronning" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="https://ui.adsabs.harvard.edu/#search/q=*%3A*&__qid=ab2e0c03efc040e9f9563976ffd86992" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=7d6Ru8UAAAAJ&hl=en&oi=ao" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> <a href="http://www.lanl.gov/expertise/profiles/view/nicole-lloyd-ronning">NICOLE LLOYD-RONNING</a></h4>
<h5>DEPUTY DIRECTOR: OUTREACH</h5>
<h5>R&D SCIENTIST, COMPUTATIONAL PHYSICS & METHODS, <a href="https://www.lanl.gov/org/ddste/aldsc/computer-computational-statistical-sciences/computational-physics-methods/index.php">CCS-2</a></h5>
<p>Gamma-ray bursts, their emission physics, and their use as cosmological tools</p>
</div>
<!-- Aimee Hungerford -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/aimee.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="http://www.lanl.gov/expertise/profiles/view/aimee-hungerford" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?author=Hungerford,%20A" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=v5jSagUAAAAJ&hl=en&oi=ao" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> <a href="http://www.lanl.gov/expertise/profiles/view/aimee-hungerford">AIMEE HUNGERFORD</a></h4>
<h5>PROGRAM LIAISON</h5>
<h5>R&D SCIENTIST, COMPUTATIONAL PHYSICS, <a href="http://www.lanl.gov/org/padwp/adx/computational-physics/index.php">XCP</a></h5>
<p>Gamma-ray astronomy, supernovae, Monte Carlo transport</p>
</div>
<!-- Brendan Krueger -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/krueger.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<div class="mask">
<ul class="social">
<li><a href="#" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?db_key=AST&db_key=PRE&qform=AST&arxiv_sel=astro-ph&arxiv_sel=cond-mat&arxiv_sel=cs&arxiv_sel=gr-qc&arxiv_sel=hep-ex&arxiv_sel=hep-lat&arxiv_sel=hep-ph&arxiv_sel=hep-th&arxiv_sel=math&arxiv_sel=math-ph&arxiv_sel=nlin&arxiv_sel=nucl-ex&arxiv_sel=nucl-th&arxiv_sel=physics&arxiv_sel=quant-ph&arxiv_sel=q-bio&sim_query=YES&ned_query=YES&adsobj_query=YES&aut_logic=OR&obj_logic=OR&author=krueger%2C+brendan&object=&start_mon=&start_year=2000&end_mon=&end_year=&ttl_logic=OR&title=&txt_logic=OR&text=&nr_to_return=200&start_nr=1&jou_pick=ALL&ref_stems=&data_and=ALL&group_and=ALL&start_entry_day=&start_entry_mon=&start_entry_year=&end_entry_day=&end_entry_mon=&end_entry_year=&min_score=&sort=SCORE&data_type=SHORT&aut_syn=YES&ttl_syn=YES&txt_syn=YES&aut_wt=1.0&obj_wt=1.0&ttl_wt=0.3&txt_wt=3.0&aut_wgt=YES&obj_wgt=YES&ttl_wgt=YES&txt_wgt=YES&ttl_sco=YES&txt_sco=YES&version=1" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=45ZSMjAAAAAJ&hl=en" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> BRENDAN KRUEGER</h4>
<h5>RECRUITING COORDINATOR</h5>
<h5>R&D SCIENTIST, EULERIAN CODES, <a href="http://www.lanl.gov/org/padwp/adx/computational-physics/eulerian-codes/index.php">XCP-2</a></h5>
<p>Supernovae, computational methods, code development</p>
</div>
<h2>STAFF</h2>
<div class="underline1"></div>
<!-- Chris Fontes -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/fontes.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<div class="mask">
<ul class="social">
<li><a href="#" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?author=Fontes,%20C" class="ads" title="ADS Publication List"></a></li>
<li><a href="#" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> CHRIS FONTES</h4>
<h5>R&D SCIENTIST, MATERIALS & PHYSICS DATA, <a href="http://www.lanl.gov/org/padwp/adx/computational-physics/materials-physical-data/index.php">XCP-5</a></h5>
<p>Theoretical atomic physics, radiative opacities, transient light curves</p>
</div>
<!-- Fan Guo -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/guo.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<div class="mask">
<ul class="social">
<li><a href="#" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="#" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=Q7O6SyUAAAAJ&hl=en " class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> FAN GUO</h4>
<h5>R&D SCIENTIST, NUCLEAR AND PARTICLE PHYSICS, ASTROPHYSICS, AND COSMOLOGY, <a href="http://www.lanl.gov/org/ddste/aldsc/theoretical/nuclear-particle-physics-astrophysics-cosmology/index.php"> T-2</a></h5>
<p>Charged particle transport, magnetic reconnection and turbulence, collisionless shocks, wave and particle interaction </p>
</div>
<!-- Jarrett Johnson-->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/JLJohnson.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?db_key=AST&db_key=PRE&qform=AST&arxiv_sel=astro-ph&arxiv_sel=cond-mat&arxiv_sel=cs&arxiv_sel=gr-qc&arxiv_sel=hep-ex&arxiv_sel=hep-lat&arxiv_sel=hep-ph&arxiv_sel=hep-th&arxiv_sel=math&arxiv_sel=math-ph&arxiv_sel=nlin&arxiv_sel=nucl-ex&arxiv_sel=nucl-th&arxiv_sel=physics&arxiv_sel=quant-ph&arxiv_sel=q-bio&sim_query=YES&ned_query=YES&adsobj_query=YES&aut_xct=YES&aut_req=YES&aut_logic=OR&obj_logic=OR&author=johnson%2C+jarrett+l%0D%0Ajohnson%2C+j+l%0D%0Ajohnson%2C+jarrett&object=&start_mon=&start_year=2005&end_mon=&end_year=&ttl_logic=OR&title=&txt_logic=OR&text=&nr_to_return=200&start_nr=1&jou_pick=ALL&ref_stems=-JEMat&data_and=ALL&group_and=ALL&start_entry_day=&start_entry_mon=&start_entry_year=&end_entry_day=&end_entry_mon=&end_entry_year=&min_score=&sort=CITATIONS&data_type=SHORT&aut_syn=YES&ttl_syn=YES&txt_syn=YES&aut_wt=1.0&obj_wt=1.0&ttl_wt=0.3&txt_wt=3.0&aut_wgt=YES&obj_wgt=YES&ttl_wgt=YES&txt_wgt=YES&ttl_sco=YES&txt_sco=YES&version=1" class="ads" Atitle="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=Ya3JBO0AAAAJ&hl=en" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> JARRETT JOHNSON</h4>
<h5>R&D SCIENTIST, THEORETICAL DESIGN, XTD</h5>
<p>The first stars, planets, galaxies, supernovae and black holes</p>
</div>
<!-- Sam Jones -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/sjones.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<div class="mask">
<ul class="social">
<li><a href="" class="lanl" title="LANL Profile Page" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?library&libname=Samuel+Jones+Bibliography&libid=56f53bf0b4" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?hl=en&user=DcRbD8AAAAAJ" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> SAM JONES</h4>
<h5>R&D SCIENTIST, EULERIAN CODES, <a href="http://www.lanl.gov/org/padwp/adx/computational-physics/eulerian-codes/index.php">XCP-2</a></h5>
<p>Supernovae, numerical methods, hydrodynamics, nucleosynthesis, stellar evolution</p>
</div>
<!-- Oleg Korobkin -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/oleg.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="http://www.lanl.gov/expertise/profiles/view/oleg-korobkin" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="https://ui.adsabs.harvard.edu/#search/fq=database%3A%20(astronomy%20or%20physics)&fq=%7B!type%3Daqp%20v%3D%24fq_database%7D&fq_database=database%3A%20(astronomy%20or%20physics)&q=pubdate%3A%5B2000-01%20TO%209999-12%5D%20author%3A(%22Korobkin%2C%20O%22)&sort=date%20desc%2C%20bibcode%20desc&p_=0" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=Ql3IcEwAAAAJ&hl=en&oi=ao" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> <a href="http://www.lanl.gov/expertise/profiles/view/oleg-korobkin">OLEG KOROBKIN</a></h4>
<h5>R&D SCIENTIST, APPLIED COMPUTER SCIENCE, <a href="http://www.lanl.gov/org/ddste/aldsc/computer-computational-statistical-sciences/applied-computer-science/index.php">CCS-7</a></h5>
<p>Neutron star mergers, r-process, hydrodynamics, HPC, general relativity</p>
</div>
<!-- Jonas Lippuner -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/lippuner.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?author=Lippuner" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=2_ziWuYAAAAJ&hl=en&oi=ao" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> JONAS LIPPUNER</h4>
<h5>R&D SCIENTIST, COMPUTATIONAL PHYSICS & METHODS, <a href="https://www.lanl.gov/org/ddste/aldsc/computer-computational-statistical-sciences/computational-physics-methods/index.php">CCS-2</a></h5>
<p>r-process nucleosynthesis, computational physics on GPUs</p>
</div>
<!-- Chris Malone -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/malone.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<div class="mask">
<ul class="social">
<li><a href="#" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="#" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=NOZnIw8AAAAJ&hl=en" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> CHRIS MALONE</h4>
<h5>R&D SCIENTIST, LAGRANGIAN CODES, <a href="http://www.lanl.gov/org/padwp/adx/computational-physics/lagrangian-codes/index.php">XCP-1</a></h5>
<p>Type Ia supernovae</p>
</div>
<!-- Zach Medin -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/zmedin.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<div class="mask">
<ul class="social">
<li><a href="#" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?author=Medin,%20Z" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=vaNWpukAAAAJ&hl=en&oi=ao" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> ZACH MEDIN</h4>
<h5>R&D SCIENTIST, EULERIAN CODES, <a href="http://www.lanl.gov/org/padwp/adx/computational-physics/eulerian-codes/index.php">XCP-2</a></h5>
<p>X-ray bursts</p>
</div>
<!-- Matthew Mumpower -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/mumpower.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<div class="mask">
<ul class="social">
<li><a href="#" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?db_key=AST&db_key=PHY&db_key=PRE&qform=AST&arxiv_sel=astro-ph&arxiv_sel=cond-mat&arxiv_sel=cs&arxiv_sel=gr-qc&arxiv_sel=hep-ex&arxiv_sel=hep-lat&arxiv_sel=hep-ph&arxiv_sel=hep-th&arxiv_sel=math&arxiv_sel=math-ph&arxiv_sel=nlin&arxiv_sel=nucl-ex&arxiv_sel=nucl-th&arxiv_sel=physics&arxiv_sel=quant-ph&arxiv_sel=q-bio&sim_query=YES&ned_query=YES&adsobj_query=YES&aut_logic=OR&obj_logic=OR&author=Mumpower%2C+Matthew&object=&start_mon=&start_year=&end_mon=&end_year=&ttl_logic=OR&title=&txt_logic=OR&text=&nr_to_return=200&start_nr=1&jou_pick=ALL&ref_stems=&data_and=ALL&group_and=ALL&start_entry_day=&start_entry_mon=&start_entry_year=&end_entry_day=&end_entry_mon=&end_entry_year=&min_score=&sort=SCORE&data_type=SHORT&aut_syn=YES&ttl_syn=YES&txt_syn=YES&aut_wt=1.0&obj_wt=1.0&ttl_wt=0.3&txt_wt=3.0&aut_wgt=YES&obj_wgt=YES&ttl_wgt=YES&txt_wgt=YES&ttl_sco=YES&txt_sco=YES&version=1" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=wYeD79MAAAAJ&hl=en" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> MATTHEW MUMPOWER</h4>
<h5>R&D SCIENTIST, NUCLEAR AND PARTICLE PHYSICS, ASTROPHYSICS, AND COSMOLOGY, <a href="http://www.lanl.gov/org/ddste/aldsc/theoretical/nuclear-particle-physics-astrophysics-cosmology/index.php">T-2</a></h5>
<p>Nuclear physics, nucleosynthesis, beta-decay, fission</p>
</div>
<!-- Irina Sagert -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/sagert.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="http://www.lanl.gov/expertise/profiles/view/irina-sagert" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="https://ui.adsabs.harvard.edu/#search/fq=database%3A%20(astronomy%20or%20physics)&fq=%7B!type%3Daqp%20v%3D%24fq_database%7D&fq_database=database%3A%20(astronomy%20or%20physics)&q=pubdate%3A%5B2000-01%20TO%209999-12%5D%20author%3A(%22Sagert%2C%20I%22)&sort=date%20desc%2C%20bibcode%20desc&p_=0" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=UmprtE8AAAAJ&hl=en&oi=ao" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> <a href="http://www.lanl.gov/expertise/profiles/view/irina-sagert">IRINA SAGERT</a></h4>
<h5>R&D SCIENTIST, COMPUTATIONAL PHYSICS & METHODS, <a href="http://www.lanl.gov/org/ddste/aldsc/computer-computational-statistical-sciences/computational-physics-methods/index.php">CCS-2</a></h5>
<p>Kinetic transport simulation, Nuclear astrophysics, hydrodynamics</p>
</div>
<!-- Ryan Wollaeger -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/ryan.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="http://www.lanl.gov/expertise/profiles/view/ryan-wollaeger" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?author=Wollaeger" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=3OImwa8AAAAJ&hl=en" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> <a href="http://www.lanl.gov/expertise/profiles/view/ryan-wollaeger">RYAN WOLLAEGER</a></h4>
<h5>R&D SCIENTIST, COMPUTATIONAL PHYSICS & METHODS, <a href="http://www.lanl.gov/org/ddste/aldsc/computer-computational-statistical-sciences/computational-physics-methods/index.php">CCS-2</a></h5>
<p>Transient light curves, radiation transport methods</p>
</div>
<div class="clearfix"></div>
<h2>POSTDOCS</h2>
<div class="underline1"></div>
<!-- Aycin Aykutalp -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/Aycin.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?db_key=AST&db_key=PRE&qform=AST&arxiv_sel=astro-ph&arxiv_sel=cond-mat&arxiv_sel=cs&arxiv_sel=gr-qc&arxiv_sel=hep-ex&arxiv_sel=hep-lat&arxiv_sel=hep-ph&arxiv_sel=hep-th&arxiv_sel=math&arxiv_sel=math-ph&arxiv_sel=nlin&arxiv_sel=nucl-ex&arxiv_sel=nucl-th&arxiv_sel=physics&arxiv_sel=quant-ph&arxiv_sel=q-bio&sim_query=YES&ned_query=YES&adsobj_query=YES&aut_logic=OR&obj_logic=OR&author=Aykutalp%2C+Aycin&object=&start_mon=&start_year=&end_mon=&end_year=&ttl_logic=OR&title=&txt_logic=OR&text=&nr_to_return=200&start_nr=1&jou_pick=ALL&ref_stems=&data_and=ALL&group_and=ALL&start_entry_day=&start_entry_mon=&start_entry_year=&end_entry_day=&end_entry_mon=&end_entry_year=&min_score=&sort=SCORE&data_type=SHORT&aut_syn=YES&ttl_syn=YES&txt_syn=YES&aut_wt=1.0&obj_wt=1.0&ttl_wt=0.3&txt_wt=3.0&aut_wgt=YES&obj_wgt=YES&ttl_wgt=YES&txt_wgt=YES&ttl_sco=YES&txt_sco=YES&version=1" class="ads" 1title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=SiZLrOgAAAAJ&hl=en&oi=ao" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> AYCIN AYKUTALP</h4>
<h5>POSTDOC, THEORETICAL DESIGN, XTD</h5>
<p>Cosmology, first stars, black holes</p>
</div>
<!-- Denis Bowen -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/sgra50.png') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="1://ui.adsabs.harvard.edu//#search/filter_database_fq_database=OR&filter_database_fq_database=database%3A%22astronomy%22&fq=%7B!type%3Daqp%20v%3D%24fq_database%7D&fq_database=(database%3A%22astronomy%22)&q=author%3A%22Bowen%2C%20Dennis%22%20year%3A2015-2080%20not%20author%3A%22Srianand%22%20not%20author%3A%22Frye%22&sort=date%20desc%2C%20bibcode%20desc&warning_message=when%20the%20astronomy%20or%20physics%20databases%20are%20selected%2C%20the%20arXiv%20selection%20is%20ignored&p_=0" class="ada" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=9dH4_5MAAAAJ&hl=en" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> DENNIS BOWEN</h4>
<h5>COMPUTATIONAL PHYSICS, <a href="http://www.lanl.gov/org/padwp/adx/computational-physics/index.php">XCP</a></h5>
<p>General relativity, MHD, accretion disks</p>
</div>
<!-- Roseanne Cheng -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/rcheng.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<div class="mask">
<ul class="social">
<li><a href="" class="lanl" title="LANL Profile Page" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?db_key=AST&db_key=PRE&qform=AST&arxiv_sel=astro-ph&arxiv_sel=cond-mat&arxiv_sel=cs&arxiv_sel=gr-qc&arxiv_sel=hep-ex&arxiv_sel=hep-lat&arxiv_sel=hep-ph&arxiv_sel=hep-th&arxiv_sel=math&arxiv_sel=math-ph&arxiv_sel=nlin&arxiv_sel=nucl-ex&arxiv_sel=nucl-th&arxiv_sel=physics&arxiv_sel=quant-ph&arxiv_sel=q-bio&sim_query=YES&ned_query=YES&adsobj_query=YES&aut_xct=YES&aut_logic=OR&obj_logic=OR&author=Cheng%2C+Roseanne+M&object=&start_mon=&start_year=2012&end_mon=&end_year=&ttl_logic=OR&title=&txt_logic=OR&text=&nr_to_return=200&start_nr=1&jou_pick=ALL&ref_stems=&data_and=ALL&group_and=ALL&start_entry_day=&start_entry_mon=&start_entry_year=&end_entry_day=&end_entry_mon=&end_entry_year=&min_score=&sort=SCORE&data_type=SHORT&aut_syn=YES&ttl_syn=YES&txt_syn=YES&aut_wt=1.0&obj_wt=1.0&ttl_wt=0.3&txt_wt=3.0&aut_wgt=YES&obj_wgt=YES&ttl_wgt=YES&txt_wgt=YES&ttl_sco=YES&txt_sco=YES&version=1" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?hl=en&user=67NR6i4AAAAJ" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> ROSEANNE CHENG</h4>
<h5>METROPOLIS FELLOW, COMPUTATIONAL PHYSICS & METHODS, <a href="http://www.lanl.gov/org/ddste/aldsc/computer-computational-statistical-sciences/computational-physics-methods/index.php">CCS-2</a></h5>
<p>Tidal disruption events, overset mesh methods</p>
</div>
<!-- Erica Fogerty -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/efogerty.png') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?db_key=AST&db_key=PRE&qform=AST&arxiv_sel=astro-ph&arxiv_sel=cond-mat&arxiv_sel=cs&arxiv_sel=gr-qc&arxiv_sel=hep-ex&arxiv_sel=hep-lat&arxiv_sel=hep-ph&arxiv_sel=hep-th&arxiv_sel=math&arxiv_sel=math-ph&arxiv_sel=nlin&arxiv_sel=nucl-ex&arxiv_sel=nucl-th&arxiv_sel=physics&arxiv_sel=quant-ph&arxiv_sel=q-bio&sim_query=YES&ned_query=YES&adsobj_query=YES&aut_req=YES&aut_logic=OR&obj_logic=OR&author=fogerty%2C+erica&object=&start_mon=&start_year=&end_mon=&end_year=&ttl_logic=OR&title=&txt_req=YES&txt_logic=OR&text=star+cloud+Molecular+Bonnor-Ebert+astronomy+MHD+collapse&nr_to_return=200&start_nr=1&jou_pick=ALL&ref_stems=&data_and=ALL&group_and=ALL&start_entry_day=&start_entry_mon=&start_entry_year=&end_entry_day=&end_entry_mon=&end_entry_year=&min_score=&sort=SCORE&data_type=SHORT&aut_syn=YES&ttl_syn=YES&txt_syn=YES&aut_wt=1.0&obj_wt=1.0&ttl_wt=0.3&txt_wt=3.0&aut_wgt=YES&obj_wgt=YES&ttl_wgt=YES&txt_wgt=YES&ttl_sco=YES&txt_sco=YES&version=1" class="ads" 1title="ADS Publication List"></a></li>
<li><a href="" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> ERICA FOGERTY</h4>
<h5>POSTDOC, COMPUTATIONAL PHYSICS & METHODS, <a href="http://www.lanl.gov/org/ddste/aldsc/computer-computational-statistical-sciences/computational-physics-methods/index.php">CCS-2</a></h5>
<p>Formation of molecular cloudes, stars and planets, MHD, radiation transport, HEDP</p>
</div>
<!-- Matthew Gilmer -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/sgra50.png') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="https://ui.adsabs.harvard.edu//#search/filter_database_fq_database=OR&filter_database_fq_database=database%3A%22astronomy%22&fq=%7B!type%3Daqp%20v%3D%24fq_database%7D&fq_database=(database%3A%22astronomy%22)&q=author%3A%22*Gilmer%2C%20M*%22&sort=date%20desc%2C%20bibcode%20desc&warning_message=when%20the%20astronomy%20or%20physics%20databases%20are%20selected%2C%20the%20arXiv%20selection%20is%20ignored&p_=0" class="ads" 1title="ADS Publication List"></a></li>
<li><a href="" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> MATTHEW GILMER</h4>
<h5>POSTDOC, THEORETICAL DESIGN, XTD</h5>
<p>Supernovae</p>
</div>
<!-- Daniel Holladay -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/dholladay.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<div class="mask">
<ul class="social">
<li><a href="" class="lanl" title="LANL Profile Page" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=MRXuVNkAAAAJ&hl=en" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> DANIEL HOLLADAY</h4>
<h5>POSTDOC, EULERIAN CODES, <a href="http://www.lanl.gov/org/padwp/adx/computational-physics/eulerian-codes/index.php">XCP-2</a></h5>
<p>nLTE opacities, radiation transport, HPC, heterogeneous computing</p>
</div>
<!-- Chris Mauney -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/sgra50.png') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?db_key=AST&db_key=PRE&qform=AST&arxiv_sel=astro-ph&arxiv_sel=cond-mat&arxiv_sel=cs&arxiv_sel=gr-qc&arxiv_sel=hep-ex&arxiv_sel=hep-lat&arxiv_sel=hep-ph&arxiv_sel=hep-th&arxiv_sel=math&arxiv_sel=math-ph&arxiv_sel=nlin&arxiv_sel=nucl-ex&arxiv_sel=nucl-th&arxiv_sel=physics&arxiv_sel=quant-ph&arxiv_sel=q-bio&sim_query=YES&ned_query=YES&adsobj_query=YES&aut_logic=OR&obj_logic=OR&author=mauney%2C+christopher&object=&start_mon=&start_year=&end_mon=&end_year=&ttl_logic=OR&title=&txt_logic=OR&text=&nr_to_return=200&start_nr=1&jou_pick=ALL&ref_stems=&data_and=ALL&group_and=ALL&start_entry_day=&start_entry_mon=&start_entry_year=&end_entry_day=&end_entry_mon=&end_entry_year=&min_score=&sort=SCORE&data_type=SHORT&aut_syn=YES&ttl_syn=YES&txt_syn=YES&aut_wt=1.0&obj_wt=1.0&ttl_wt=0.3&txt_wt=3.0&aut_wgt=YES&obj_wgt=YES&ttl_wgt=YES&txt_wgt=YES&ttl_sco=YES&txt_sco=YES&version=1" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=V-DR7k0AAAAJ&hl=en" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> CHRISTOPHER MAUNEY</h4>
<h5>POSTDOC, COMPUTATIONAL PHYSICS & METHODS, <a href="http://www.lanl.gov/org/ddste/aldsc/computer-computational-statistical-sciences/computational-physics-methods/index.php">CCS-2</a></h5>
<p>Dust formation, supernovae, density functional theory</p>
</div>
<!-- Jonah Miller -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/jonah.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="http://www.lanl.gov/expertise/profiles/view/jonah-miller" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=oQbwqPIAAAAJ&hl=en&oi=ao" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> <a href="http://www.lanl.gov/expertise/profiles/view/jonah-miller">JONAH MILLER</a></h4>
<h5>CNLS FELLOW, COMPUTATIONAL PHYSICS & METHODS, <a href="http://www.lanl.gov/org/ddste/aldsc/computer-computational-statistical-sciences/computational-physics-methods/index.php">CCS-2</a></h5>
<p>Numerical relativity, numerical methods, hydrodynamics</p>
</div>
<!-- Peter Polko -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/sgra50.png') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="" class="ads" title="ADS Publication List"></a></li>
<li><a href="" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> PETER POLKO</h4>
<h5>POSTDOC, NUCLEAR & PARTICLE PHYSICS, ASTROPHYSICS, & COSMOLOGY, <a href="http://www.lanl.gov/org/ddste/aldsc/theoretical/nuclear-particle-physics-astrophysics-cosmology/index.php">T-2</a></h5>
<p></p>
</div>
<!-- Ben Ryan -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/ben_ryan.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?db_key=AST&db_key=PRE&qform=AST&arxiv_sel=astro-ph&arxiv_sel=cond-mat&arxiv_sel=cs&arxiv_sel=gr-qc&arxiv_sel=hep-ex&arxiv_sel=hep-lat&arxiv_sel=hep-ph&arxiv_sel=hep-th&arxiv_sel=math&arxiv_sel=math-ph&arxiv_sel=nlin&arxiv_sel=nucl-ex&arxiv_sel=nucl-th&arxiv_sel=physics&arxiv_sel=quant-ph&arxiv_sel=q-bio&sim_query=YES&ned_query=YES&adsobj_query=YES&aut_xct=YES&aut_logic=OR&obj_logic=OR&author=ryan%2C+benjamin+r.&object=&start_mon=&start_year=&end_mon=&end_year=&ttl_logic=OR&title=&txt_logic=OR&text=&nr_to_return=200&start_nr=1&jou_pick=ALL&ref_stems=&data_and=ALL&group_and=ALL&start_entry_day=&start_entry_mon=&start_entry_year=&end_entry_day=&end_entry_mon=&end_entry_year=&min_score=&sort=SCORE&data_type=SHORT&aut_syn=YES&ttl_syn=YES&txt_syn=YES&aut_wt=1.0&obj_wt=1.0&ttl_wt=0.3&txt_wt=3.0&aut_wgt=YES&obj_wgt=YES&ttl_wgt=YES&txt_wgt=YES&ttl_sco=YES&txt_sco=YES&version=1" class="ads" title="ADS Publication List"></a></li>
<li><a href="" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> BENJAMIN RYAN</h4>
<h5>DIRECTOR'S FELLOW, COMPUTATIONAL PHYSICS & METHODS, <a href="http://www.lanl.gov/org/ddste/aldsc/computer-computational-statistical-sciences/computational-physics-methods/index.php">CCS-2</a></h5>
<p>Black hole astrophysics, radiation transport, magnetohydrodynamics, numerical methods</p>
</div>
<!-- Alex Spacek -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/aspacek.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="" class="lanl" title="LANL Profile Page"></a></li>
<li><a href=" http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?author=Spacek,%20Alexander" class="ads" title="ADS Publication List"></a></li>
<li><a href=" https://scholar.google.com/citations?user=6Lt6qskAAAAJ" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> ALEX SPACEK</h4>
<h5>POSTDOC, EULERIAN CODES, <a href="http://www.lanl.gov/org/padwp/adx/computational-physics/eulerian-codes/index.php">XCP-2</a></h5>
<p>Galaxy evolution, interstellar medium, computational astrophysics</p>
</div>
<!-- Ingo Tews -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/sgra50.png') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="https://ui.adsabs.harvard.edu//#search/filter_database_fq_database=OR&filter_database_fq_database=database%3A%22astronomy%22&fq=%7B!type%3Daqp%20v%3D%24fq_database%7D&fq_database=(database%3A%22astronomy%22)&q=author%3A%22Tews%2C%20I%22&sort=date%20desc%2C%20bibcode%20desc&warning_message=when%20the%20astronomy%20or%20physics%20databases%20are%20selected%2C%20the%20arXiv%20selection%20is%20ignored&p_=0" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=8yw2adYAAAAJ&hl=en" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> INGO TEWS</h4>
<h5>DIRECTOR'S FELLOW, NUCLEAR & PARTICLE PHYSICS, ASTROPHYSICS, & COSMOLOGY, <a href="http://www.lanl.gov/org/ddste/aldsc/theoretical/nuclear-particle-physics-astrophysics-cosmology/index.php">T-2</a>
<p>Neutron Matter, chiral EFT, three-nucleon forces</p>
</div>
<!-- Amanda Truitt -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/truitt.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="http://www.lanl.gov/expertise/profiles/view/amanda-truitt" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="http://adsabs.harvard.edu/cgi-bin/basic_connect?qsearch=amanda+truitt&version=1%22class=%22ads%22title=%22ADS" class="ads" title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=nkU_HFUAAAAJ&hl=en&oi=ao" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> <a href="http://www.lanl.gov/expertise/profiles/view/amanda-truitt" class="lanl">AMANDA TRUITT</a></h4>
<h5>POSTDOC, THEORETICAL DESIGN, XTD</a></h5>
<p>Stellar evolution modeling (TYCHO), asteroid impact mitigation (xRAGE), habitable zones, astrobiology</p>
</div>
<!-- Tim Waters -->
<div class="col-md-3 col-sm-3 team-top team-top-image" style="background: url('images/twaters.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<!--<a href="#"><img class="img-responsive" src="images/dolence.jpg" alt="Manufactory"></a>-->
<div class="mask">
<ul class="social">
<li><a href="" class="lanl" title="LANL Profile Page"></a></li>
<li><a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?db_key=AST&db_key=PRE&qform=AST&arxiv_sel=astro-ph&arxiv_sel=cond-mat&arxiv_sel=cs&arxiv_sel=gr-qc&arxiv_sel=hep-ex&arxiv_sel=hep-lat&arxiv_sel=hep-ph&arxiv_sel=hep-th&arxiv_sel=math&arxiv_sel=math-ph&arxiv_sel=nlin&arxiv_sel=nucl-ex&arxiv_sel=nucl-th&arxiv_sel=physics&arxiv_sel=quant-ph&arxiv_sel=q-bio&sim_query=YES&ned_query=YES&adsobj_query=YES&aut_logic=AND&obj_logic=OR&author=waters%0D%0Aproga&object=&start_mon=&start_year=&end_mon=&end_year=&ttl_logic=OR&title=&txt_logic=OR&text=&nr_to_return=200&start_nr=1&jou_pick=ALL&ref_stems=&data_and=ALL&group_and=ALL&start_entry_day=&start_entry_mon=&start_entry_year=&end_entry_day=&end_entry_mon=&end_entry_year=&min_score=&sort=SCORE&data_type=SHORT&aut_syn=YES&ttl_syn=YES&txt_syn=YES&aut_wt=1.0&obj_wt=1.0&ttl_wt=0.3&txt_wt=3.0&aut_wgt=YES&obj_wgt=YES&ttl_wgt=YES&txt_wgt=YES&ttl_sco=YES&txt_sco=YES&version=1" class="ads" 1title="ADS Publication List"></a></li>
<li><a href="" class="gscholar" title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> TIM WATERS</h4>
<h5>POSTDOC, NUCLEAR & PARTICLE PHYSICS, ASTROPHYSICS, & COSMOLOGY, <a href="http://www.lanl.gov/org/ddste/aldsc/theoretical/nuclear-particle-physics-astrophysics-cosmology/index.php">T-2</a></h5>
<p>AGN, X-ray binaries, magnetohydrodynamics, hydrodynamical instabilities</p>
</div>
<!-- Suzannah Wood -->
<div class="col-md-3 col-sm-3 team-top team-top-image"style="background: url('images/swood.jpg') no-repeat; background-size: 100%; background-position: center;">
<div class="view view-seventh">
<div class="mask">
<ul class="social">
<li><a href=" "class="lanl"title="LANL Profile Page"></a></li>
<li><a href=" "class="ads"title="ADS Publication List"></a></li>
<li><a href="https://scholar.google.com/citations?user=QMY2adsAAAAJ&hl=en"class="gscholar"title="Google Scholar Profile"></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 team-top team-top-text">
<h4><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> SUZANNAH WOOD</h4>
<h5>POSTDOC, THEORETICAL DESIGN, XTD</h5>
<p>Steller evolution, stellar pulsations</p>
</div>
<div class="clearfix"></div>
<h3><a href="pastpostdocs.html">PAST CTA POSTDOCS</a></h3>
<div class="underline1"></div>
<div class="clearfix"></div>
<h2><a href="students.html">STUDENTS</a></h2>
<p>The Center for Theoretical Astrophysics sponsors student researchers to visit LANL at all levels: high school, undergraduate, post-baccalaureate, graduate, and post-masters. The vast majority of students are at LANL during the summer and the CTA typically supports 20-30 students during the summer. Additionally there are also opportunities for longer-term appointments, up to 2 years, in the CTA for post-baccalaureate, post-masters, and graduate students. The ideal time to apply for a summer appointment is November or December. To view profiles of our current students click <a href="students.html">here</a>.</p>
<div class="underline1"></div>
</div>
</div>
<!-- //Team -->
<!-- Contact -->
<div class="contact" id="contact">
<div class="container">
<h3>CONTACT</h3>
<p>For more information on any of our activities or to inquire about opportunities to work with our team, please use the contact information below or contact the appropriate team member directly.</p>
<div class="underline1"></div>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
<div class="center">
<ul class="address">
<li>Chris Fryer (Director)</li>
<li class="sticky"><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> [email protected]</li>
<li class="sticky"><a href="mailto:[email protected]"><span class="glyphicon glyphicon-envelope" aria-hidden="true"></span></a> [email protected]</li>
<li class="sticky"><span class="glyphicon glyphicon-earphone" aria-hidden="true"></span> +1 (505) 665-3394</li>
</ul>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
<div class="center">
<ul class="address">
<li>PO Box 1663</li>
<li>MS D409</li>
<li>Los Alamos National Laboratory</li>
<li>Los Alamos, NM 87545</li>
</ul>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
<!-- //Contact -->
<!-- Footer -->
<div class="footer">
<div class="container">
<div class="copyright">
<p>Design by <a href="http://w3layouts.com/"> W3layouts </a></p>
</div>
</div>
</div>
<!-- //Footer -->
<!-- Custom-JavaScript-File-Links -->
<!-- Necessary-JavaScript-File-For-Bootstrap <script type="text/javascript" src="js/bootstrap.min.js"></script>-->
<!-- Latest compiled JavaScript -->
<!--<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- Slider-JavaScript -->
<script src="js/responsiveslides.min.js"></script>
<script>
$(function () {
$("#slider").responsiveSlides({
auto: true,
pager: true,
nav: true,
speed: 1000,
namespace: "callbacks",