-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1198 lines (782 loc) · 43.8 KB
/
index.html
File metadata and controls
1198 lines (782 loc) · 43.8 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>
<!--[if lt IE 8 ]><html class="no-js ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="no-js ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 8)|!(IE)]><!--><html class="no-js" lang="en"> <!--<![endif]-->
<head>
<!--- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Xiaoting FU 符晓婷 <We are the dust of stars> </title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/media-queries.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- Script
================================================== -->
<script src="js/modernizr.js"></script>
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="favicon.png" >
</head>
<body>
<!-- Header
================================================== -->
<header id="home">
<nav id="nav-wrap">
<a class="mobile-btn" href="#nav-wrap" title="Show navigation">Show navigation</a>
<a class="mobile-btn" href="#" title="Hide navigation">Hide navigation</a>
<ul id="nav" class="nav">
<li class="current"><a class="smoothscroll" href="#home">Home</a></li>
<li><a class="smoothscroll" href="#portfolio">research</a></li>
<li><a class="smoothscroll" href="#publication">publications and presentations</a></li>
<li><a class="smoothscroll" href="#resume">CV</a></li>
<li><a class="smoothscroll" href="#about">outreach(科普)</a></li>
<li><a class="smoothscroll" href="#testimonials">as a photographer</a></li>
</ul> <!-- end #nav -->
</nav> <!-- end #nav-wrap -->
<div class="row banner">
<div class="banner-text">
<h1 class="responsive-headline">Xiaoting FU <font size = +2> ( 符晓婷 ) </font></h1>
<h3><font color=grey>We are the dust of stars</font></h3>
<h3> <br>
<font size=+1><font color=white>Welcome! I am a PostDoc fellow (KIAA-CAS Fellow, Boya Fellow) in
<a href="https://kiaa.pku.edu.cn" target="_blank">KIAA</a>
</font></h3>
<p class="address">
<div style="text-align:center"><img src="images/xtfu_s.png" alt="" /> </div>
<span> </span><br>
<span>The Kavli Institute for Astronomy and Astrophysics at Peking University<br>
Yi He Yuan Road 5, Peking University</span><br>
<span>100871, Beijing, China<span><br>
<span>Earth <br>
Local Universe</span><br>
<span> <a href="mailto:xiaoting.fu@pku.edu.cn">xiaoting.fu@pku.edu.cn</a> </span>
</p>
</div>
</div>
<p class="scrolldown">
<a class="smoothscroll" href="#portfolio"><i class="icon-down-circle"></i></a>
</p>
</header> <!-- Header End -->
<!-- research Section
================================================== -->
<section id="portfolio">
<div class="row">
<div class="twelve columns collapsed">
<h1>Here are my main research projects and interests</h1>
<div style="text-align:center"><p> click the figure to see more details </p> </div>
<!-- portfolio-wrapper -->
<div id="portfolio-wrapper" class="bgrid-quarters s-bgrid-thirds cf">
<!-- first lithium -->
<h3>(almost) Everything about lithium:</h3>
<!-- cosmological Li prob -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-02" title="">
<img alt="" src="images/portfolio/pms.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>Lithium evolution in metal-poor stars</h5>
<p>An environmental solution to the cosmological Li problem</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
<h5>The cosmological Li problem</h5>
</div>
<!-- item end -->
<!-- Li-rich giant -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-lirgb" title="">
<img alt="" src="images/portfolio/lirgb.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>Li-rich giant stars</h5>
<p>The un-expected Li-rich giant stars</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
<h5>Li puzzle in K- giant stars</h5>
</div>
<!-- item end -->
<!-- Galactic Li evo-->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-lievo" title="">
<img alt="" src="images/portfolio/lievo.png">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>The Galactic Li evolution</h5>
<p>different Li enrichment histories of the Galactic thick and thin discs</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
<h5>The Galactic Li evolution</h5>
</div>
<!-- item end -->
<!-- Li in ISM -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-liism" title="">
<img alt="" src="images/portfolio/alma.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>Li in the ISM</h5>
<p>from star to ISM</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
<h5>Li in the interstellar medium</h5>
</div>
<!-- item end -->
</div> <!-- portfolio-wrapper end -->
</div> <!-- twelve columns end -->
<div class="twelve columns collapsed">
<!-- portfolio-wrapper -->
<div id="portfolio-wrapper" class="bgrid-quarters s-bgrid-thirds cf">
<!------------------ Stellar evolution ------------------------------->
<h3>Stellar evolution: PARSEC</h3>
<!-- alpha enhancement-->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-01" title="">
<img alt="" src="images/portfolio/fit.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>PAESEC Stellar evolutionary tracks and isochrones</h5>
<p>with alpha enhancement</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
<h5>PAESEC Stellar evolutionary tracks and isochrones</h5>
</div>
<!-- item end -->
</div> <!-- portfolio-wrapper end -->
</div> <!-- twelve columns end -->
<!-- Milky Way-->
<div class="twelve columns collapsed">
<!-- portfolio-wrapper -->
<div id="portfolio-wrapper" class="bgrid-quarters s-bgrid-thirds cf">
<h3>History of the Milky Way</h3>
<!-- low-alpha -->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-04" title="">
<img alt="" src="images/portfolio/gaia.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>low-alpha stars</h5>
<p>seen in the Gaia-ESO survey </p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
<h5>low-alpha stars: the exotic residence in our galaxy</h5>
</div>
<!-- item end -->
</div> <!-- portfolio-wrapper end -->
</div> <!-- twelve columns end --->
<!-- stellar clusters-->
<div class="twelve columns collapsed">
<!-- portfolio-wrapper -->
<div id="portfolio-wrapper" class="bgrid-quarters s-bgrid-thirds cf">
<h3>Stellar clusters</h3>
<!-- r147-->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-r147" title="">
<img alt="" src="images/portfolio/r147.png">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>The old nearby open cluster Rup147</h5>
<p>The chemical composition of the oldest nearby open cluster Ruprecht 147</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
<h5>The old nearby open cluster Ruprecht 147</h5>
</div>
<!-- item end -->
<!-- One Star to Tag Them All (OSSTA)-->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-ossta" title="">
<img alt="" src="images/portfolio/gaia.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>One Star to Tag Them All (OSSTA)</h5>
<p>large project at NOT: post-Gaia DR2 clusters metallicity</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
<h5>One Star to Tag Them All (OSSTA) </h5>
</div>
<!-- item end -->
<!-- Omega cen-->
<div class="columns portfolio-item">
<div class="item-wrap">
<a href="#modal-omecen" title="">
<img alt="" src="images/portfolio/omega.jpg">
<div class="overlay">
<div class="portfolio-item-meta">
<h5>Li abundance in lower red giant branch stars of Omega Centauri </h5>
<p>Na-Li anti-correlation</p>
</div>
</div>
<div class="link-icon"><i class="icon-plus"></i></div>
</a>
</div>
<h5>Omega Centauri</h5>
</div>
<!-- item end -->
</div> <!-- portfolio-wrapper end -->
</div> <!-- twelve columns end -->
<h3>Selected press releases:</h3>
<p>
Astronomy Now: <a href="http://astronomynow.com/2016/01/01/the-top-ten-stories-of-2015-no-10-solving-the-lithium-mystery/" target="_blank"><font color=red>Top ten stories of 2015</font></a> <br>
Royal Astronomical society: <a href="https://www.ras.org.uk/news-and-press/2695-lost-lithium-destroyed-by-ancient-stars" target="_blank">Lost lithium destroyed by ancient stars </a> <br>
phys.org: <a href="http://phys.org/news/2015-08-cosmological-lost-lithium-environmental-solution.html" target="_blank">Cosmological 'lost' lithium: An environmental solution</a> <br>
</p>
<!-- Modal Popup
------------------------------------------------- -->
<div id="modal-01" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/modals/m-fit.jpg" alt="" />
<div class="description-box">
<h4>New PARSEC database of alpha enhanced stellar evolutionary tracks and isochrones for Gaia</h4>
<p><font color=black>
I'm working with <a href="http://people.sissa.it/~sbressan/" target="_blank">Prof. Alessandro Bressan </a>
and Padova stellar group on PARSEC (the PAdova & TRieste Stellar Evolution
Code). We are now preparing a new database of alpha enhanced evolutionary tracks and isochrones.
The new isochrones are tested against Color-Magnitude Diagrams of well studied Globular Clusters,
tacking into account multiple population effects. They are also compared with observations of dwarf stars in the Solar vicinity.
After these preliminary computations, we will provide the full sets of isochrones with chemical compositions suitable for Globular Clusters and Bulge stars,
that will be fully implemented into galaxy simulators. We will also provide new models suitable for the analysis of unresolved stellar populations
in early type galaxies.
</font></p>
<span class="categories"><i class="fa fa-tag"></i>PARSEC, stellar evolution</span>
</div>
<div class="link-box">
<a href="http://stev.oapd.inaf.it/cgi-bin/cmd" target="_blank">PARSEC isochrones</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div>
<!-- modal-01 End -->
<div id="modal-02" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/modals/m-pms.jpg" alt="" />
<div class="description-box">
<h4>Lithium evolution in metal-poor stars</h4>
<p><font color=black>
Lithium abundance derived in metal-poor main-sequence stars is about three times lower than the value of primordial Li
predicted by the standard big bang nucleosynthesis. This disagreement is generally referred as the lithium problem.
We reconsider the stellar Li evolution from the pre-main sequence (PMS) to the end of the MS phase by introducing the effects
of convective overshooting and residual mass accretion. we reproduce the Spite plateau for stars with initial mass m0 = 0.62-0.80 M⊙,
and the Li declining branch for lower mass dwarfs, e.g. m0 = 0.57-0.60 M⊙, for a wide range of metallicities (Z = 0.00001 to Z = 0.0005),
starting from the primordial Li abundance A(Li) = 2.72 (Fu, et al, 2015).
This environmental Li evolution model also offers the possibility to interpret the
decrease of Li abundance in extremely metal-poor stars,
the Li disparities in spectroscopic binaries and the low Li abundance in planet hosting stars.
</font></p>
<span class="categories"><i class="fa fa-tag"></i>lithium problem, pre-main sequence</span>
</div>
<div class="link-box">
<a href="http://adsabs.harvard.edu/abs/2015MNRAS.452.3256F" target="_blank">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-02 End -->
<div id="modal-lirgb" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/modals/m-lirgb.jpg" alt="" />
<div class="description-box">
<h4>Lithium puzzle in K-giant stars</h4>
<p><font color=black>
Stars destroy lithium in their normal evolution. The convective envelopes of evolved red giants reach temperatures of millions of kelvin,
hot enough for the 7Li(p, α)4He reaction to burn Li efficiently.
Only about 1% of first-ascent red giants more luminous than the luminosity function bump in the red giant branch exhibit A(Li) > 1.5.
Nonetheless, Li-rich red giants do exist. We discoveried 14 Li-rich red giants among a sample of 2054
red giants in Milky Way dwarf satellite galaxies (Evan Kirby, Xiaoting Fu, Puragra Guhathakurta & Licai Deng, 2012, ApJ, 752, L16).
Because most of the stars have Li abundances larger than the universe's primordial value,
the Li in these stars must have been created rather than saved from destruction.
These Li-rich stars appear like other stars in the same galaxies in every measurable regard other than Li abundance. <br>
I'm interested in the nature of these Li-rich red giant stars, and now working both on the observation and theory to investigate the mechanism.
</font></p>
<span class="categories"><i class="fa fa-tag"></i>Li-rich giant, Dwarf galaxies, stellar evolution</span>
</div>
<div class="link-box">
<a href=http://adsabs.harvard.edu/abs/2012ApJ...752L..16K target="_blank">Details</a>
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-03 End -->
<div id="modal-04" class="popup-modal mfp-hide">
<img class="scale-with-grid" src="images/portfolio/modals/m-gaia.jpg" alt="" />
<div class="description-box">
<h4>Milky Way structure</h4>
<p><font color=black>
I was in the <a href="http://lamost.us" target="_blank"> LAMOST-PLUS group</a> when I was a master student,
working on the stellar stream in the Milky Way halo. Now I'm a <a hred="http://sci.esa.int/gaia/" target="_blank"> Gaia </a> member.
I'm interested in the chemical evolution and the structure of our galaxy.
</p>
<span class="categories"><i class="fa fa-tag"></i>Milky Way, Gaia, LAMOST</span>
</div>
<div class="link-box">
<a class="popup-modal-dismiss">Close</a>
</div>
</div><!-- modal-04 End -->
</div> <!-- row End -->
</section> <!-- Portfolio Section End-->
<!-- publication Section
================================================== -->
<section id="publication">
<!-- publication
----------------------------------------- -->
<div class="row education">
<h5>see my publication list on
<a href="https://orcid.org/0000-0002-6506-1985" target="_black">ORCID</a>
or on <a href="http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?library&libname=Xiaoting+Fu&libid=55faff7e2b" target="_black">ADS</a>.
</h5>
<div class="three columns header-col">
<h1><span>publications</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>New PARSEC data base of α-enhanced stellar evolutionary tracks and isochrones - I. Calibration with 47 Tuc (NGC 104) and the improvement on RGB bump</h3>
<p><em class="me"> Xiaoting Fu,</em> <em class="author"> Alessandro Bressan, Paola Marigo, Léo Girardi, Josefina Montalbán, Yang Chen, Ambra Nanni, 2018, MNRAS, 476, 496F </em></p>
<p>
<a href="http://adsabs.harvard.edu/abs/2018MNRAS.476..496F" target="_blank">ADS link;</a>
<a href="https://arxiv.org/abs/1801.07137" target="_blank"> arXiv link</a>
</p>
</div>
</div>
<!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>The Gaia-ESO Survey: Lithium enrichment histories of the Galactic thick and thin disc</h3>
<p><em class="me"> Xiaoting Fu,</em> <em class="author"> Donatella Romano, Angela Bragaglia, Alessio Mucciarelli, et al., 2018, A&A, 610, 38F </em></p>
<p>
<a href="http://adsabs.harvard.edu/abs/2018A%26A...610A..38F" target="_blank">ADS link;</a>
<a href="http://arxiv.org/abs/1711.04829" target="_blank"> arXiv link</a>
</p>
</div>
</div>
<!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Lithium evolution in metal-poor stars: from Pre-Main Sequence to the Spite plateau</h3>
<p><em class="me"> Xiaoting Fu,</em> <em class="author"> Alessandro Bressan, Paolo Molaro, Paola Marigo, 2015, MNRAS, 452, 3256F </em></p>
<p>
<a href="http://adsabs.harvard.edu/abs/2015MNRAS.452.3256F" target="_blank">ADS link;</a>
<a href="http://arxiv.org/abs/1506.05993" target="_blank"> arXiv link</a>
</p>
</div>
</div>
<!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>The chemical composition of the oldest nearby open cluster Ruprecht 147</h3>
<p>
<em class="author"> Angela Bragaglia, </em>
<em class="me"> Xiaoting Fu,</em>
<em class="author"> Alessio Mucciarelli, Gloria Andreuzzi, Paolo Donati. 2018, A&A, accepted</em>
</p>
<p>
<a href="" target="_blank">ADS link;</a>
<a href="" target="_blank"> arXiv link</a>
</p>
</div>
</div>
<!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Discovery of Super-Li Rich Red Giants in Dwarf Spheroidal Galaxies</h3>
<p>
<em class="author"> Evan Kirby,</em> <em class="me"> Xiaoting Fu,</em> <em class="author">Puragra Guhathakurta & Licai Deng, 2012, ApJ, 752, L16</em>
</p>
<p>
<a href="http://adsabs.harvard.edu/abs/2012ApJ...752L..16K" target="_blank">ADS link;</a>
<a href="http://arxiv.org/abs/1205.1057" target="_blank"> arXiv link</a>
</p>
</div>
</div>
<!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>An algorithm for preferential selection of spectroscopic targets in LEGUE</h3>
<p>
<em class="author">Carlin, Jeffrey L.; Lépine, Sébastien; Newberg, Heidi Jo; Deng, Li-Cai; Beers,Timothy C.; Chen, Yu-Qin; Christlieb, Norbert; </em> <em class="me"> Xiaoting Fu,</em>
<em class="author">et al, 2012, RAA, 12, 755</em>
</p>
<p>
<a href="http://adsabs.harvard.edu/abs/2012RAA....12..755C" target="_blank">ADS link;</a>
<a href="http://arxiv.org/abs/1206.3577" target="_blank"> arXiv link</a>
</p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End publication -->
<!-- proceedings
-------------------------------------------- -->
<div class="row work">
<div class="three columns header-col">
<h1><span>proceedings</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>New PARSEC database of alpha enhanced stellar evolutionary tracks and isochrones for Gaia</h3>
<p>
<em class="me"> Xiaoting Fu,</em> <em class="author">Alessandro Bressan, Paola Marigo, Léo Girardi, Josefina Montalban, Yang Chen, Ambra Nanni, Antonio Lanza, 2015, IAUGA, 2254821F</em>
</p>
<p>
<a href="http://adsabs.harvard.edu/abs/2015IAUGA..2254821F" target="_blank">ADS link;</a>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Lithium evolution from Pre-Main Sequence to the Spite plateau: an environmental solution to the cosmological lithium problem</h3>
<p><em class="me"> Xiaoting Fu,</em> <em class="author"> Alessandro Bressan, Paolo Molaro, Paola Marigo, 2016, IAUS, 317, 300F </em></p>
<p>
<a href="http://adsabs.harvard.edu/abs/2016IAUS..317..300F" target="_blank">ADS link;</a>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>The discovery of 14 lithium-rich red giants in Milky Way dwarf satellite galaxies</h3>
<p>
<em class="me"> Xiaoting Fu,</em> <em class="author">Evan Kirby, Puragra Guhathakurta & Licai Deng, 2012, MSAIS, 22, 92F</em>
</p>
<p>
<a href="http://adsabs.harvard.edu/abs/2012MSAIS..22...92F" target="_blank">ADS link;</a>
</p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End proceedings -->
<!-- presentations
----------------------------------------- -->
<div class="row work">
<div class="three columns header-col">
<h1><span>talks</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>Lithium evolution from Pre-Main Sequence
to the Spite plateau: an environmental
solution to the cosmological lithium problem</h3>
<p><em class="me">Gaia-ESO Survey 3rd science meeting <span>•</span> <em class="author"> Conference oral talk </em> <span>•</span>
<em class="date">Vilnius, Lithuania, December 3, 2015</em> <br>
<em class="me">ESO <span>•</span> <em class="author"> lunch talk </em> <span>•</span>
<em class="date">Garching, Germany, November 10, 2015</em> <br>
<em class="me">KIAA at Peking University <span>•</span> <em class="author"> lunch talk </em> <span>•</span> <br>
<em class="date">Beijing, China, December 21, 2015</em>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>New PARSEC database of alpha enhanced stellar evolutionary tracks and isochrones for Gaia</h3>
<p class="me">IAU GA FM7 <span>•</span> <em class="author"> Conference oral talk </em> <span>•</span>
<em class="date">Hawaii, USA, August 2015</em></p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Lithium problems: on the main sequence and the red giant branch</h3>
<p><em class="me">The University of Science and Technology of China (USTC) <span>•</span> <br>
<em class="author"> Invited talk </em> <span>•</span>
<em class="date">Hefei, China, December 2015</em> <br>
<em class="me">Shanghai Astronomical Observatory <span>•</span> <br>
<em class="author"> Invited talk </em> <span>•</span>
<em class="date">Shanghai, China, December 2014</em> <br>
<em class="me">Nanjing University <span>•</span> <em class="author"> Invited talk </em> <span>•</span>
<em class="date">Nanjing, China, December 2014</em>
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>The discovery of 14 lithium-rich red giants in Milky Way dwarf satellite galaxies</h3>
<p> <em class="me">Lithium in the Cosmos <span>•</span> <em class="author"> Conference oral talk </em> <span>•</span>
<em class="date">Institut d'Astrophysique de Paris, France, February 2012</em> <br>
<em class="me">LAMOST - PLUS workshop <span>•</span> <em class="author"> Conference oral talk </em> <span>•</span>
<em class="date">Rensselaer Polytechnic Institute, New York, USA, June 2011</em>
</p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End presentations -->
</section> <!-- publication Section End-->
<!-- CV Section
================================================== -->
<section id="resume">
<!-- Education
--------------------------------------------- -->
<div class="row education">
<div class="three columns header-col">
<h1><span>Education</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>Ph.D., Astrophysics</h3>
<p class="info">International School for Advanced Studies (SISSA)<span>•</span> <em class="date"> Trieste, Italy </em></p>
<p>
November 2012 - October 2016
<br>
<em class="info">Thesis: Evolution of low mass stars : lithium problem and α-enhanced tracks and isochrones.
<a href="http://adsabs.harvard.edu/abs/2017arXiv170202932F" target="_blank"> [download] </a>
</em> <br>
<em class="info"> advisor: Alessandro Bressan, Paolo Molaro, Léo Girardi</em>
</p>
</div>
</div>
<!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>M.S., Astrophysics </h3>
<p class="info">National Astronomical Observatories of China (NAOC)<span>•</span> <em class="date">Beijing, China</em></p>
<p>
September 2009 - June 2012<br>
<em class="info"> advisor: Licai Deng</em>
</p>
</div>
</div>
<!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3> B.S., Optical Information Science and Technology</h3>
<p class="info"> Beijing Jiaotong University (BJTU)<span>•</span> <em class="date">Beijing, China</em></p>
<p>
September 2004 - June 2008
</p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End Education -->
<!-- HONORS AND AWARDS
--------------------------------------------- -->
<div class="row work">
<div class="three columns header-col">
<h1><span>AWARDS</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>Bronze poster prize</h3>
<p class="info">ESO “RUSPUTIN” conference<span>•</span> <em class="date">October 2014</em></p>
<p>
Lithium evolution in POP II pre-main sequence stars with overshoot and accretion
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>The best runner-up poster prize</h3>
<p class="info">IAUS 298 <span>•</span> <em class="date">May 2013</em></p>
<p>
Discovery of super-Li rich red giants in Dwarf Spheroidal galaxies
</p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Student merit award</h3>
<p class="info">Graduate University of Chinese Academy of Sciences<span>•</span> <em class="date">July 2012; July 2010</em></p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End awards -->
<!-- fellow
-------------------------------------------- -->
<div class="row work">
<div class="three columns header-col">
<h1><span>FELLOWSHIPS</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>SISSA PhD fellowship</h3>
<p class="info">International School for Advanced Studies (SISSA)<span>•</span> <em class="date">Nov 2012 - present</em></p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>CAS Graduate assistantship</h3>
<p class="info">Chinese Academy of Sciences (CAS)<span>•</span> <em class="date">Sep. 2009 - Jun. 2012</em></p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End fellow -->
<!-- observation
--------------------------------------------- -->
<div class="row work">
<div class="three columns header-col">
<h1><span>Observation <br>
<br>
experience</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3>Keck II - DEIMOS</h3>
<p class="info">Mauna Kea, USA<span>•</span> <em class="date">March 3-5, 2011</em></p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>Hale telescope - DBSP</h3>
<p class="info">Palomar, USA<span>•</span> <em class="date">April 4-6, 2011</em></p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>2.16m telescope - HRS</h3>
<p class="info">Xinglong, China<span>•</span> <em class="date">December 12-15, 2011</em></p>
</div>
</div> <!-- item end -->
<div class="row item">
<div class="twelve columns">
<h3>LAMOST</h3>
<p class="info">Xinglong, China<span>•</span> <em class="date">October 16-18, 2012; February 23-27, 2011</em></p>
</div>
</div> <!-- item end -->
</div> <!-- main-col end -->
</div> <!-- End observation -->
</section> <!-- Resume Section End-->
<!-- Call-To-Action Section
================================================== -->
<section id="call-to-action">
<div class="row">
<div class="two columns header-col">
<h1><span>Xiaoting FU's CV</span></h1>
</div>
<div class="seven columns">
<h2>Download Curriculum Vitae</h2>
<p>pdf version - September 2018</p>
</div>
<div class="three columns action">
<a href="./materials/xtfu_cv2018sep.pdf" target="_blanck" class="button"><i class="fa fa-download" ></i> My CV</a>
</div>
</div>
</section> <!-- Call-To-Action Section End-->
<!-- About Section
================================================== -->