-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·2018 lines (1970 loc) · 169 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
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en" class="no-js">
<head>
<!-- meta data -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name=viewport content="width=device-width, initial-scale=1">
<!-- title and favicon -->
<title>B. Marcote</title>
<!--necessary stylesheets -->
<link type="text/css" rel="stylesheet" href="assets/css/bootstrap.min.css">
<link type="text/css" rel="stylesheet" href="assets/css/font-awesome.min.css">
<link type="text/css" rel="stylesheet" href="assets/css/ionicons.min.css">
<link type="text/css" rel="stylesheet" href="assets/css/magnific-popup.css">
<link type="text/css" rel="stylesheet" href="assets/css/owl.carousel.css">
<link type="text/css" rel="stylesheet" href="assets/css/owl.theme.css">
<link type="text/css" rel="stylesheet" href="assets/css/style.css">
<link type="text/css" rel="stylesheet" href="assets/css/justifiedGallery.min.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!--[if IE]>
<style>
.flip-container:hover .back,
.flip-container.hover .back {
backface-visibility: visible !important;
}
</style>
<![endif]-->
</head>
<body>
<!-- 1 ) Preloader -->
<div id="preloader">
<div class="loader">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
<!-- home-page -->
<div class="home-page">
<!-- 2 ) Intro Content -->
<div class="introduction text_logo_intro">
<div class="intro-content">
<h1 style="margin-bottom:10pt;">
Benito
</h1>
<span>Marcote</span><span class="number"></span>
<p class="slogan-text text-capitalize">radio astronomer</p>
<!--<div class="social-media">
<a href="#" class="fa fa-facebook" data-toggle="tooltip" title="Facebook"></a>
<a href="#" class="fa fa-twitter" data-toggle="tooltip" title="Twitter"></a>
<a href="#" class="fa fa-plus" data-toggle="tooltip" title="Google+"></a>
<a href="#" class="fa fa-linkedin" data-toggle="tooltip" title="Linkedin"></a>
<a href="#" class="fa fa-behance" data-toggle="tooltip" title="Behance"></a>
<a href="#" class="fa fa-flickr" data-toggle="tooltip" title="Flicker"></a>
<a href="#" class="fa fa-instagram" data-toggle="tooltip" title="Instagram"></a>
</div>-->
</div>
</div>
<!-- 3 ) Navigation Menu -->
<div class="four_nav_item menu">
<div data-url_target="contact" class="contact-btn menu_button">
<!-- <img alt="" src="assets/img/contact.jpg"> -->
<div class="mask" style="background-image: url('assets/img/contact.jpg')"></div>
<div class="heading">
<i class="ion-ios-people-outline hidden-xs"></i>
<h2>About Me</h2>
</div>
</div>
<!-- Single Navigation Menu Button -->
<div data-url_target="service" class="service-btn menu_button">
<!-- <img alt="" src="assets/img/service.jpg"> -->
<div class="mask" style="background-image: url('assets/img/service.jpg')"></div>
<div class="heading">
<i class="ion-ios-lightbulb-outline hidden-xs"></i>
<h2>Research</h2>
</div>
</div>
<!-- Single Navigation Menu Button [ END ] -->
<div data-url_target="portfolio" class="portfolio-btn menu_button">
<!-- <img alt="" src="assets/img/portfolio.jpg"> -->
<div class="mask" style="background-image: url('assets/img/portfolio.jpg')"></div>
<div class="heading">
<i class="ion-ios-briefcase-outline hidden-xs"></i>
<h2>Publications</h2>
</div>
</div>
<!-- Single Navigation Menu Button [ END ] -->
<div data-url_target="gallery" class="gallery-btn menu_button">
<!-- <img alt="" src="assets/img/gallery.jpg"> -->
<div class="mask" style="background-image: url('assets/img/gallery.jpg')"></div>
<div class="heading">
<i class="ion-ios-camera-outline hidden-xs"></i>
<h2>Gallery</h2>
</div>
</div>
</div>
</div>
<!-- 4 ) Close Button -->
<div class="close-btn"></div>
<!-- 5 ) Profile Page -->
<div id="contact" class="contact-page container-fluid page">
<div class="row">
<!--( a ) Profile Page Fixed Image Portion -->
<div class="image-container col-md-3 hidden-xs hidden-sm">
<div class="mask">
</div>
<div class="main-heading">
<h1>About me</h1>
</div>
</div>
<!--( b ) Profile Page Content -->
<div class="content-container col-md-9 col-sm-12" style="text-align:justify;">
<div class="clearfix">
<h2 class="small-heading">Benito Marcote</h2>
<div class="row">
<div class="col-lg-10 col-lg-offset-1 col-xs-10 col-xs-offset-1">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="contact-info">
<p>
Born in Santander (Spain), I studied Physics at the <a href="http://www.unican.es">University of Cantabria</a>. I got my PhD
in Physics at the <a href="http://www.ub.edu/web/ub/en/index.html">University of Barcelona</a> in 2015 on the
<a href="https://arxiv.org/abs/1603.09276" target="_blank">Non-thermal emission from high-energy binaries through
interferometric radio observations</a>. Nowadays I am Support Scientist of the European VLBI Network (EVN) at the Joint Institute
for VLBI ERIC (<a href="http://jive.eu">JIVE</a>).<br />
</p>
<p>
My research is mainly focused on the study of different high-energy transient sources through their radio emission.
Although I cover a variety of different fields, most of the times I am studying Galactic binary systems (such as gamma-ray
binaries, high-mass X-ray binaries or colliding wind binaries) or Fast Radio Bursts. However, I also work on the follow up
of Gravitational Wave mergers at radio frequencies. And as secondary fields I have also worked on gamma-ray bursts, continuum
emission from pulsars, or active galactic nuclei.<br>
I typically work with very long baseline interferometric (VLBI) radio observations from the European VLBI Network
(<a href="http://www.evlbi.org">EVN</a>) or the Australian Long Baseline Array
(<a href="http://www.atnf.csiro.au/vlbi/">LBA</a>). But
I also work with data at low radio frequencies (100 MHz–1 GHz) taken from the Giant Metrewave Radio Telescope
(<a href="http://gmrt.ncra.tifr.res.in">GMRT</a>) or the Low Frequency Array (<a href="http://www.lofar.org">LOFAR</a>).
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="clearfix">
<h2 class="small-heading">Curriculum Vitae</h2>
<div class="row">
<div class="col-lg-10 col-lg-offset-1 col-xs-10 col-xs-offset-1">
<h4 class="small-heading">Education</h4>
<div class="row">
<div class="col-md-12 col-sm-12">
<b>PhD in Physics</b> <span style="float: right;">(2011–2015)</span><br />
University of Barcelona<br />
<b>Master in Astrophysics, Particle Physics and Cosmology</b> <span style="float: right;">(2011–2012)</span><br />
University of Barcelona<br />
<b>Physics Degree</b> <span style="float: right;">(2006–2011)</span><br />
University of Cantabria<br /><br />
</div>
</div>
<h4 class="small-heading">Experience</h4>
<div class="row">
<div class="col-md-12 col-sm-12">
<b>Permanent Support Scientist of the European VLBI Network (EVN)</b> <span style="float: right;">(2019–current)</span><br />
Joint Institute for VLBI ERIC (JIVE), Dwingeloo (The Netherlands).<br />
<b>Support Scientist of the European VLBI Network (EVN)</b> <span style="float: right;">(2016–2019)</span><br />
Joint Institute for VLBI ERIC (JIVE), Dwingeloo (The Netherlands).<br />
<b>Predoctoral fellowship</b> <span style="float: right;">(2011–2015)</span><br />
Formación de Personal Investigador (FPI), fellowship from the Ministry of Economy and Competitiveness
from Spain (MINECO) at University of Barcelona (Spain).<br />
<b>JAE Intro fellowship</b> <span style="float: right;">(2010)</span><br />
Introduction to research fellowship from the Spanish National Research Council (CSIC) at University of Valencia (Spain).
Working on Quantum Mechanics and General Relativity in the Early Universe.<br />
<b>Introduction to research fellowship</b> <span style="float: right;">(2009–2010)</span><br />
University of Cantabria, Santander (Spain).
Working on the X-ray emission from nearby galaxies<br />
<br /><br />
</div>
</div>
<h4 class="small-heading">Skills</h4>
<div class="row">
<div class="col-md-12 col-sm-12">
<b>Radio</b>: EVN, GMRT, LOFAR, VLA, WSRT, LBA, VLBA<br />
<b>X-rays</b>: <I>XMM-Newton, Chandra</I><br />
<b>TeV</b>: MAGIC<br />
<b>Sources</b>: Gamma-Ray Binaries, Fast Radio Bursts, Gravitational Wave mergers, Colliding-Wind Binaries, High Mass X-Ray Binaries, Active Galactic Nuclei<br />
<b>OSs</b>: GNU/Linux, Mac OS X<br />
<b>Languages</b>: Python, C, Obj C, Ruby, Java, Bash, HTML, CSS, Octave, Ada, Fortran<br />
<b>Packages</b>: CASA, AIPS, ParselTongue, Difmap, Sched, Xspec, QDP, Iraf, Maple<br />
<b>Typesetting</b>: LaTeX, LibreOffice, iWork<br /><br />
</div>
<div class="col-md-12 col-sm-12">
Full version of the CV <a href="docs/cv-marcote.pdf">here</a>.<br /><br />
</div>
</div>
</div>
</div>
</div>
<div class="clearfix">
<h2 class="small-heading">Contact</h2>
<div class="row">
<div class="col-md-10 col-md-offset-1 col-xs-10 col-xs-offset-1">
<div class="contact-info">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="data">
<i class="fa fa-map-marker"></i>
<span>
Joint Institute for VLBI ERIC (JIVE)<br>
Oude Hoogeveensedijk 4<br>Dwingeloo PD 7991<br>The Netherlands.<br>
<a href="http://www.openstreetmap.org/#map=16/52.8128/6.3961">See map in OpenStreetMap</a><br>
</span>
</div>
<div class="data">
<i class="fa fa-envelope"></i>
<span>
</span>
</div>
<div class="data">
<i class="fa fa-phone"></i>
<span>
+31 (0) 521 59 65 08
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer clearfix">
<div class="row">
<div class="col-md-10 col-md-offset-1 col-xs-10 col-xs-offset-1">
<div class="row">
<div class="col-md-6 col-sm-12 col-xs-12">
<p class="copyright">
Copyleft 2018. Benito Marcote
</p>
</div>
<div class="col-md-6 col-sm-12 col-xs-12">
<p class="author">
Theme by <a href="https://themewagon.com/" target="_blank">ThemeWagon</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 6 ) Service Page -->
<div id="service" class="service-page container-fluid page">
<div class="row">
<!--( a ) Service Page Fixed Image Portion -->
<div class="image-container col-md-3 hidden-xs hidden-sm">
<div class="mask">
</div>
<div class="main-heading">
<h1>Research</h1>
</div>
</div>
<!--( b ) Service Page Content -->
<div class="content-container col-md-9 col-sm-12" style="text-align:justify;">
<!--( A ) Services -->
<div class="clearfix">
<h2 class="small-heading">My research</h2>
<div class="row">
<div class="col-lg-10 col-lg-offset-1 col-xs-10 col-xs-offset-1">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="about-me-desc">
<p>
My research is focused on the study of the continuum 0.1–15 GHz radio emission of different high-energy transient sources.
On one hand, I study different kinds of Galactic binary systems, such as gamma-ray binaries, high-mass X-ray binaries or colliding wind binaries.
On the other hand, I am also focused on the study of Fast Radio Bursts through interferometric observations, and the follow up of Gravitational Wave mergers to explore
the evolution of their radio afterglows.
As side topics, I have done a few projects on gamma-ray bursts, active galactic nuclei, or continuum emission from pulsars.<br>
I work with very long baseline interferometric (VLBI) radio observations from the European VLBI Network
(<a href="http://www.evlbi.org">EVN</a>) or the Australian Long Baseline Array
(<a href="http://www.atnf.csiro.au/vlbi/">LBA</a>).
And I also work with data from more compact interferometers: at low radio frequencies (100 MHz–1 GHz) taken from the Giant Metrewave Radio Telescope
(<a href="http://gmrt.ncra.tifr.res.in">GMRT</a>) or the Low Frequency Array (<a href="http://www.lofar.org">LOFAR</a>); and at high frequencies (1–15 GHz) with the Very Large Array (<a href="https://public.nrao.edu/telescopes/vla">VLA</a>) or the former Westerbork Synthesis Radio Telescope (<a href="https://www.astron.nl/radio-observatory/public/public-0">WSRT</a>).
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--<div class="clearfix">
<h2 class="small-heading">Radio astronomy</h2>
<div class="row">
<div class="col-lg-10 col-lg-offset-1 col-xs-10 col-xs-offset-1">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="about-me-desc">
<p>
<img src="images/electromagnetic-spectrum.jpg" alt="Electromagnetic Spectrum" width="100%"><br />
Our eyes can only see a small part of the electromagnetic spectrum, or <em>light</em>. Only that part located roughly
with wavelengths of 400–800 nm (or frequencies of terahertz, THz).
</p>
</div>
</div>
</div>
</div>
</div>
</div>-->
<div class="clearfix">
<h2 class="small-heading">High-energy binary systems</h2>
<div class="row">
<div class="col-lg-10 col-lg-offset-1 col-xs-10 col-xs-offset-1">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="about-me-desc">
<h4>Colliding Wind Binaries</h4>
<p>
Most of the stars are located in multiple systems (i.e. two or more stars orbiting between them). A tiny fraction of these
systems are composed of, at least, one massive star and another object in a very close orbit. When the second object is
either another massive star or a compact object (such as a black hole or a neutron star), a strong interaction between both
objects is observed.<br />
In the case of systems composed of two massive stars in a close orbit, the winds of the two stars typically collide producing
a powerful region of shocked material (we call these systems as <I>Colliding Wind Binaries</I>). This shock acts as a particle
accelerator ejecting particles up to relativistic energies.
This collision region can be observed and studied with very high resolution radio observations, although it radiates from radio
to even gamma-rays in the most powerful cases.
</p>
<h4>High-Mass X-Ray Binaries</h4>
<p>
Some binary systems are composed of a massive star and a compact object (which can be either a black hole or a neutron star).
In these systems the wind of the massive star falls into the compact object, creating an accretion disk around it. This disk
warms the material to high temperatures, producing an intense emission in X-rays. The closest material to the compact object
can be accelerated and ejected out of the system, typically through the jets that are generated from the poles of the compact
object. This jets are generally relativistic, expelling material that strongly radiate radiowaves.
</p>
<h4>Gamma-Ray Binaries</h4>
<p>
There is a kind of binaries involving a massive star and a compact object which is even much more energetic than the previous one.
In this case it is thought that the compact object is a neutron star in all cases. Though the scenario is not completely understood
yet, there are clues that the strong interaction between the neutron star and the massive star avoids the accretion (as seen in X-ray
Binaries), but produces a strong collision between both winds (as seen in Colliding Wind Binaries). In this case the collision is
produced between the powerful wind of the massive star (usually O or B spectral type stars) and the relativistic wind of the neutron
star.
The exciting fact of these systems is that most of the energy is radiated as gamma-rays, requiring thus extreme energetic environments.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="clearfix">
<h2 class="small-heading">Transient sources</h2>
<div class="row">
<div class="col-lg-10 col-lg-offset-1 col-xs-10 col-xs-offset-1">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="about-me-desc">
<h4>Fast Radio Bursts</h4>
<p>
Fast Radio Bursts (FRBs) are objects that produce a single and bright pulse that only lasts milliseconds. The origin of these pulses remains
unknown, mainly due to the limited resolution of the instruments (all of them detected with single-dish radio observations).
The first FRB was discovered in 2007 by Lorimer and collaborators, and thus far 18 FRBs have been discovered. The dispersion measures observed
in the pulses point to an extragalactic origin, although their origin remains unknown.
</p>
<h4>Gravitational Wave events</h4>
<p>
When two neutron stars or two black holes merge, a fraction of the energy in the system is liberated and emitted as gravitational waves, which
can be detected by the current instruments such as LIGO or VIRGO. In the case of neutron star mergers, a significant electromagnetic emission
(light) is expected to arise from the event. The first of these events was discovered in 2017, and a follow up involving thousands astronomers
determined the properties of such event using observations from radio wavelengths to gamma rays. I am focused on the study of the radio afterglow
(produced after the merger) on milliarcsecond scales through VLBI observations.<br /><br /><br /><br /><br /><br />
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer clearfix">
<div class="row">
<div class="col-md-10 col-md-offset-1 col-xs-10 col-xs-offset-1">
<div class="row">
<div class="col-md-6 col-sm-12 col-xs-12">
<p class="copyright">Copyleft 2018. <a href="#">Benito Marcote</a>
</p>
</div>
<div class="col-md-6 col-sm-12 col-xs-12">
<p class="author">
Theme by <a href="https://themewagon.com/" target="_blank">ThemeWagon</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 7 ) Portfolio Page -->
<div id="portfolio" class="portfolio-page container-fluid page">
<div class="row">
<!--( a ) Portfolio Page Fixed Image Portion -->
<div class="image-container col-md-3 hidden-xs hidden-sm">
<div class="mask">
</div>
<div class="main-heading">
<h1>Publications</h1>
</div>
</div>
<!--( b ) Portfolio Page Content -->
<div class="content-container col-md-9 col-sm-12">
<!--( A ) Portfolio -->
<div class="portfolio clearfix full-height">
<h2 class="small-heading">Publications</h2>
<div class="row">
<div class="col-md-10 col-md-offset-1 col-xs-10 col-xs-offset-1">
<div >
To see an updated list of all my references, see <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=Marcote%2C+B.&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">the ADS</a>, where you will also see the articles from the <a href="http://wwwmagic.mppmu.mpg.de/">MAGIC Collaboration</a> (not listed here).
</div>
<div class="project-container">
<div class="row">
<div class="project-controls">
<button class="filter" data-filter="all">All</button>
<button class="filter" data-filter=".paper">Papers</button>
<button class="filter" data-filter=".thesis">Theses</button>
<button class="filter" data-filter=".talk">Talks</button>
<button class="filter" data-filter=".poster">Posters</button>
<button class="filter" data-filter=".atel">ATels/GCNs</button>
<button class="filter" data-filter=".text">Texts</button>
</div>
<div id="projects" class="projet-items clearfix">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">Constraints on the persistent radio source associated with FRB 20190520B using the European VLBI Network</span>
</p>
<ul>
<li>S. Bhandari, B. Marcote, N. Sridhar, T. Eftekhari, J. W. T. Hessels, D. M. Hewitt, F. Kirsten, O. S. Ould-Boukattine, Z. Paragi, M. P. Snelders</li>
<li>Submitted</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2023arXiv230812801B/abstract" class="btn">see Paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">Mapping Obscured Star Formation in the Host Galaxy of FRB~20201124A</span>
</p>
<ul>
<li>Y. Dong, T. Eftekhari, W. Fong, A. T. Deller, A. G. Mannings, S. Simha, N. Sridhar, M. Rafelski, A. C. Gordon, S. Bhandari, C. K. Day, K. E. Heintz, J. W. T. Hessels, J. Leja,C. W. James, C. D. Kilpatrick, E. K. Mahony, B. Marcote, B. Margalit, K. Nimmo, J. X. Prochaska, A. Rouco Escorial, S. D. Ryder, G. Schroeder, R. M. Shannon, N. Tejos</li>
<li>Submitted</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2023arXiv230706995D/abstract" class="btn">see Paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">Panning for gold, but finding helium: Discovery of the ultra-stripped supernova SN 2019wxt from gravitational-wave follow-up observations</span>
</p>
<ul>
<li>I. Agudo, L. Amati, T. An, F. E. Bauer, S. Benetti, M. G. Bernardini, R. Beswick, K. Bhirombhakdi, T. de Boer, M. Branchesi, S. J. Brennan, E. Brocato, M. D. Caballero-García, E. Cappellaro, N. Castro Rodríguez, A. J. Castro-Tirado, K. C. Chambers, E. Chassande-Mottin, S. Chaty, T. -W. Chen, A. Coleiro, S. Covino, F. D'Ammando, P. D'Avanzo, V. D'Elia, A. Fiore, A. Flörs, M. Fraser, S. Frey, C. Frohmaier, M. Fulton, L. Galbany, C. Gall, H. Gao, J. García-Rojas, G. Ghirlanda, S. Giarratana, J. H. Gillanders, M. Giroletti, B. P. Gompertz, M. Gromadzki, K. E. Heintz, J. Hjorth, Y. -D. Hu, M. E. Huber, A. Inkenhaag, L. Izzo, Z. P. Jin, P. G. Jonker, D. A. Kann, E. C. Kool, R. Kotak, G. Leloudas, A. J. Levan, C. -C. Lin, J. D. Lyman, E. A. Magnier, K. Maguire, I. Mandel, B. Marcote, D. Mata Sánchez, S. Mattila, A. Melandri, M. J. Michałowski, J. Moldon, M. Nicholl, A. Nicuesa Guelbenzu, S. R. Oates, F. Onori, M. Orienti, R. Paladino, Z. Paragi, M. Perez-Torres, E. Pian, G. Pignata, S. Piranomonte, J. Quirola-Vásquez, F. Ragosta, A. Rau, S. Ronchini, A. Rossi, R. Sánchez-Ramírez, O. S. Salafia, S. Schulze, S. J. Smartt, K. W. Smith, J. Sollerman, S. Srivastav, R. L. C. Starling, D. Steeghs, H. F. Stevance, N. R. Tanvir, V. Testa, M. A. P. Torres, A. Valeev, S. D. Vergani, D. Vescovi, R. Wainscost, D. Watson, K. Wiersema, Ł. Wyrzykowski, J. Yang, S. Yang, D. R. Young</li>
<li>Astronomy & Astrophysics, 675, A201, 2023</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2023A%26A...675A.201A/abstract" class="btn">see Paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">Evidence for non-thermal X-ray emission from the double Wolf-Rayet colliding-wind binary Apep</span>
</p>
<ul>
<li>S. del Palacio, F. García, M. De Becker, D. Altamirano, V. Bosch-Ramon, P. Benaglia, B. Marcote, G. E. Romero</li>
<li>Astronomy & Astrophysics, 672, A109</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2023A%26A...672A.109D/abstract" class="btn">see Paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">A burst storm from the repeating FRB 20200120E in an M81 globular cluster</span>
</p>
<ul>
<li>K. Nimmo, J. W. T. Hessels, M. P. Snelders, R. Karuppusamy, D. M. Hewitt, F. Kirsten, B. Marcote, U. Bach, A. Bansod, E. D. Barr, J. Behrend, V. Bezrukovs, S. Buttaccio, R. Feiler, M. P. Gawronski, M. Lindqvist, A.Orbidans, W. Puchalska, N. Wang, T. Winchen, P. Wolak, J. Wu, J. Yuan</li>
<li>MNRAS, 520, 2, 2281</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2023MNRAS.520.2281N/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix atel">
<div class="project price-box">
<p class="pricing-catagory-name">GCN Circular</p>
<p>
<span class="price">GRB 221009A: radio afterglow detection with the EVN</span>
</p>
<ul>
<li>S. Giarratana, M. Giroletti, T. An, G. Anderson, P. Atri, J. S. Bright, R. Fender, G. Ghirlanda, J. K. Leung, B. Marcote, M. Pérez-Torres, L. Rhodes, O. S. Salafia, J. Yang</li>
<li>GCN 33243</li>
</ul>
<a href="https://gcn.gsfc.nasa.gov/gcn3/33243.gcn3" class="btn">see GCN</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix atel">
<div class="project price-box">
<p class="pricing-catagory-name">GCN Circular</p>
<p>
<span class="price">High-precision position of the compact radio counterpart to GRB221009A</span>
</p>
<ul>
<li>P. Atri, T. An, M. Giroletti, Y.-K. Zhang, J. Bright, W. Farah, R. Fender, J.-J. Geng, G. Ghirlanda, S. Giarratana, A. van der Horst, Y. Li, Y. Liu, B. Marcote, J. C. A. Miller-Jones, S. E. Motta, M. Perez-Torres, L. Rhodes, O. S. Salafia, A. Wang, X.-F. Wu, Z. Xu, J. Yang</li>
<li>GCN 32907</li>
</ul>
<a href="https://gcn.gsfc.nasa.gov/gcn/gcn3/32907.gcn3" class="btn">see GCN</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix atel">
<div class="project price-box">
<p class="pricing-catagory-name">Astronomer's Telegram</p>
<p>
<span class="price">PRECISE detects high activity from FRB~20220912A at 1.4~GHz but no bursts at 5~GHz using the Effelsberg telescope</span>
</p>
<ul>
<li>F. Kirsten, J. W. T. Hessels, D. M. Hewitt, O. S. Ould-Boukattine, M. P. Snelders, A. Gopinath, K. Nimmo, R. Karuppusamy, W. Herrmann, J. Yang, M. Gawronski, R. Blaauw, S. T. Buttaccio, G. Maccaferri, U. Bach), R. Feiler, J. Bray, D. Williams, N. Wrigley, B. Marcote, A. Keimpema, Z. Paragi, M. Burgay, A. Corongiu, M. Giroletti, M. Kramer, M. Pilia, L. Spitler, G. Surcis, M. Trudu, J. Yuan, N. Wang, V. Bezrukovs</li>
<li>The Astronomer's Telegram, #15727</li>
</ul>
<a href="http://www.astronomerstelegram.org/?read=15727" class="btn">see ATel</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">CASA on the fringe -- Development of VLBI processing capabilities for CASA</span>
</p>
<ul>
<li>I. M. van Bemmel, M. Kettenis, D. Small, M. Janssen, G. A. Moellenbrock, D. Petry, C. Goddi, J. D. Linford, K .L. J. Rygl, E. Liuzzo, \textbf{B. Marcote}, O. S. Bayandina, N. Schweigart, M. Verkouter, A. Keimpema, A. Szomoru, H. Jan van Langevelde</li>
<li>PASP, 134, 114502, 2022</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2022PASP..134k4502V/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">Astrometry of variable compact radio sources: A search for Galactic black hole X-ray binaries</span>
</p>
<ul>
<li>P. Atri, J. C. A. Miller-Jones, A. Bahramian, R. M. Plotkin, T. J. Maccarone, \textbf{B. Marcote}, C. O. Heinke, G. R. Sivakoff, A. Ginsburg, L. Chomiuk</li>
<li>MNRAS, Vol. 517, p. 5810, 2022</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2022MNRAS.517.5810A/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">Radio interferometric imaging of RS Oph bipolar ejecta for the 2021 nova outburs</span>
</p>
<ul>
<li>U. Munari, M. Giroletti, B. Marcote, T. O'Brien, P. Veres, J. Yang, D. R. A. Williams, P. Woudt</li>
<li>Astronomy & Astrophysics, 2022, 666, L6</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2022arXiv220912794M/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">VLBI observations of GRB 201015A, a relatively faint GRB with a hint of Very High Energy gamma-ray emission</span>
</p>
<ul>
<li>S. Giarratana, L. Rhodes, B. Marcote, R. Fender, G. Ghirlanda, M. Giroletti, L. Nava, J. M. Paredes, M. E. Ravasio, M. Ribó</li>
<li>Astronomy & Astrophysics, 2022, 664, A36</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2022A%26A...664A..36G" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">MultiWavelength View of the Close-by GRB 190829A Sheds Light on Gamma-Ray Burst Physics</span>
</p>
<ul>
<li>O. S. Salafia, M. E. Ravasio, J. Yang, T. An, M. Orienti, G. Ghirlanda, L. Nava, M. Giroletti, P. Mohan, R. Spinelli, Y. Zhang, B. Marcote, G. Cimó, X. Wu, Z. Lii</li>
<li>The Astrophysical Journal, 2022, 931, L19</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2022ApJ...931L..19S/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">FRB~121102: drastic changes in the burst polarization contrasts with the stability of the persistent emission</span>
</p>
<ul>
<li>A. Plavin, Z. Paragi, B. Marcote, A. Keimpema, J. W. T. Hessels, K. Nimmo, H. K. Vedantham, L. G. Spitler</li>
<li>MNRAS, Vol. 511, 3, p. 6033, 2022</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2022MNRAS.511.6033P/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">Milliarcsecond localisation of the repeating FRB 20201124A</span>
</p>
<ul>
<li>K. Nimmo, D. M. Hewitt, J. W. T. Hessels, F. Kirsten, B. Marcote, U. Bach, R. Blaauw, M. Burgay, A. Corongiu, R. Feiler, M. P. Gawro'nski, M. Giroletti, R. Karuppusamy, A. Keimpema, M. A. Kharinov, M. Lindqvist, G. Maccaferri, A. Melnikov, A. Mikhailov, O. S. Ould-Boukattine, Z. Paragi, M. Pilia, A. Possenti, M. P. Snelders, G. Surcis, M. Trudu, T. Venturi, W. Vlemmings, N. Wang, J. Yang, J. Yuan</li>
<li>The Astrophysical Journal Letters, 927, L3, 2022</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2021arXiv211101600N/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix atel">
<div class="project price-box">
<p class="pricing-catagory-name">Astronomer's Telegram</p>
<p>
<span class="price">e-EVN observations of V1674 Her</span>
</p>
<ul>
<li>Z. Paragi, U. Munari, J. Yang, P. Veres, B. Marcote, M. Giroletti</li>
<li>The Astronomer's Telegram, #14758</li>
</ul>
<a href="http://www.astronomerstelegram.org/?read=14758" class="btn">see ATel</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">A repeating fast radio burst source in a globular cluster</span>
</p>
<ul>
<li>F. Kirsten, B. Marcote, K. Nimmo, J. W. T. Hessels, M. Bhardwaj, S. P. Tendulkar, A. Keimpema, J. Yang, M. P. Snelders, P. Scholz, A. B. Pearlman, C. J. Law, W. M. Peters, M. Giroletti, D. M. Hewitt, U. Bach, V. Bezukovs, M. Burgay, S. T. Buttaccio, J. E. Conway, A. Corongiu, R. Feiler, O. Forssén, M. P. Gawronski, R. Karuppusamy, M. A. Kharinov, M. Lindqvist, G. Maccaferri, A. Melnikov, O. S. Ould-Boukattine, Z. Paragi, A. Possenti, G. Surcis, N. Wang, J. Yuan, K. Aggarwal, R. Anna-Thomas, G. C. Bower, R. Blaauw, S. Burke-Spolaor, T. Cassanelli, T. E. Clarke, E. Fonseca, B. M. Gaensler, A. Gopinath, V. M. Kaspi, N. Kassim, T. J. W. Lazio, C. Leung, D. Li, H. H. Lin, K. W. Masui, R. Mckinven, D. Michilli, A. Mikhailov, C. Ng, A. Orbidans, U. L. Pen, E. Petroff, M. Rahman, S. M. Ransom, K. Shin, K. M. Smith, I. H. Stairs, W. Vlemmings</li>
<li>Nature, Vol. 602, Issue 7898, p. 585, 2022</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2022Natur.602..585K/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">Burst timescales and luminosities as links between young pulsars and fast radio bursts</span>
</p>
<ul>
<li>K. Nimmo, J. W. T. Hessels, F. Kirsten, A. Keimpema, J. M. Cordes, M. P. Snelders, D. M. Hewitt, R. Karuppusamy, A. M. Archibald, V. Bezukovs, M. Bhardwaj, R. Blaauw, S. T. Buttaccio, T. Cassanelli, J. E. Conway, A. Corongiu, R. Feiler, E. Fonseca, O. Forssén, M. M. Giroletti Gawronski, M. A. Kharinov, C. Leung, M. Lindqvist, G. Maccaferri, B. Marcote, K. W. Masui, R. Mckinven, A. Melnikov, D. Michilli, A. Mikhailov, C. Ng, A. Orbidans, O. S. Ould-Boukattine, Z. Paragi, A. B. Pearlman, E. Petroff, M. Rahman, P. Scholz, K. Shin, K. M. Smith, I. H. Stairs, G. Surcis, S. P. Tendulkar, W. Vlemmings, N. Wang, J. Yang, J. Yuan</li>
<li>Nature Astronomy, Vol. 6, p. 393, 2022</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2022NatAs...6..393N/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">Radio modelling of the brightest and most luminous non-thermal colliding-wind binary Apep</span>
</p>
<ul>
<li>S. Bloot, J. R. Callingham, B. Marcote</li>
<li>MNRAS, Vol. 509, p. 475, 2022</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2022MNRAS.509..475B/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix atel">
<div class="project price-box">
<p class="pricing-catagory-name">Astronomer's Telegram</p>
<p>
<span class="price">Two bright bursts from FRB 20201124A with the Onsala 25-m telescope at 1.4 GHz, with no simultaneous emission detected at 330 MHz with Westerbork 25-m</span>
</p>
<ul>
<li>F. Kirsten, O. S. Ould-Boukattine, K. Nimmo, J. W. T. Hessels, J. Yang, M. Gawronski, M. P. Snelders, R. Feiler, B. Marcote, O. Forssén</li>
<li>The Astronomer's Telegram, #14605</li>
</ul>
<a href="http://www.astronomerstelegram.org/?read=14605" class="btn">see ATel</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix atel">
<div class="project price-box">
<p class="pricing-catagory-name">Astronomer's Telegram</p>
<p>
<span class="price">VLBI localization of FRB 20201124A and absence of persistent emission on milliarcsecond scales</span>
</p>
<ul>
<li>B. Marcote, F. Kirsten, J. W. T. Hessels, K. Nimmo, A. Keimpema, Z. Paragi, U. Bach, M. Burgay, A. Corongiu, R. Feiler, O. Forssén, M. Gawronski, M. Giroletti, A. Gopinath, D. M. Hewitt, R. Karuppusamy, M. Kramer, O. S. Ould-Boukattine, M. Pilia, M. P. Snelders, L. Spitler, G. Surcis, M. Trudu, J. Yang</li>
<li>The Astronomer's Telegram, #14603</li>
</ul>
<a href="http://www.astronomerstelegram.org/?read=14603" class="btn">see ATel</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">Highly polarised microstructure from the repeating FRB 20180916B</span>
</p>
<ul>
<li>K. Nimmo, J. W. T. Hessels, A. Keimpema, A. M. Archibald, J. M. Cordes, R. Karuppusamy, F. Kirsten, D. Z. Li, B. Marcote, Z. Paragi</li>
<li>Nature Astronomy, Vol. 5, p. 594, 2021</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2021NatAs...5..594N/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">Cygnus X-1 contains a 21-solar mass black hole -- Implications for massive star winds</span>
</p>
<ul>
<li>J. C. A. Miller-Jones, A. Bahramian, J. A. Orosz, I. Mandel, L. Gou, T. J. Maccarone, C. J. Neijssel, X. Zhao, J Ziólkowski, M. J. Reid, P. Uttley, X. Zheng, D.-Y. Byun, R. Dodson, V. Grinberg, T. Jung, J.-S. Kim, B. Marcote, S. Markoff, M. J. Rioja, A. P. Rushton, D. M. Russell, G. R. Sivakoff, A. J. Tetarenko, V. Tudose, J. Wilms</li>
<li>Science, Vol. 371, 6533, p. 1046, 2021</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2021Sci...371.1046M/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">LOFAR Detection of 110-188 MHz Emission and Frequency-Dependent Activity from FRB 20180916B</span>
</p>
<ul>
<li>Z. Pleunis, D. Michilli, C. G. Bassa, J. W. T. Hessels, A. Naidu, B. C. Andersen, P. Chawla, E. Fonseca, A. Gopinath, V. M. Kaspi, V. I. Kondratiev, D. Z. Li, M. Bhardwaj, P. J. Boyle, C. Brar, T. Cassanelli, Y. Gupta, A. Josephy, R. Karuppusamy, F. Kirsten, A. Keimpema, C. Leung, B. Marcote, K. Masui, R. Mckinven, B. W. Meyers, C. Ng, K. Nimmo, Z. Paragi, M. Rahman, P. Scholz, K. Shin, K. M. Smith, I. H. Stairs, S. P. Tendulkar</li>
<li>The Astrophysical Journal Letters, Vol. 911, pg. L3, 2021</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2021ApJ...911L...3P/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">The 60-pc Environment of FRB 20180916B</span>
</p>
<ul>
<li>S. P. Tendulkar, A. Gil de Paz, A. Y. Kirichenko, J. W. T. Hessels, M. Bhardwaj, F. Ávila, C. Bassa, P. Chawla, E. Fonseca, V. M. Kaspi, A. Keimpema, F. Kirsten, T. J.W. Lazio, B. Marcote, K. Masui, K. Nimmo, Z. Paragi, M. Rahman, D. Reverte Payá, P. Scholz, I. Stairs</li>
<li>The Astrophysical Journal Letters, Vol. 908, pg. L12, 2021</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2021ApJ...908L..12T/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">AU-scale radio imaging of the wind collision region in the brightest and most luminous non-thermal colliding wind binary Apep</span>
</p>
<ul>
<li>B. Marcote, J. R. Callingham, M. De Becker, P. G. Edwards, Y. Han, R. Schulz, J. Stevens, P. G. Tuthill</li>
<li>MNRAS, Vol. 501, 2, p. 2478, 2021</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2021MNRAS.501.2478M/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix atel">
<div class="project price-box">
<p class="pricing-catagory-name">GCN Circular</p>
<p>
<span class="price">GRB 201015A: 5-GHz radio afterglow detection with the EVN</span>
</p>
<ul>
<li>B. Marcote, M Ribó, J. M. Paredes, M. Giroletti, S. Giarratana, G. Ghirlanda</li>
<li>GCN 29028</li>
</ul>
<a href="https://gcn.gsfc.nasa.gov/gcn3/29028.gcn3" class="btn">see GCN</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix atel">
<div class="project price-box">
<p class="pricing-catagory-name">GCN Circular</p>
<p>
<span class="price">GRB 201015A radio afterglow with e-MERLIN</span>
</p>
<ul>
<li>S. Giarratana, M. Giroletti, B. Marcote, G. Ghirlanda, M Ribó, J. M. Paredes</li>
<li>GCN 28939</li>
</ul>
<a href="https://gcn.gsfc.nasa.gov/gcn3/28939.gcn3" class="btn">see GCN</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix atel">
<div class="project price-box">
<p class="pricing-catagory-name">Astronomer's Telegram</p>
<p>
<span class="price">VLASS constraints on the radio afterglow of the GRB afterglow/hypernova candidate SRGe J195057.5+672122</span>
</p>
<ul>
<li>B. Marcote, M. Giroletti, G. Migliori, S. Giarratana</li>
<li>The Astronomer's Telegram, #14059</li>
</ul>
<a href="http://www.astronomerstelegram.org/?read=14059" class="btn">see ATel</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">The extreme colliding-wind system Apep: resolved imagery of the central binary and dust plume in the infrared</span>
</p>
<ul>
<li>Y. Han, P. G. Tuthill, R. M. Lau, A. Soulain, J. R. Callingham, P. M. Williams, P. A. Crowther, B. J. S. Pope, B. Marcote
<li>MNRAS, Vol. 498, 4, p. 5604, 2020</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2020MNRAS.498.5604H/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">Simultaneous X-Ray and Radio Observations of the Repeating Fast Radio Burst FRB 180916.J0158+65</span>
</p>
<ul>
<li>P. Scholz, A. Cook, M. Cruces, J. W. T. Hessels, V. M. Kaspi, W. A. Majid, A. Naidu, A. B. Pearlman, L. G. Spitler, K. M. Bandura, M. Bhardwaj, T. Cassanelli, P. Chawla, B. M. Gaensler, D. C. Good, A. Josephy, R. Karuppusamy, A. Keimpema, A. Yu. Kirichenko, J. F. Kocz Kirsten, C. Leung, B. Marcote, K. Masui, J. Mena-Parra, M. Merryfield, D. Michilli, C. J. Naudet, K. Nimmo, Z. Pleunis, T. A. Prince, M. Rafiei-Ravandi, M. Rahman, K. Shin, K. M. Smith, I. H. Stairs, S. P. Tendulkar, K. Vanderlinde</li>
<li>The Astrophysical Journal, Vol. 901, 2, id. 165, 2020</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2020ApJ...901..165S/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">VLBI20-30: a scientific roadmap for the next decade -- The future of the European VLBI Network</span>
</p>
<ul>
<li>T. Venturi, Z. Paragi, M. Lindqvist, A. Bartkiewicz, R. Beswick, T. Bogdanović, W. Brisken, P. Charlot, F. Colomer, J. Conway, S. Frey, J. C. Guirado, L. Gurvits, H. van Langevelde, A. Lobanov, J. McKean, R. Morganti, T. Muxlow, M. Pérez-Torres, K. Rygl, R. Schulz, A. Szomoru, P. de Vicente, T. An, G. Anglada, M. Argo, R. Azulay, I. van Bemmel, T. Bocanegra, B. Boccardi, P. Castangia, J. Chibueze, G. Cimò, J. B. Climent, R. Deane, A. Deller, R. Dodson, D. Duev, S. Etoka, D. Fenech, K. Gabányi, D. Gabuzda, M. Garrett, M. Gawroński, G. Ghirlanda, M. Giroletti, C. Goddi, J. L. Gómez, M. Gray, J. Greaves, J. W. T. Hessels, A. van der Horst, T. Hunter, R. Laing, D. Vir Lal, S. Lambert, L. Loinard, B. Marcote, A. Merloni, J. Miller-Jones, G. Molera Calvés, L. Moscadelli, H. Olofsson, L. Petrov, R. Pizzo, A. Possenti, L. H. Quiroga-Nuñez, C. Reynolds, A. Richards, M. Rioja, A. Sanna, T. Savolainen, T. Sbarrato, C. Spingola, G. Surcis, C. Trigilio, E. Varenius, W. Vlemmings, S. van Velzen, J. van der Walt</li>
<li>arXiv:2007.02347, 2020</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2020arXiv200702347V/abstract" class="btn">see White Book</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix atel">
<div class="project price-box">
<p class="pricing-catagory-name">Astronomer's Telegram</p>
<p>
<span class="price">A search for persistent radio emission and millisecond-duration radio bursts from SGR 1935+2154 using the European VLBI Network</span>
</p>
<ul>
<li>K. Nimmo, B. Marcote, J. W.T. Hessels, U. Bach, M. Jenkins, R. Karuppusamy, F. Kirsten, Z. Paragi, M. Snelders</li>
<li>The Astronomer's Telegram, #13786</li>
</ul>
<a href="http://www.astronomerstelegram.org/?read=13786" class="btn">see ATel</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">Periodic activity from a fast radio burst source</span>
</p>
<ul>
<li>The CHIME/FRB Collaboration, M. Amiri, B. C. Andersen, K. M. Bandura, M. Bhardwaj, P. J. Boyle, C. Brar, P. Chawla, T. Chen, J. F. Cliche, D. Cubranic, M. Deng, N. T. Denman, M. Dobbs, F. Q. Dong, M. Fandino, E. Fonseca, B. M. Gaensler, U. Giri, D. C. Good, M. Halpern, J. W. T. Hessels, A. S. Hill, C. H\"ofer, A. Josephy, J. W. Kania, R. Karuppusamy, V. M. Kaspi, A. Keimpema, F. Kirsten, T. L. Landecker, D. A. Lang, C. Leung, D. Z. Li, H.-H. Lin, B. Marcote, K. W. Masui, R. Mckinven, J. Mena-Parra, M. Merryfield, D. Michilli, N. Milutinovic, A. Mirhosseini, A. Naidu, L. B. Newburgh, C. Ng, K. Nimmo, Z. Paragi, C. Patel, U.-L. Pen, T. Pinsonneault-Marotte, Z. Pleunis, M. Rafiei-Ravandi, M. Rahman, S. M. Ransom, A. Renard, P. Sanghavi, P. Scholz, J. R. Shaw, K. Shin, S. R. Siegel, S. Singh, R. J. Smegal, K. M. Smith, I. H. Stairs, S. P. Tendulkar, I. Tretyakov, K. Vanderlinde, H. Wang, X. Wang, D. Wulf, P. Yadav, A. V. Zwaniga
<li>Nature, Vol. 582, 7812, p. 351, 2020</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2020Natur.582..351C/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">Two Wolf-Rayet stars at the heart of colliding-wind binary Apep</span>
</p>
<ul>
<li>J. R. Callingham, P. A. Crowther, P. M. Williams, P. G. Tuthill, Y. Han, B. J. S. Pope, B. Marcote</li>
<li>MNRAS, Vol. 495, 3, p. 3323, 2020</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2020MNRAS.495.3323C/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">A repeating fast radio burst source localized to a nearby spiral galaxy</span>
</p>
<ul>
<li>B. Marcote, K. Nimmo, J. W. T. Hessels, S. P. Tendulkar, C. G. Bassa, Z. Paragi, A. Keimpema, M. Bhardwaj, R. Karuppusamy, V. M. Kaspi, C. J. Law, D. Michilli, K. Aggarwal, B. Andersen, A. M. Archibald, K. Bandura, G. C. Bower, P. J. Boyle, C. Brar, S. Burke-Spolaor, B. J. Butler, T. Cassanelli, P. Chawla, P. Demorest, M. Dobbs, E. Fonseca, U. Giri, D. C. Good, K. Gourdji, A. Josephy, A. Yu. Kirichenko, F. Kirsten, T. L. Landecker, D. Lang, T. J. W. Lazio, D. Z. Li, H.-H. Lin, J. D. Linford, K. Masui, J. Mena-Parra, A. Naidu, C. Ng, C. Patel, U.-L. Pen, Z. Pleunis, M. Rafiei-Ravandi, M. Rahman, A. Renard, P. Scholz, S. R. Siegel, K. M. Smith, I. H. Stairs, K. Vanderlinde, A. V. Zwaniga</li>
<li>Nature, Vol. 577, p. 190, 2020</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2020Natur.577..190M/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">VLBI observations of the G25.65+1.05 water maser 'Super-burst'</span>
</p>
<ul>
<li>R. A. Burns, G. Orosz, O. Bayandina, G. Surcis, M. Olech, G. MacLeod, A. Volvach, G. Rudnitskii,
T. Hirota, K. Immer, J. Blanchard, B. Marcote, H. J. van Langevelde, J. O. Chibueze, K. Sugiyama,
Kee-Tae Kim, I. Val’tts, N. Shakhvorostova, B. Kramer, W. A. Baan, C. Brogan, T. Hunter, S. Kurtz,
A. M. Sobolev, J. Brand, L. Volvach</li>
<li>MNRAS, Vol. 491, 3, p. 4069, 2020</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2020MNRAS.491.4069B/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">Probing the origin of the off-pulse emission from the pulsars B0525+21 and B2045-16</span>
</p>
<ul>
<li>B. Marcote, Y. Maan, Z. Paragi, A. Keimpema</li>
<li>Astrononomy & Astrophysics, Vol. 627, L2, 2019</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2019A%26A...627L...2M/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">FRB 121102 Bursts Show Complex Time─Frequency Structure</span>
</p>
<ul>
<li>J. W. T. Hessels, L. G. Spitler, A. D. Seymour, J. M. Cordes, D. Michilli, R. S. Lynch, K. Gourdji,
A. M. Archibald, C. G. Bassa, G. C. Bower, S. Chatterjee, L. Connor, F. Crawford, J. S. Deneva, V. Gajjar,
V. M. Kaspi, A. Keimpema, A.; C. J. Law, B. Marcote, M. A. McLaughlin, Z. Paragi, E. Petroff, S. M. Ransom,
P. Scholz, B. W. Stappers, S. P. Tendulkar</li>
<li> The Astrophysical Journal Letters, Vol. 876, 2, L23, 2019</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2019ApJ...876L..23H/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>
<p>
<span class="price">Resolving the Decades-long Transient FIRST J141918.9+394036: An Orphan Long Gamma-Ray Burst or a Young Magnetar Nebula?</span>
</p>
<ul>
<li>B. Marcote, K. Nimmo, O. S. Salafia, Z. Paragi, J. W. T. Hessels, E. Petroff, R. Karuppusamy</li>
<li>The Astrophysical Journal Letters, Vol. 876, 1, L14, 2019</li>
</ul>
<a href="https://ui.adsabs.harvard.edu/abs/2019ApJ...876L..14M/abstract" class="btn">see paper</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mix paper">
<div class="project price-box">
<p class="pricing-catagory-name">Paper</p>