forked from Friendshao/Friendshao.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
989 lines (848 loc) · 34.9 KB
/
index.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
---
layout: default
---
<!---------------------------------------------------------------->
<head>
<meta charset="utf-8">
<style>
.black_overlay {
display: none;
position: fixed;
top: 0%;
left: 0%;
width: 100%;
height: 100%;
background-color: black;
z-index: 1001;
-moz-opacity: 0.8;
opacity: .80;
filter: alpha(opacity=88);
overflow: scroll;
}
.white_content_spring {
display: none;
position: fixed;
top: 15%;
left: 20%;
width: 55%;
height: 55%;
padding: 30px;
border: 10px solid rgb(124, 201, 124);
background-color: white;
z-index: 1002;
overflow: auto;
}
.white_content_summer {
display: none;
position: fixed;
top: 15%;
left: 20%;
width: 55%;
height: 55%;
padding: 30px;
border: 10px solid rgb(184, 38, 46);
background-color: white;
z-index: 1002;
overflow: auto;
}
.white_content_autumn {
display: none;
position: fixed;
top: 15%;
left: 20%;
width: 55%;
height: 55%;
padding: 30px;
border: 10px solid orange;
background-color: white;
z-index: 1002;
overflow: auto;
}
.white_content_winter {
display: none;
position: fixed;
top: 15%;
left: 20%;
width: 55%;
height: 55%;
padding: 30px;
border: 10px solid rgb(70, 167, 197);
background-color: white;
z-index: 1002;
overflow: auto;
}
</style>
</head>
<!---------------------------------------------------------------->
<script type="text/javascript">
$(function () {
})
function openDialog(id) {
for (var i = 1; i < 10; i++) {
x = document.getElementById("light" + i)
y = document.getElementById("fade" + i)
if (i == id) {
x.style.display = 'block';
y.style.display = 'block';
}
}
}
function closeDialog(id) {
for (var i = 1; i < 10; i++) {
x = document.getElementById("light" + i)
y = document.getElementById("fade" + i)
if (i == id) {
x.style.display = 'none';
y.style.display = 'none';
}
}
}
</script>
<!---------------------------------------------------------------->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'] ],
processEscapes: true
}
});
</script>
<!---------------------------------------------------------------->
<script type="text/javascript"
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<!---------------------------------------------------------------->
<body>
<div class="home">
<font size="+3">News</font> <font color="grey"> Since
September 1, 2018 <br> </font>
<img src="img/talk.png" style="height:28px;">
<font size="+1">Talk</font>
<img src="img/event.png" style="height:28px;">
<font size="+1">Event</font>
<img src="img/paper.png" style="height:28px;">
<font size="+1">Paper</font>
<p></p>
<!---------------------------------------------------------------->
<br>
<hr><br>
<font size="+3" color="#F9A20C"><b>Autumn 2020</b></font>
<img src="img/autumn.png" style="height:70px;"><br>
<p></p>
<font color="grey" size="2">August 2020</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited talk at <b>Dialogue at the Dream Field: Supranuclear Matter</b>,
Guiyang China
(<a href="http://www.phy.pku.edu.cn/~FPS/ddf/index.html">DDF2020</a>)
<p></p>
<font color="grey" size="2">July 2020</font> <br>
<img src="img/talk.png" style="height:28px;">
Contributed talk at <b>2020 Annual Meeting of the Chinese Physical Society, Division of Gravitation and Relativistic Astrophysics</b>,
Shenyang China
(<a href="http://gra2020.csp.escience.cn/">GRA 2020</a>)
<p></p>
<!---------------------------------------------------------------->
<br>
<hr><br>
<font size="+3" color="#F50D40"><b>Summer 2020</b></font>
<img src="img/summer.png" style="height:70px;"><br>
<p></p>
<font color="grey" size="2">May 2020</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited talk at <b>Gravitational Wave Astrophysics Conference</b>,
University of Science and Technology of China, Hefei China
(<a href="http://4th-gw-astro.csp.escience.cn/dct/page/1">4GW</a>)
<p></p>
<font color="grey" size="2">May 2020</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited talk at <b>Frontier Workshop on Gravitation and Cosmology</b>,
Dalian University of Technology
<p></p>
<font color="grey" size="2">May 11, 2020</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited talk at <b>Nordic Neutron Stars</b>, Aarhus University, Denmark
(<a href="https://aias.au.dk/events/nordic-neutron-stars/">Nordic NSs</a>)
<p></p>
<font color="grey" size="2">April 2020</font> <br>
<img src="img/talk.png" style="height:28px;">
Contributed talk at the <b>25th KAGRA Face-to-Face Meeting</b>,
University of Tokyo, Kashiwa-Chiba Japan
(<a href="http://gwwiki.icrr.u-tokyo.ac.jp/JGWwiki/LCGT/Meeting/f2f/2020Apr">F2F</a>)
<p></p>
<!---------------------------------------------------------------->
<br>
<hr><br>
<font size="+3" color="#8BB338"><b>Spring 2020</b></font>
<img src="img/spring.png" style="height:60px;"><br>
<p></p>
<font color="grey" size="2">February 2020</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Resonant Instability of Axionic Dark Matter Clumps</b> by Zihang Wang
<i>et al.</i> (<a href="https://arxiv.org/abs/2002.09144">arXiv</a>)
<p></p>
<font color="grey" size="2">February 2020</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Combined Search for Anisotropic Birefringence in the
Gravitational-Wave Transient Catalog GWTC-1</b> by Lijing Shao
(<a href="https://arxiv.org/abs/2002.01185">arXiv</a>)
<p></p>
<font color="grey" size="2">January 2020</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Prospects for Fundamental Physics with LISA</b> by Enrico Barausse <i>et al.</i>
(<a href="https://arxiv.org/abs/2001.09793">arXiv</a>)
<p></p>
<!---------------------------------------------------------------->
<br>
<hr><br>
<font size="+3" color="#0A92C7"><b>Winter 2019</b></font>
<img src="img/winter.jpeg" style="height:65px;"><br>
<p></p>
<font color="grey" size="2">December 2019</font> <br>
<img src="img/event.png" style="height:28px;">
Funding supports on <b>Massive Black Holes as Cosmological Standard
Candles</b> from National Natural Science Foundation of China (11991053)
<p></p>
<font color="grey" size="2">December 20, 2019</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited talk at <b>Workshop on Gravitation and Cosmology</b>, Institute of
Theoretical Physics (CAS), Beijing China (<a
href="http://www.itp.cas.cn/xwzx/kydt/201912/t20191224_5470700.html">link</a>)
<p></p>
<font color="grey" size="2">November 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>A Wide Star$-$Black-Hole Binary System from Radial-Velocity
Measurements</b> by Jifeng Liu <i>et al.</i>
(<a href="https://arxiv.org/abs/1911.11989">arXiv</a>)
<p></p>
<font color="grey" size="2">November 2019</font> <br>
<img src="img/event.png" style="height:28px;">
Serving as SOC & LOC Member at <b>KIAA Forum 2019: The Future of
Gravitational
Wave Astrophysics</b>,
Peking University
(<a href="http://kiaa.pku.edu.cn/astroforum19/">AstroForum19</a>)
<p></p>
<font color="grey" size="2">October 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>First M87 Event Horizon Telescope Results and the Role of ALMA</b> by
Ciriaco Goddi <i>et al.</i>
(<a href="https://arxiv.org/abs/1910.10193">arXiv</a>)
<p></p>
<font color="grey" size="2">October 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Constraints on Fifth Forces through Perihelion Precession of Planets</b>
by
Bing Sun <i>et al.</i>
(<a href="https://arxiv.org/abs/1910.05666">arXiv</a>)
<p></p>
<font color="grey" size="2">October 12, 2019</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited Talk at <b>Inauguration of United Center for Gravitational
Wave Physics</b> & <b>First Hangzhou International Meeting on
Gravitational Waves</b>, Zhejiang University of Technology
(<a href="http://www.zjut.edu.cn/newsDetail.jsp?id=20360">UCGWP</a>)
<p></p>
<font color="grey" size="2">October 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Validating the Effective-One-Body Numerical-Relativity Waveform Models
for
Spin-aligned Binary Black Holes along Eccentric Orbits</b> by
Xiaolin Liu <i>et al.</i>
(<a href="https://arxiv.org/abs/1910.00784">arXiv</a>)
<p></p>
<!---------------------------------------------------------------->
<br>
<hr><br>
<a href="JavaScript:void(0)" onclick="openDialog(5)">
<div style="border: 5px solid orange; text-align: center;">
<font size="+3" color="#F9A20C"><b>Autumn 2019</b></font>
<img src="img/autumn.png" style="height:70px;"><br>
</div>
</a>
<div id="light5" class="white_content_autumn">
<a href="javascript:void(0)" onclick="closeDialog(5)">
<p align="right">Close Window</p>
</a>
<font size="+3" color="#F9A20C"><b>Autumn 2019</b></font>
<img src="img/autumn.png" style="height:70px;"><br>
<p></p>
<font color="grey" size="2">September 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Neutron Star Structure in the Minimal Gravitational Standard-Model
Extension and the Implication to Continuous Gravitational Waves</b> by
Rui
Xu <i>et al.</i>
(<a href="https://arxiv.org/abs/1909.10372">arXiv</a>)
<p></p>
<font color="grey" size="2">September 2019</font> <br>
<img src="img/event.png" style="height:28px;">
<b>Workshop on the Chinese Pulsar Timing Array</b>, National Time Service
Center (CAS), Xi'an China
<p></p>
<font color="grey" size="2">September 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
Pupolar science article <b>GW170817: Was Einstein Right?</b> by Lijing
Shao
(<a href="http://www.wuli.ac.cn/CN/abstract/abstract74649.shtml">link</a>)
<p></p>
<font color="grey" size="2">September 9, 2019</font> <br>
<img src="img/event.png" style="height:28px;">
Lecturing classes <b>Theoretical Mechanics</b> and
<b>General Relativity & Astrophysics</b> at Peking University, Fall
2019
(<a
href="https://friendshao.github.io/teaching/thmech19/thmech19">Mech19</a>,
<a href="https://friendshao.github.io/teaching/gr19/gr19">GR19</a>)
<p></p>
<font color="grey" size="2">September 5, 2019</font> <br>
<img src="img/event.png" style="height:28px;">
<b>2020 Breakthrough Prize in Fundamental Physics</b> awarded to the Event
Horizon Telescope Collaboration
(<a href="https://breakthroughprize.org/News/54">Breakthrough2020</a>)
<p></p>
<font color="grey" size="2">September 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
White papers for <b>Voyage 2050</b>
<ul type="I">
<li>
<b>High Angular Resolution Gravitational Wave Astronomy</b>
by I. Dvorkin <i>et al.</i>
(<a href="https://arxiv.org/abs/1908.11410">arXiv</a>)
</li>
<li>
<b>Unveiling the Gravitational Universe at $\mu$-Hz Frequencies</b>
by A. Sesana, N. Korsakova <i>et al.</i>
(<a href="https://arxiv.org/abs/1908.11391">arXiv</a>)
</li>
<li>
<b>The Missing Link in Gravitational-wave Astronomy: Discoveries
Waiting
in
the Decihertz Range</b> by M. Arca Sedda, C.P.L. Berry, K. Jani
<i>et
al.</i>
(<a href="https://arxiv.org/abs/1908.11375">arXiv</a>)
</li>
</ul>
<p></p>
<font color="grey" size="2">August 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
Invited article entitled <b>Lorentz-violating Matter-gravity Couplings in
Small-eccentricity Binary
Pulsars</b> by Lijing Shao
(<a href="https://arxiv.org/abs/1908.10019">arXiv</a>)
<p></p>
<font color="grey" size="2">August 14, 2019</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited Talk & Serving as an SOC Member at <b>Gravitational Wave
Astrophysics
Conference 2019</b>, Kunming China
(<a href="http://3rd-gw-astro.csp.escience.cn/dct/page/65559">3GW</a>)
<p></p>
<font color="grey" size="2">August 2019</font> <br>
<img src="img/event.png" style="height:28px;">
Funding supports on <b>Gravitational Waveforms from Compact Binary
Coalescence</b> from National Natural Science Foundation of China
(11975027)
<p></p>
<font color="grey" size="2">August 11, 2019</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited Talk at <b>Interdisciplinary Forum on Gravitational-wave Astronomy
for
Young Scientists</b>, Qingdao University of Science and Technology
<p></p>
<font color="grey" size="2">July 2019</font> <br>
<img src="img/event.png" style="height:28px;">
<b>Excellent Poster Award</b> to <b>Junjie Zhao</b> at the <b>GRA 2019</b>
Meeting (<a href="http://gra.itp.ac.cn/image/image_gallery?uuid=c6659c0a-d3bb-4479-b2e8-f097406cddd8&groupId=65581&t=1563440657742">link</a>)
<p></p>
<font color="grey" size="2">July 17, 2019</font> <br>
<img src="img/talk.png" style="height:28px;">
Contributed Talk at <b>2019 Annual Meeting of the Chinese Physical
Society,
Division of Gravitation and Relativistic Astrophysics</b>, Guizhou
University, Guiyang China
(<a href="http://gra2019.csp.escience.cn/dct/page/1">GRA 2019</a>)
<p></p>
<font color="grey" size="2">July 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Testing Fifth Forces from the Galactic Dark Matter</b> by Lijing Shao
(<a href="https://arxiv.org/abs/1907.02232">arXiv</a>)
<p></p>
<font color="grey" size="2">July 10/12, 2019</font> <br>
<img src="img/talk.png" style="height:28px;">
Contributed Talks at the <b>22nd International Conference on General
Relativity
and Gravitation & 13th Edoardo Amaldi Conference on Gravitational
Waves</b>,
Universitat de València, Spain
(<a href="https://www.gr22amaldi13.com/">GR22/Amaldi13</a>)
<p></p>
<font color="grey" size="2">July 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Reduced-Order Surrogate Models for Scalar-Tensor Gravity in the Strong
Field and Applications to Binary Pulsars and GW170817</b> by Junjie Zhao
<i>et al.</i> (<a href="https://arxiv.org/abs/1907.00780">arXiv</a>)
<p></p>
</div>
<div id="fade5" class="black_overlay"></div>
<!---------------------------------------------------------------->
<br>
<a href="JavaScript:void(0)" onclick="openDialog(4)">
<div style="border: 5px solid #F50D40; text-align: center;">
<font size="+3" color="#F50D40"><b>Summer 2019</b></font>
<img src="img/summer.png" style="height:70px;"><br>
</div>
</a>
<div id="light4" class="white_content_summer">
<a href="javascript:void(0)" onclick="closeDialog(4)">
<p align="right">Close Window</p>
</a>
<font size="+3" color="#F50D40"><b>Summer 2019</b></font>
<img src="img/summer.png" style="height:70px;"><br>
<p></p>
<font color="grey" size="2">June 21, 2019</font> <br>
<img src="img/talk.png" style="height:28px;">
Contributed Talk at the <b>6th KAGRA International Workshop</b>,
Wuhan Institute of Physics and Mathematics (CAS)
(<a href="http://kiw6.csp.escience.cn/dct/page/1">KIW6</a>)
<p></p>
<font color="grey" size="2">May 31, 2019</font> <br>
<img src="img/event.png" style="height:28px;">
<b>Bachelor thesis defenses</b> by Wenlong Li and Zhongpeng Sun,
Department
of
Astronomy, Peking University
<p></p>
<font color="grey" size="2">May 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Bounding the Mass of Graviton in a Dynamic Regime with Binary
Pulsars</b>
by Xueli Miao <i>et al.</i>
(<a href="https://arxiv.org/abs/1905.12836">arXiv</a>)
<p></p>
<font color="grey" size="2">May 25, 2019</font> <br>
<img src="img/event.png" style="height:28px;">
Popular-science talk <b>“Gravitational Wave Era”</b>, invited by the Youth
Astronomy Society, Peking University
(<a href="https://mp.weixin.qq.com/s/UORlexq0peZaqhtC_clq_w">flyer</a>)
<p></p>
<font color="grey" size="2">May 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Pulsar Tests of the Gravitational Lorentz Violation</b> by Lijing Shao
(<a href="https://arxiv.org/abs/1905.08405">arXiv</a>)
<p></p>
<font color="grey" size="2">May 16, 2019</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited Talk at the <b>8th Meeting on
CPT and Lorentz Symmetry</b>, Indiana
University, Bloomington USA
(<a href="http://www.indiana.edu/~lorentz/cpt19/">CPT'19</a>)
<p></p>
<font color="grey" size="2">May 10, 2019</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited Talk at the <b>8th Huada (CCNU) School on QCD</b>, Central China
Normal
University, Wuhan China
(<a href="https://indico.ihep.ac.cn/event/9689/overview">QCD</a>)
<p></p>
<font color="grey" size="2">May 6, 2019</font> <br>
<img src="img/talk.png" style="height:28px;">
Contributed Talk at <b>Recent Progress in Relativistic Astrophysics</b>,
Fudan
University, Shanghai China
(<a
href="http://www.tat.physik.uni-tuebingen.de/blackholes2019/Home.html">Fudan'19</a>)
<p></p>
<font color="grey" size="2">May 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Fundamental Physics with Galactic Center Pulsars</b> by Geoffrey Bower
<i>et al.</i>
(<a
href="https://ui.adsabs.harvard.edu/abs/2019BAAS...51c.438B/abstract">ADS</a>)
<p></p>
<font color="grey" size="2">April 2019</font> <br>
<img src="img/event.png" style="height:28px;">
Invited to join the <b>Executive Board Members</b> of the journal
<b>Science
Bulletin</b>
(<a href="https://www.journals.elsevier.com/science-bulletin">Sci.
Bull.</a>)
<p></p>
<font color="grey" size="2">Apr 30, 2019</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited Talk at the <b>1st International Symposium on Precision
Measurement
Physics 2019</b>, Huazhong University of Science and Technology, Wuhan
China
(<a
href="http://meeting.hust.edu.cn/Meeting/28D0C57D1E429B9FA1CDB0F5CF96E6/?id=626">PMP2019</a>)
<p></p>
<font color="grey" size="2">Apr 24, 2019</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited Talk at <b>Workshop on Gravitational Waves and Cosmology Related
to
FAST
Sciences</b>, Qiannan Normal University for Nationalities, Duyun China
<p></p>
<font color="grey" size="2">April 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>First M87 Event Horizon Telescope Results</b> by the Event Horizon
Telescope Collaboration
<ol type="I">
<li>
The Shadow of the Supermassive Black Hole
(<a
href="https://iopscience.iop.org/article/10.3847/2041-8213/ab0ec7">ApJL</a>)
</li>
<li>
Array and Instrumentation
(<a
href="https://iopscience.iop.org/article/10.3847/2041-8213/ab0c96">ApJL</a>)
</li>
<li>
Data Processing and Calibration
(<a
href="https://iopscience.iop.org/article/10.3847/2041-8213/ab0c57">ApJL</a>)
</li>
<li>
Imaging the Central Supermassive Black Hole
(<a
href="https://iopscience.iop.org/article/10.3847/2041-8213/ab0e85">ApJL</a>)
</li>
<li>
Physical Origin of the Asymmetric Ring
(<a
href="https://iopscience.iop.org/article/10.3847/2041-8213/ab0f43">ApJL</a>)
</li>
<li>
The Shadow and Mass of the Central Black Hole
(<a
href="https://iopscience.iop.org/article/10.3847/2041-8213/ab1141">ApJL</a>)
</li>
</ol>
<p></p>
<font color="grey" size="2">Apr 9, 2019</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited Talk at <b>Workshop on the Strategic Priority Program
“Multi-wavelength
Gravitational Wave Universe”</b>, Yunnan Astronomical Observatory,
Kunming
China
<p></p>
</div>
<div id="fade4" class="black_overlay"></div>
<!---------------------------------------------------------------->
<br>
<a href="JavaScript:void(0)" onclick="openDialog(3)">
<div style="border: 5px solid #8BB338; text-align: center;">
<font size="+3" color="#8BB338"><b>Spring 2019</b></font>
<img src="img/spring.png" style="height:60px;"><br>
</div>
</a>
<div id="light3" class="white_content_spring">
<a href="javascript:void(0)" onclick="closeDialog(3)">
<p align="right">Close Window</p>
</a>
<font size="+3" color="#8BB338"><b>Spring 2019</b></font>
<img src="img/spring.png" style="height:60px;"><br>
<p></p>
<font color="grey" size="2">March 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Testing the Gravitational Weak Equivalence Principle in the
Standard-Model
Extension with Binary Pulsars</b> by Lijing Shao & Quentin G. Bailey
(<a href="https://arxiv.org/abs/1903.11760">arXiv</a>)
<p></p>
<font color="grey" size="2">March 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Extreme Gravity and Fundamental Physics</b> by B.S. Sathyaprakash
<i>et
al.</i>
(<a href="https://arxiv.org/abs/1903.09221">arXiv</a>)
<p></p>
<font color="grey" size="2">March 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>On the Properties of the Massive Binary Black Hole Merger
GW170729</b> by
Katerina Chatziioannou <i>et al.</i>
(<a href="https://arxiv.org/abs/1903.06742">arXiv</a>)
<p></p>
<font color="grey" size="2">March 2019</font> <br>
<img src="img/event.png" style="height:28px;">
Selected as an <b>Outstanding Reviewer</b> for <b>Universe</b>,
Multidisciplinary Digital Publishing Institute
(<a
href="https://friendshao.github.io/whatsmore/Universe2018.pdf">MDPI</a>)
<p></p>
<font color="grey" size="2">March 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Tests of General Relativity with the Binary Black Hole Signals from
the
LIGO-Virgo Catalog GWTC-1</b> by the LIGO/Virgo Collaboration
(<a href="https://arxiv.org/abs/1903.04467">arXiv</a>)
<p></p>
<font color="grey" size="2">March 2019</font> <br>
<img src="img/event.png" style="height:28px;">
Selected as an <b>Outstanding Reviewer</b> for <b>Classical and
Quantum
Gravity</b>, IOP Publishing
(<a href="https://friendshao.github.io/whatsmore/CQG2018.pdf">IOP</a>)
<p></p>
<font color="grey" size="2">March 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Gravitational-wave Merging Events from the Dynamics of Stellar Mass
Binary Black Holes around the Massive Black Hole in a Galactic
Nucleus</b>
by
Fupeng Zhang <i>et al.</i>
(<a href="https://arxiv.org/abs/1903.02685">arXiv</a>)
<p></p>
<font color="grey" size="2">Feb 15, 2019</font> <br>
<img src="img/talk.png" style="height:28px;">
Contributed talk at <b>The 5th KAGRA International Workshop / The 1st
KAGRA-Virgo-3G Detectors Workshop</b>, Perugia University, Italy
(<a href="https://indico.ego-gw.it/event/12/">KIW2019</a>)
<p></p>
<font color="grey" size="2">February 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Constraints on Millicharged Dark Matter and Axion-like Particles
from
Timing of Radio Waves</b> by Andrea Caputo <i>et al.</i>
(<a href="https://arxiv.org/abs/1902.02695">arXiv</a>)
<p></p>
<font color="grey" size="2">January 2019</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Degeneracy in Studying the Supranuclear Equation of State and
Modified
Gravity with Neutron Stars</b> by Lijing Shao
(<a href="https://arxiv.org/abs/1901.07546">arXiv</a>)
<p></p>
<font color="grey" size="2">January, 2019</font> <br>
<img src="img/event.png" style="height:28px;">
Selected to the <b>Young Elite Scientists Sponsorship Program</b> by
China
Association for Science and Technology
(<a
href="http://www.cast.org.cn/art/2019/1/17/art_458_85840.html">CAST</a>)
<p></p>
<font color="grey" size="2">Jan 6, 2019</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited talk at <b>Xiamen-CUSTIPEN Workshop on the EOS of Dense
Neutron-Rich
Matter in the Era of Gravitational Wave Astronomy</b>, Xiamen
University
(<a
href="http://custipen.pku.edu.cn/meeting/xiamen2019/About.htm">CUSTIPEN</a>)
<p></p>
<font color="grey" size="2">Jan 2, 2019</font> <br>
<img src="img/event.png" style="height:28px;">
<b>First Teaching Activity</b> for the undergraduate freshman class
<b>“Lectures on the Frontiers of Modern Physics”</b>, Peking
University
<p></p>
</div>
<div id="fade3" class="black_overlay"></div>
<!---------------------------------------------------------------->
<br>
<a href="JavaScript:void(0)" onclick="openDialog(2)">
<div style="border: 5px solid #0A92C7; text-align: center;">
<font size="+3" color="#0A92C7"><b>Winter 2018</b></font>
<img src="img/winter.jpeg" style="height:65px;"><br>
</div>
</a>
<div id="light2" class="white_content_winter">
<a href="javascript:void(0)" onclick="closeDialog(2)">
<p align="right">Close Window</p>
</a>
<font size="+3" color="#0A92C7"><b>Winter 2018</b></font>
<img src="img/winter.jpeg" style="height:65px;"><br>
<p></p>
<font color="grey" size="2">December 22, 2018</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited talk at <b>Workshop on Gravitation and Cosmology</b>,
Institute of Theoretical Physics (CAS), Beijing China
(<a
href="http://www.itp.cas.cn/xshd/xshy/201812/t20181219_5218435.html">link</a>)
<p></p>
<font color="grey" size="2">December, 2018</font> <br>
<img src="img/event.png" style="height:28px;">
Join the <b>KAGRA Scientific Collaboration</b> with Kohei Inayoshi
and
Yong
Gao
(<a
href="http://kiaa.pku.edu.cn/news/2018/team-kiaa-joined-kagra-gravitational-wave-scientific-collaboration">KIAA</a>)
<p></p>
<font color="grey" size="2">December 17, 2018</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited talk at <b>The 5th Workshop on TianQin Science
Mission</b>,
Sun
Yat-sen
University, Zhuhai China
(<a href="http://tianqin.sysu.edu.cn/content/270">link</a>)
<p></p>
<font color="grey" size="2">December 2018</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Observatory Science with eXTP</b> by in 't Zand <i>et al.</i>
(<a href="https://arxiv.org/abs/1812.04023">arXiv</a>) AND
<b>Accretion in Strong Field Gravity with eXTP</b> by De Rosa
<i>et
al.</i>
(<a href="https://arxiv.org/abs/1812.04022">arXiv</a>)
<p></p>
<font color="grey" size="2">December 10, 2018</font> <br>
<img src="img/talk.png" style="height:28px;">
Seminar talk <b>“Constraining Strong-field Gravity by Combining
Pulsar
Timing
and Gravitational Waves”</b> at Tsinghua University, Beijing
China
(<a
href="http://astro.tsinghua.edu.cn/index.php/events/calendar/eventdetail/385/-/constraining-strong-field-gravity-by-combining-pulsar-timing-and-gravitational-waves">flyer</a>)
<p></p>
<font color="grey" size="2">December, 2018</font> <br>
<img src="img/event.png" style="height:28px;">
Join the <b>Hot Universe Baryon Surveyor (HUBS)</b> Scientific
Collaboration
(<a href="http://hubs.mynetgear.com:8080/">HUBS</a>)
<p></p>
<font color="grey" size="2">December 2018</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>GWTC-1: A Gravitational-wave Transient Catalog of Compact
Binary
Mergers
Observed by LIGO and Virgo during the First and Second Observing
Runs</b>
by
the LIGO/Virgo Collaboration
(<a href="https://arxiv.org/abs/1811.12907">arXiv</a>)
<p></p>
<font color="grey" size="2">November 26, 2018</font> <br>
<img src="img/talk.png" style="height:28px;">
Contributed talk at <b>MPG-CAS Joint Project Meeting:
Low-frequency
Gravitational Wave Astronomy and Gravitational Physics in
Space</b>,
Shanghai
Jiao Tong University
<p></p>
<font color="grey" size="2">November, 2018</font> <br>
<img src="img/event.png" style="height:28px;">
Invited to join the <b>editorial board</b> of the journal
<b><i>Universe</i></b>
(<a
href="https://www.mdpi.com/journal/universe/editors#editorialboard">editorial</a>)
<p></p>
<font color="grey" size="2">November 2018</font> <br>
<img src="img/paper.png" style="height:28px;">
Invited to translate <i>James Hough</i>'s <b>A Wave of
Discovery</b>
(<a href="https://physicsworld.com/a/a-wave-of-discovery/">original</a>,
<a
href="http://www.wuli.ac.cn/CN/abstract/abstract73163.shtml">translated</a>)
<p></p>
<font color="grey" size="2">November 20, 2018</font> <br>
<img src="img/talk.png" style="height:28px;">
Contributed talk at <b>International Symposium on Cosmology and
Particle
Astrophysics</b>, Yangzhou University
(<a href="http://cospa2018.cgc-yzu.cn/">CosPA'18</a>)
<p></p>
<font color="grey" size="2">November 2018</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Tests of General Relativity with GW170817</b> by the LIGO/Virgo
Collaboration
(<a href="https://arxiv.org/abs/1811.00364">arXiv</a>)
<p></p>
<font color="grey" size="2">October 30, 2018</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited talk <b>“Testing Gravity with Pulsars and Gravitational
Waves”</b>
at
University of Science and Technology of China, Hefei China
(<a
href="https://astro.ustc.edu.cn/2018/1029/c14971a344157/page.htm">flyer</a>)
<p></p>
<font color="grey" size="2">October, 2018</font> <br>
<img src="img/event.png" style="height:28px;">
Join the <b>Laser Interferometer Space Antenna (LISA)</b>
Consortium
(<a href="https://www.elisascience.org/">LISA</a>)
<p></p>
<font color="grey" size="2">October 16, 2018</font> <br>
<img src="img/event.png" style="height:28px;">
<b>Our First Group Meeting</b> at KIAA-PKU
(<a href="https://kiaagravity.github.io/">page</a>)
<p></p>
<font color="grey" size="2">October 2018</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Galactic Center Pulsars with the ngVLA</b> by Geoffrey C. Bower
<i>et
al</i>.
(<a href="https://arxiv.org/abs/1810.06623">arXiv</a>)
<p></p>
<font color="grey" size="2">October 2018</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Testing Velocity-dependent CPT-violating Gravitational Forces
with
Radio
Pulsars</b> by Lijing Shao & Quentin G. Bailey
(<a href="https://arxiv.org/abs/1810.06332">arXiv</a>)
<p></p>
<font color="grey" size="2">October 2018</font> <br>
<img src="img/paper.png" style="height:28px;">
<b>Fundamental Physics with the Square Kilometre Array</b> by Phil
Bull
<i>et
al</i>.
(<a href="https://arxiv.org/abs/1810.02680">arXiv</a>)
<p></p>
</div>
<div id="fade2" class="black_overlay"></div>
<!---------------------------------------------------------------->
<br>
<a href="JavaScript:void(0)" onclick="openDialog(1)">
<div style="border: 5px solid #F9A20C; text-align: center;">
<font size="+3" color="#F9A20C"><b>Autumn 2018</b></font>
<img src="img/autumn.png" style="height:70px;"><br>
</div>
</a>
<div id="light1" class="white_content_autumn">
<a href="javascript:void(0)" onclick="closeDialog(1)">
<p align="right">Close Window</p>
</a>
<font size="+3" color="#F9A20C"><b>Autumn 2018</b></font>
<img src="img/autumn.png" style="height:70px;"><br>
<p></p>
<font color="grey" size="2">September 20, 2018</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited talk at <b>Advanced
Gravitational-wave Workshop</b>, Hunan Normal University,
Changsha
China
<p></p>
<font color="grey" size="2">September 14, 2018</font> <br>
<img src="img/talk.png" style="height:28px;">
Invited talk <b>“Testing the Universality of Free Fall towards
Dark
Matter
with Radio Pulsars”</b> at Virtual Institute of Astroparticle
Physics
(<a href="http://viavca.in2p3.fr/lijing_shao.html">slides &
video</a>)
<p></p>
<font color="grey" size="2">September 1, 2018</font> <br>
<img src="img/event.png" style="height:28px;">
<b>Assistant Professor</b> at Kavli Institute for Astronomy and
Astrophysics,
Peking University
(<a
href="http://kiaa.pku.edu.cn/news/2018/three-faculty-join-kiaa">KIAA</a>)
</div>
<div id="fade1" class="black_overlay"></div>
</div>
</body>