-
Notifications
You must be signed in to change notification settings - Fork 1
/
thesis.tex
3021 lines (2329 loc) · 190 KB
/
thesis.tex
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
%% LyX 2.1.4 created this file. For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[12pt,english]{report}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{babel}
\usepackage{longtable}
\usepackage{float}
\usepackage{calc}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{setspace}
\usepackage[unicode=true,pdfusetitle,
bookmarks=true,bookmarksnumbered=false,bookmarksopen=false,
breaklinks=false,pdfborder={0 0 1},backref=false,colorlinks=false]
{hyperref}
\usepackage{comment}
\usepackage{graphicx}
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands.
\providecommand{\LyX}{\texorpdfstring%
{L\kern-.1667em\lower.25em\hbox{Y}\kern-.125emX\@}
{LyX}}
%% Because html converters don't know tabularnewline
\providecommand{\tabularnewline}{\\}
\floatstyle{ruled}
\newfloat{algorithm}{tbp}{loa}[chapter]
\providecommand{\algorithmname}{Algorithm}
\floatname{algorithm}{\protect\algorithmname}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
\usepackage{UTSAthesis}
\usepackage{times}
\usepackage{latexsym}
%Bibliography packages
\usepackage[square]{natbib} % defines citet, citep, ...
\bibpunct{(}{)}{;}{a}{}{,} % to follow the A&A style -
\newcommand{\aj}{AJ}
\newcommand{\apj}{ApJ}
\newcommand{\apjl}{ApJ}
\newcommand{\apjs}{ApJS}
\newcommand{\aap}{A\&A}
\newcommand{\aaps}{A\&AS}
\newcommand{\mnras}{MNRAS}
\newcommand{\nat}{Nature}
\newcommand{\araa}{ARAA}
\newcommand{\prd}{Phys. Rev. D}
\newcommand{\pasj}{PASJ}
\newcommand{\ETC}{et al.}
\newcommand{\physrep}{Physics Report}
\newcommand{\gca}{GCA}
\newcommand{\pasa}{PASA}
\newcommand{\pasp}{PASP}
\newcommand{\aapr}{A\&A~Rev.}
\newcommand{\apss}{Ap\&SS}
%End of bibliography packages
%Added by me
\newcommand\numberthis{\addtocounter{equation}{1}\tag{\theequation}}
\newcommand{\order}{\ensuremath{\mathcal{O}}}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows,positioning,fit, backgrounds}
\linespread{1.2}
% Define block styles for pipeline flowchart
\tikzstyle{decision} = [diamond, draw, fill=green!20,
text width=4.5em, text badly centered, node distance=3cm, inner sep=0pt]
\tikzstyle{block} = [rectangle, draw, fill=blue!20,
text width=10em, text centered, rounded corners, minimum height=4em]
\tikzstyle{line} = [draw, -latex']
\tikzstyle{cloud} = [draw, ellipse, fill=red!20, node distance=3cm,
text width=5em, text centered, minimum height=2em]
\tikzstyle{obse} = [draw, rectangle, fill=green!30, node distance=3cm,
text width=5em, text centered, rounded corners, minimum height=2em]
%\usepackage{subfig}
%\usepackage{algorithm}
%\usepackage{minted}
%End of added by me
\newenvironment{ruledcenter}{%
\begin{center}
\rule{\textwidth}{1mm} } {%
\rule{\textwidth}{1mm}
\end{center}}%
\theoremstyle{definition}
\newtheorem{defn}{\protect\definitionname}
\theoremstyle{plain}
\newtheorem{thm}{\protect\theoremname}
\@ifundefined{showcaptionsetup}{}{%
\PassOptionsToPackage{caption=false}{subfig}}
\usepackage{subfig}
\makeatother
\providecommand{\definitionname}{Definition}
\providecommand{\theoremname}{Theorem}
\begin{document}
% Committee Members
\supervisor{Mario Diaz, Ph.D.}
\cosupervisor{}
\committeeB{Lucas Macri, Ph.D.}
\committeeC{Matthew Benacquista, Ph.D.}
\committeeD{Eric Schlegel, Ph.D.}
\committeeE{Rafael Lopez Mobilia, Ph.D.}
\informationitems{Doctor of Philosophy in Physics}{Ph.D.}{M.Sc.}{Department of Physics And Astronomy}{College of Sciences}{August}{ 2017 }
\thesiscopyright{Copyright 2017 Martin Beroiz \\
All rights reserved. }
%\dedication{\emph{To all the people that helped me reach this far}}
\title{\textbf{OPTICAL COUNTERPARTS TO GRAVITATIONAL WAVES}}
\author{Martin Beroiz}
\maketitle
\begin{acknowledgements}
My utmost thanks go to my advisor, Mario Diaz, for giving me the opportunity to work on the TOROS project.
I benefited greatly from his advice and encouragement throughout my career, especially during difficult times.
Mario is certainly a noble person of principles that cares deeply for others.
To Mariano Dominguez, who has been such a great pleasure to meet and work with during his stay at the Rio Grande Valley.
Your unstoppable flow of creativity left me an impression that will be hard to forget.
I want to thank Tania Pe\~nuelas for providing good advice and help.
Her professionalism and dedication to this project has been an inspiration to me.
To my friends Marc Normandin, Dr. Shihan Weerathunga and Ervin Vilchis, partners in this journey that was the doctoral program.
To Bruno Sanchez and Juan Bautista Cabral for their disinterested help and friendship.
I want to dedicate this to the memory of Cristina Torres, a wonderful person, who was always ready to reach out to help others, including myself. May she rest in peace.
%(Notice: If any part of the thesis/dissertation has been published
%before, the following two paragraphs should be included without alteration).
\begin{comment}
\begin{singlespace}
\emph{This Masters Thesis/Recital Document or Doctoral Dissertation
was produced in accordance with guidelines which permit the inclusion
as part of the Masters Thesis/Recital Document or Doctoral Dissertation
the text of an original paper, or papers, submitted for publication.
The Masters Thesis/Recital Document or Doctoral Dissertation must
still conform to all other requirements explained in the Guide for
the Preparation of a Masters Thesis/Recital Document or Doctoral Dissertation
at The University of Texas at San Antonio. It must include a comprehensive
abstract, a full introduction and literature review, and a final overall
conclusion. Additional material (procedural and design data as well
as descriptions of equipment) must be provided in sufficient detail
to allow a clear and precise judgment to be made of the importance
and originality of the research reported. }
\emph{It is acceptable for this Masters Thesis/Recital Document or
Doctoral Dissertation to include as chapters authentic copies of papers
already published, provided these meet type size, margin, and legibility
requirements. In such cases, connecting texts, which provide logical
bridges between different manuscripts, are mandatory. Where the student
is not the sole author of a manuscript, the student is required to
make an explicit statement in the introductory material to that manuscript
describing the students contribution to the work and acknowledging
the contribution of the other author(s). The signatures of the Supervising
Committee which precede all other material in the Masters Thesis/Recital
Document or Doctoral Dissertation attest to the accuracy of this statement.}\end{singlespace}
\end{comment}
\end{acknowledgements}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% ABSTRACT
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{abstract}
The novel field of Gravitational Wave Astronomy has opened a new window to the universe.
Never before had we received gravitational waves from the distant celestial bodies carried away by space-time perturbations, until the detection of GW150914 on September 14, 2015.
But these signals, however faint, carry very little information about their positions on the sky.
The sky localization can have uncertainties that span up to a few hundreds square degrees, which makes locating the sources very difficult.
Traditional Astronomy can complement this limitation of gravitational wave detection where optical astronomy is stronger: localization.
However, this poses other technological challenges of a different kind.
In the era of multi-messenger Astronomy, a low latency response time after detection is crucial in order to have any hope of detecting
the optically faint electromagnetic counterparts of the event.
The mission of the Transient Optical Robotic Observatory of the South (TOROS), in the context of multi-messenger and time-domain astronomy,
is to create a facility ready to respond to gravitational wave detections for prompt follow-up observations searching for optical counterparts.
This dissertation discusses the implementation of a software pipeline for the TOROS project and the results obtained during the O1 campaign of Advanced LIGO.
\end{abstract}
\pageone{}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% INTRODUCTION
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter{Introduction}
In February 2016, celebrating the centenary anniversary of Albert Einstein's first paper on gravitational
waves\footnote{``Approximate integration of the field equations of gravitation'' - A. Einstein. (1916)} (\citet{1916SPAW.......688E}),
the LVC collaboration announced the first ever direct detection of a gravitational wave.
With this, a new window of the universe for the purely relativistic astronomical phenomena was opened.
The history of gravitational waves (GWs) was not without controversies.
From the discussion of whether GWs would carry energy, to the experiments of Joseph Weber,
Gravitational Waves made its way from the theoretical realm into a stronghold position in Astrophysics (see for example \citet{2016arXiv161008803C}).
The detection of the first Gravitational Wave, GW150914, firmly established the foundations for Gravitational Wave Astronomy.
%The graviton and its wave counterpart will from now on be a new --purely relativistic in nature-- messenger of the universe.
Gravitational Waves (GW from here on) will bring us information about strong gravitational fields around compact massive objects.
It will let us probe into the physics of the extreme gravitational field of celestial bodies.
The GW information will complete, refine, and expand the understanding of our universe.
The full waveform of the GW gives us information that is not available in the light we gather in our traditional telescopes.
On the other hand, traditional Astronomy can help GW Astronomy in localizing the source, thus improving the estimated parameters of the merger,
especially so in the case for the parameters that are correlated with localization,
like the geometrical parameters of the inclination of the merger with the line of sight, and total luminosity.
In this way, Optical Astronomy is a vital partner in our understanding of the physics in compact mergers.
Together they can uncover more details of the inner mechanisms of the celestial bodies and their interactions.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Gravitational Waves
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Gravitational Waves}
\begin{comment}
%Quadrupole radiation is the lowest allowed form and is thus usually the dominant form. In this case, the GW field strength is proportional to the second time derivative of the quadrupole moment of the source, and it falls off in amplitude inversely with distance from the source.
\end{comment}
General Relativity predicts that very massive or energetic events will create traveling perturbations of the underlying spacetime metric in the form of \emph{gravitational waves}.
These are linear disturbances of a flat background spacetime metric, that are propagated outwards from the source at the speed of light and which fade with the inverse of the distance.
These tensorial transversal waves will modify the local metric as it travels through space.
In technical terms, in an asymptotically flat spacetime, removed from any strong source so that one can assume an almost flat local solution, one can study weak-field perturbations to the flat Minkowski metric.
In mathematical form, we study the spacetime metric $g$ as Minkowski flat metric $\eta$ plus a small perturbation $h$.
\begin{equation}
g_{\mu \nu} = \eta_{\mu \nu} + h_{\mu \nu}
\end{equation}
In this regime, and choosing appropriate gauges, the linearized Einstein field equations present themselves in the form of a wave equation.
Solutions to this wave equation are what people refer to as gravitational waves.
The GW tensor metric in the transverse-traceless (TT) gauge coordinate frame, has the form\footnote{We refer the reader to Appendix \ref{gwderivation} for a more complete derivation of the metric.}:
\begin{equation}
h_{\mu \nu} =
\begin{bmatrix}
0 & 0 & 0 & 0 \\
0 & h_{+}e^{\pm i k_{\mu}x^{\mu}} & h_{\times} e^{\pm i k_{\mu}x^{\mu}} & 0 \\
0 & h_{\times} e^{\pm i k_{\mu}x^{\mu}} & -h_{+}e^{\pm i k_{\mu}x^{\mu}} & 0 \\
0 & 0 & 0 & 0 \\
\end{bmatrix}
\end{equation}
Aside from the usual sinusoidal factors for the wave propagation, we note that the GW tensor has two independent modes, or `polarizations' $h_{+}$ and $h_{\times}$.
These polarizations are just like light polarization, except that these are at 45 degrees to one another, unlike the 90 degrees separation of light polarization.
More specifically, the effect on test particles of a purely $h_{\times}$ polarization would be the same as the $h_{+}$ polarization rotated 45 degrees.
Since a spacetime metric is a measure for the distance between pair of events, the metric perturbation wave will modify --in a 3+1 decomposition-- the relative distance between points in space as it passes by.
It is in fact an effective oscillating strain or tidal force between free test masses.
It is then, in principle, possible to devise an instrument to detect these relative differences in distance for such test masses.
But because of the very `perturbative' nature of GW, these differences are very small.
In fact, it was Einstein himself who said in his 1916 paper ``\emph{it is obvious that $A$ [the radiation formula] has, in all imaginable cases, a practically vanishing value.}''
To have any chance of detection, one must look into the extreme side of gravity: very massive compact astrophysical objects with strong gravitational fields, moving at relativistic speeds.
Even the most powerful astronomical events, like a black hole merger will produce disturbances the order of $10^{-18}$ m at a distance of a few hundred Mpc.
The first experimental evidence for the existence of GWs came 50 years after their prediction with the work of Hulse and Taylor.
For decades, they studied the pulses we receive from
PSR B1913+16\footnote{It is also known as PSR J1915+1606, PSR 1913+16, and the Hulse--Taylor binary},
a Neutron Star (NS) in a Binary Neutron Star (BNS) system.
The slow rate of period decrease of the pulses for this pulsar matched precisely the rate
at which they were losing energy in gravitational waves, as predicted by General Relativity.
The discovery and analysis awarded them the 1993 Nobel Prize in Physics
``\emph{for the discovery of a new type of pulsar, a discovery that has opened up new possibilities for the study of gravitation.}''
This important work also settled the debate on wether GWs could carry energy with them.
The decrease in period rate was proof that the energy was being radiated away as GWs.
Nonetheless, a direct detection of GWs wouldn't come for yet another 50 years.
On September 14, 2015, a GW detection labeled GW150914 was finally detected by the LIGO Collaboration (\cite{2016PhRvL.116f1102A}).
Direct detection \emph{in situ} of GWs requires a transducer of GW into some other form measurable by common electronic instruments.
One pioneer work along this line was the work done by Joseph Weber in the late 1960s and early 70s.
He proposed using a 2 meter in length and 1 meter in diameter aluminum cylinder, that would resonate upon passing of a GW at 1660 Hz.
In his paper, he states that the strain oscillations on the cylinder would be of about one part in $10^{16}$.
Although very small, these tiny resonant oscillations could in principle be measured.
But even though ingenious, the carefully devised experiment could not yield positive reproducible results
that convinced the scientific community.
It was nonetheless a very important milestone in the development of \emph{in-situ} GW detection.
The experimental sensitivity that this experiment achieved brought us orders of magnitude closer to the required LIGO strain sensitivity.
Bar detectors like Weber's were subsequently improved.
The latest iteration, the Nautilus GW detector ran continuously from December 1995 to December 1996.
Nautilus is a cryogenic, high Q-factor bar at a temperature of 0.1 K.
This bar has already reached a strain sensitivity of $10^{-21}$ Hz${}^{-1/2}$ in the kHz region. (\citet{1997APh.....7..231A})
A whole other category of GW detectors are those based on Michelson interferometry using lasers running along two kilometric-long arms.
Interferometer GW detectors transduce a GW warp in space to the shrinking and stretching of relative distances of masses put far apart in two or more --mostly perpendicular-- interferometers.
In the case of Earth based observatories, each interferometer is one arm several kilometers long, of an L-shaped facility.
The test masses are the end mirrors on each arm that reflect a laser beam pointed in each arm direction.
On normal circumstances, the beams from two different arms can be set to be (`locked') on a dark or bright fringe of the interferometer diffraction pattern.
When a GW passes by, it will alter the relative distances of the mirror masses, thus changing the optical path of the laser beams.
This in turn, will translate into a shift in the diffraction pattern consistent with the deformation of space.
Several GW detectors of this kind have been built around the globe.
Most notable among them are the LIGO observatory (see section \ref{ligosection}) and Virgo in Europe.
GEO600 and TAMA are also detectors of this kind in Germany and Japan respectively.
Indigo is a planned observatory to be located in India.
The frequency range in which these Earth-based interferometers are sensitive depends mainly on the length of the arms.
As a rule of thumb, the length of one arm is about half the shortest wavelength it can detect.
A few kilometers long arm make them sensitive up to the kHz.
As an example, aLIGO is now sensitive in the 10 Hz --7 kHz range.
Besides the Earth-based GW interferometers, there are also plans to build advanced space-based detectors.
eLISA (the Evolved Laser Interferometer Space Antenna) is a proposed GW interferometer to be set in space trailing the Earth's orbit.
Initially a NASA project, it is now an European Space Agency (ESA) mission.
eLISA will consist of three separate spacecraft orbiting in an equilateral triangle configuration separated 2.5 million kilometers from each other.
The project has successfully launched the ``LISA pathfinder'' spacecraft, whose mission is to test technologies needed for the final mission.
The final launch of eLISA is planned for 2034.
LISA will detect GW in the low-frequency band of the spectrum, roughly from the mHz to about 1 Hz in range. At this frequency range, binary neutron stars will comprise much of the signals it detects.
Other indirect methods of GW detection include the Pulsar Timing Array (PTA) technique.
PTA searches for correlated delays in the pulse arrival times for an array of preselected millisecond pulsars.
These delays can then be analyzed in search for signatures of passing GW.
This type of projects aim to detect very low frequency GW, from pHz to $\mu$Hz.
Potential sources for this very low frequency signals are mergers of suepermassive black hole binaries at the center of galaxies.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% LIGO Virgo
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{The LIGO-Virgo Collaboration} \label{ligosection}
LIGO --the Laser Interferometer Gravitational-Wave Observatory-- (\citet{1992Sci...256..325A}) is an American observatory set to detect the GW predicted by General Relativity.
It is comprised of two separate observatories, one in Hanford, Washington, called LIGO Hanford, and another one in Livingston, Louisiana, called LIGO Livingston.
Co-founded in 1992 by Kip Thorne and Ronald Drever of Caltech and Rainer Weiss of MIT, LIGO is a NSF-funded joint project between scientists at MIT, Caltech, and many other colleges and universities.
Virgo is a similar observatory located in the countryside near Pisa, Italy.
Originally a project between France and Italy, it soon became a collaboration of five different countries: France, Italy, the Netherlands, Poland, and Hungary.
In 2007, the LIGO Scientific Collaboration (LSC) and Virgo joined efforts in an umbrella collaboration named the LIGO-Virgo Collaboration (LVC).
Even though, LIGO and Virgo have comparable noise levels and detection rates, only the two interferometers in LIGO were operational at the time to detect GW150914.
In fact, Virgo was being upgraded to Advanced Virgo, which will have a sensitivity 10 times greater than Initial Virgo.
When the upgrade is finished, it will join LIGO in the joint collection of GW data. This will improve errors in the parameter estimation, especially localization errors will greatly improve.
LIGO went through similar upgrades along the years: Initial LIGO, Enhanced LIGO, and now Advanced LIGO.
Each LIGO observatory consists of two 4 km long arms, which are vacuum tubes where the lasers run and hit the mirror test masses.
The initial LIGO detectors were designed to be sensitive to GWs in the frequency band 40-7000 Hz, and capable of detecting a GW strain amplitude as small as one part in $10^{21}$.
To picture the order of magnitude of these displacements, consider that the change in length of one arm of the interferometer
is only about $10^{-18}$ m, a thousand times smaller than the diameter of a proton.
To reach this sensitivity, the detectors need highly stable lasers, multiple layers of vibration isolation and advanced optical techniques.
From the initial period, LIGO had five short science runs (each labelled S1 to S5), each one improving over the previous one,
culminating with S5 at design sensitivity.
The S5 run collected a full year of triple-detector coincident data from November 2005 to September
2007.\footnote{At the time of Initial LIGO there were 3 detectors operating, 1 in Louisiana and 2 in Washington.}
Between Initial LIGO and Advanced LIGO (aLIGO) more science was made under Enhanced LIGO,
which provided enhancements that improved sensitivity by a factor of 2.
But the real revolution came with Advanced LIGO, a set of additions that improved LIGO sensitivity by a factor of 10 over Initial LIGO
and widened the frequency range all the way down to 10 Hz (known as the \emph{seismic wall}).
Among the improvements, is the upgrading of the laser power to 200 W.
An increase in the test masses to 40 kg in order to reduce radiation pressure noise and to allow larger beam sizes.
Larger beams and better dielectric mirror coatings combine to reduce the test mass thermal noise by a factor of 5 compared with initial LIGO.
An improvement in vibration isolation, including vertical isolation comparable to the horizontal isolation at almost all stages.
New suspension system based on fused silica rather than steel wires to reduce suspension thermal noise by almost a hundred.
New two-stage active seismic isolation instead of the passive one-stage isolation brought the seismic noise to negligible levels above approximately 10 Hz.
(\citet{2009RPPh...72g6901A})
All these improvements combined gave Advanced LIGO a 10-fold increase in sensitivity.
This increase also means that fainter sources can now be detected, increasing the exploration volume for GW by a factor of a thousand.
Advanced LIGO will have several observation runs, labelled O1, O2, etc. (similar to the scientific runs S1-S5)
with gaps between them on which more improvements will be implemented until it reaches the full design sensitivity in 2020.
The projected sensitivity for each of the runs is presented in table \ref{ligoruns} (\citet{2016LRR....19....1A, 2014ApJ...795..105S})
\begin{table}
\caption{LVC Observation Runs Projection}
\label{ligoruns}
\noindent \centering
\begin{tabular}{*{8}{|c}|}
\hline
& Estimated &
\multicolumn{2}{c|}{$E_{GW} = 10^{-2}M_{\odot}c^2$} &
\multicolumn{2}{c|}{}
& Number & \% BNS \\
Epoch & Run &
\multicolumn{2}{c|}{Burst Range (Mpc)}&
\multicolumn{2}{c|}{BNS Range (Mpc)} &
of BNS & within \\
& Duration &
LIGO & Virgo &
LIGO & Virgo &
Detections &
5 deg${}^2$ \tabularnewline
\hline \hline
2015 & 3 months & 40 -- 60 & --- & 40 -- 80 & --- & 0.0004 -- 3 & --- \\
2016-17 & 6 months & 60 -- 75 & 20 -- 40 & 80 -- 120 & 20 -- 60 & 0.006 -- 20 & 2 \\
2017-18 & 9 months & 75 -- 90 & 40 -- 50 & 120 -- 170 & 60 -- 85 & 0.04 -- 100 & 1 -- 2 \\
2019$+$ & (per year) & 105 & 40 -- 70 & 200 & 65 -- 130 & 0.2 -- 200 & 3 -- 8 \\
2022$+$ (India) & (per year) & 105 & 80 & 200 & 130 & 0.4 - 400 & 17 \\ \hline
\end{tabular}
\end{table}
\section{Observable Sources by LIGO}
Even if it's true that any massive or energetic event with a non-vanishing quadrupole moment will create gravitational waves,
the sources capable of being detected by Earth-based GW observatories like LIGO will need to be in the design sensitive frequency
range and be strong enough to be detected potentially tens or hundreds of Mpc away.
There is extensive research on the many sources that could be potentially discovered by LIGO.
In the following, we mention those most commonly cited in literature.
They can broadly be separated into four categories: Compact Binary Coalescence, Continuous or Periodic, Burst, and Stochastic Background (\citet{tjonniethesis}).
{\bf Compact Binary Coalescence} (CBC) is the best-understood kind of source for LIGO and Virgo.
This type of source refers to the inspiral and merger of compact objects, primarily Black Holes and Neutron Stars.
Mergers of systems of Binary Neutron Stars, Binary Black Holes, or Neutron Star--Black Hole are the expected sources of GW for compact coalescence.
These mergers offer a multitude of plausible electromagnetic counterparts and for that reason they will be the focus of this thesis.
The merger rate of binary systems is an area of active research and estimates remain uncertain.
Compact binaries are formed similarly in stellar field populations of galaxies (\citet{2012LRR....15....8F}).
Most population synthesis calculations of compact coalescence agree to within 1 to 2 orders of magnitude,
a result consistent with the typical uncertainties that remain once all possible sources of errors are propagated in the population synthesis models.
Estimates for BNS mergers range from 0.01 to 10 mergers per Mpc${}^{3}$ per Myr.
For a conservative merge rate of 1 Mpc${}^{-3}$Myr${}^{-1}$, and a projected observable radius of 200 Mpc at the design sensitivity of Advanced LIGO,
the discovery rate of BNS mergers will be of approximately 40/yr (\citet{2014ApJ...795..105S}).
{\bf Continuous or Periodic} sources are those that have roughly constant frequency and amplitude compared to its observation time.
Primary sources of the continuous kind are rotating Neutron Stars (pulsars) with some non-axisymmetric anisotropy.
The emitted gravitational wave frequency is twice the rotation frequency, and for many known pulsars, they fall within the LIGO sensitivity band (\citet{1998ApJ...501L..89B}).
Searches for continuous periodic signals (\citet{2005PhRvD..72j2004A, 2007PhRvD..76d2001A}) involve the integration of large portions of the time series, spanning many cycles of the pulsar,
correcting for Doppler shift for the motion of the Earth around the Sun, anmd spin-down of the pulsar, among other effects.
Although the GW amplitude is generally weaker compared to CBC sources, a longer integration time means that continuous sources may also achieve detectable SNRs.
{\bf Burst}-type sources are associated with large energy emission in cataclysmic events like Super Nova explosions,
Gamma Ray Bursts (\citet{2005PhRvD..72d2002A}),
Soft Gamma Repeaters (\citet{2007PhRvD..76f2003A})
or instabilities in Neutron Stars (\citet{2016PhRvD..93l2008A}).
These type of sources are difficult to model because of the complicated physics of the progenitor.
This typically demands a non-parametric or un-modeled filter search on the GW time series,
either searching for excess of flux or using generic sine-Gaussian signals templates.
{\bf Stochastic Background} is the collection of all the unresolved GW signals.
The main contributors are primordial gravitational waves from the early Universe (Big Bang),
and unresolved GW sources of different kinds, not bright enough to be individually detectable.
For a single detector, the stochastic background is simply indistinguishable from instrument noise,
it can only be detected when ``noise'' from different detectors are analyzed searching for correlations (\citet{2014PhRvL.113w1101A}).
Instrumental noise will be largely uncorrelated, but astronomical GW sources will leave their imprint across detectors,
thus creating a detectable signal on each correlation pair.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% The Transient Universe
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter{The Transient Universe}
In this so-called ``Information Age'', data is king.
As we move away from the traditional one person project and manual way to deal with information,
the amount of data that needs processing becomes unmanageable by humans.
This is not to say that individual work has no place in science, but that the collective gathering of information has become ubiquitous.
The size of sky surveys in Astronomy has been increasing steadily and dramatically over the years.
From a situation where data is in the hundreds of MB and about a hundred events per night now,
we are heading to a regime of several tens of TB and the order of million events per night in the
LSST\footnote{http://www.lsst.org, http://www.lsst.org/files/docs/sciencebook/SB\_8.pdf} era
(\citet{2008arXiv0805.2366I, 2009arXiv0912.0201L}).
The data load makes it unmanageable if not done by automated agents.
Buried in this huge amount of data, are many short-lived events, or \emph{transients}, that will only be registered for a short period of time.
Although ephemeral, these transient events can uncover important information on the nature and evolution of the universe.
The most striking example is the discovery of Supernovae events that expanded our knowledge about the final stage of stars.
Transient events are present in ---and enhance the knowledge of--- almost every field of Astronomy.
Their time scales range over several orders of magnitude.
They can last from milliseconds, like Fast Radio Bursts, to a span of tens of days like Supernova (SN) explosions,
or even larger periods like the astoundingly persistent X-ray emission of SN1978K (\citet{2010AAS...21543002S}).
% and these can fade away in as much as hundreds of days.
Transients are most often unpredictable, but some of them are recurring, with or without predictability of the next event; they lack periodic variability;
and some of them are only a one-time occurrence and will only last for a relatively short period of time.
This makes it necessary to study them in the field of time domain astronomy.
Nonetheless, time domain astronomy poses at least two big main challenges.
The first one deals with the huge amount of data, and the process of recovering interesting transients from it.
This is a \emph{Data Mining} problem.
The second challenge has to do with the prompt dissemination of a transient discovery
to the scientific community to do follow-up observations in different bands of the spectrum.
The huge interest in Gamma Ray Bursts propelled most of the infrastructure that we have today to deal with this.
We cover \emph{multi-messenger Astronomy} (MMA) and some examples of it in the following sections.
\section{Mining Transients}
The identification of transients in data sets has to be done against the static or slowly varying background sky.
Fortunately for us, a huge portion of transients, even though they may be fundamentally different phenomena, look about the same at the instance of discovery.
That is, new transient phenomena presents itself on an image, as a new or much brighter spot, relative to previous epochs.
There are basically two main methods to unbury transients from images.
Both of the transient retrieval methods require a comparison with a reference image and a search that tries to find unexpected objects for that region of the sky.
The first kind is based on catalogs.
In this method, a calibrated catalog of sources is done on a new image and is compared against a reference catalog.
Then they search for correlations in both sets of catalogued objects, looking for either spatial position matches or intensity matches.
The unmatched sources --by position or intensity-- are potential candidates to transients.
The second method uses a reference image, but relies on a carefully done subtraction against the new image.
This subtraction tries to compensate for different point-spread functions (PSF), different background levels or different gains between the two epochs.
After the subtraction is done, a source-detection algorithm is run over the subtraction image searching for any residual sources.
These residual sources are the candidates for transients.
Each method has its pros and cons, difference image analysis is typically more computationally expensive but
performs well around extended objects such as galaxies. It can detect variability in non-stellar profiles, and can perform better in crowded fields.
It also has the biggest disadvantage of leaving behind many spurious residual objects from poorly subtracted star profiles.
This can be compensated by Machine Learning methods, as we shall see later.
The best advantage of catalog-based methods is that they don't require reference images and are typically computationally less intensive.
It also has the advantage of being able to better handle differences in catalogs from different telescopes.
The disadvantage is that it requires more careful photometric and astrometric calibration and does not perform as well near extended objects such as galaxies.
In either case, the task remains to identify interesting transients after we have `mined' our images looking for potential candidates.
Such classification of transient events is nowadays done with the aid of classification agents trained with Machine Learning techniques.
Machine Learning classifiers can sort out the relevant transients from a pile of thousands in an effective and fast way,
enabling rapid follow-ups that would be impossible with a manual approach.
Especially so, if the transients of interest are rare and the data is highly contaminated.
\section{Multi-Messenger Astronomy}
The second challenge relates to the issue of multi-messenger Astronomy.
One event discovered with a certain messenger, can be studied across the spectrum with different telescopes.
For this to be possible, the transmission of the information about the localization has to be sent faster than the typical duration of the event.
This is especially true with afterglows of very energetic events.
An event like a SN explosion may be first detected as a long GRB event (\citet{2006ARA&A..44..507W}) in one of the space-based Gamma Ray Telescopes orbiting the Earth.
Stellar core collapse during a SN releases roughly $10^{52}$ ergs of gravitational binding energy in less than one second.
The released radiation starts with bright $\gamma$-rays and subsequent afterglows across the whole spectrum up to radio frequencies.
Localization information of the GRB needs to be quickly sent to the Astronomy community to study its emission across the EM spectrum.
It was actually GRBs that ignited excitement in the astronomy community about transient astronomical events,
it was one of the first objects to be studied in a multi-band fashion,
and it triggered the building for most of the infrastructure we have today to deal effectively with multi-messenger astronomy.
Gamma Ray Busts were first discovered by the Vela satellites, a set of 6 pairs of satellites (Vela 1a,b through Vela 6a,b)
launched by the United States to orbit the Earth.
The original purpose of the array of satellites was to monitor the nuclear activities of other countries during the Cuban Missile Crisis in the 60's.
The satellites were designed to detect the hard-to-shield high energy signature emissions ($\gamma$ and X rays) of nuclear detonations.
Instead, they found strange, very energetic bursts of gamma rays coming from outer space (\citet{1973ApJ...182L..85K}).
The many GRBs detected in the first few decades rapidly showed that the directions they were coming from were isotropically distributed on the sky.
Although suggestive, this alone was not enough to conclude the extragalactic origin of GRBs.
Given the huge scale of energies involved, many people favored the idea that GRBs were being produced in the outer halo of our Milky Way.
More data was needed to resolve this issue.
In the late 1970s, NASA approved the construction of the Burst And Transient Source Experiment (BATSE),
a new telescope that would be ten times more sensitive than previous GRB detectors in space
and that would detect about 1 GRB a day with a 10 degree precision in localization.
It was finally launched on April 5, 1991.
Unfortunately, BATSE could not help in the optical afterglow localization of GRBs.
But it was BeppoSAX (formally, the ``Satellite per Astronomia a Raggi X''),
an Italian satellite equipped with a GRB monitor and an X-ray coded mask imager,
that would bring us closer to scan the multi-band afterglow.
BeppoSAX X-ray imager could find X-ray counterparts for GRBs, and narrow the localization uncertainty to 5 to 10 arcminute radius.
This was already possible with the network of GRB detectors in space at the time,
but it involved cross-analyzing data from diverse sensors and the process took several days to finish.
It was known at the time that there were no optical counterparts after a week of the event.
If we wanted to find optical afterglows, we would need to find more accurate localization much faster.
BeppoSAX did precisely that by reducing the time of localization to only a few hours.
This reduction in the time of localization opened the game for telescopes around the globe to try to find optical and radio afterglows.
On February 28, 1997, BeppoSAX localized a GRB with an X-ray counterpart that vanished after 3 days.
Twenty hours after the GRB event, a group from the Netherlands lead by Jan van Paradijs,
used La Palma telescope in Canary Islands, Spain, to image the region.
This was the first time an optical afterglow could pinpoint the sky position down to the unprecedented precision of 1 arcsecond.
Hubble Space Telescope (HST) imaged the region and a blue blob appeared.
Unfortunately this was not enough to confirm or deny an extragalactic origin.
About two months later, on May 8, 1997, BeppoSAX detected another GRB and a compatible X-ray counterpart.
Caltech imaged the uncertainty region using Keck II telecsope in Hawaii and found a clear optical afterglow.
This afterglow and its spectrogram confirmed that GRB970508 was 5 Gpc away.
This discovery and the subsequent follow-up observations finally settled the debate as to the origins of GRBs.
GRBs were clearly of extragalactic origin.
Furthermore, radio follow-up observations, along with the estimated distance from optical,
strongly suggested that the emitting surface was expanding at close to the speed of light.
The distance estimation greatly helped understanding the intrinsic luminosity and possible mechanisms for it.
So much more was there to find about GRB970508 and GRBs in general,
but the foundations of MMA were laid.
GRBs were a complete enigma until fast event dissemination enabled for multi-band identification of afterglows.
\begin{comment}
According to \textcolor{red}{Batse} data, GRBs seem to come from two distinct population.
Histograms done on the time time to receive 90\% of the radiation, or $T_{90}$ seem to indicate the populations are
divided into `long' and `short types'. Long GRBs last for longer than 2s, while short duration GRBs have $T_{90}$ values under 2s.
Long GRBs are associated with massive star collapse (E. Waxman and J.N. Bahcall, ApJ 541, 707 (2000).)
producing $\gamma$-rays then subsequent X-rays and optical afterglows
%Long GRB events are assumed to be produced by massive star collapse, and GW searches by LIGO and Virgo use their unmodeled burst search pipelines
%F. Acernese et al (Virgo Collaboration), Class. Quantum Grav. 25, 225001 (2008).
%B. Abbott et al (LIGO Scientific Collaboration), Phys. Rev. D 72, 042002 (2005).
%B. Abbott et al (LIGO Scientific Collaboration), Phys. Rev. D 77, 062004 (2008).
%B. Abbott et al (LIGO Scientific Collaboration and the Virgo Collaboration), ApJ 715,
%The coalescence of a neutron star - neutron star, or neutron star - black hole binary system is suspected to be the source of the short GRBs;
%the LIGO-Virgo compact binary coalescence and burst pipelines are both used to search for GWs from short GRBs
%J. Abadie et al (LIGO Scientific Collaboration and the Virgo Collaboration), ApJ 715, 1453 (2010).
\end{comment}
The prompt dissemination of GRB discoveries became so important that it sparked the creation of a collective centre for transient discovery notification.
The gamma-ray burst coordinates network (GCN) started with the BATSE coordinates distribution network (BACODINE).
The GCN, along with the Transient Astronomy Network
(collectively, the GCN/TAN network\footnote{https://gcn.gsfc.nasa.gov}),
is now a distribution network of transient event notices dependent on Goddard NASA.
The GCN/TAN disseminates transient event information mostly in real time, while the event is still ongoing, or with a short delay depending on the instrument,
detected by various spacecraft (Swift, Fermi, MAXI, INTEGRAL, IPN, and others).
It also serves as a repository for the follow-up observation reports submitted by the GRB/transient community through the use of GCN Circulars.
Although the creation of GCN/TAN was propelled by the interest in GRBs, it now serves as a point of communication for all sorts of transient events.
In the LIGO-Virgo era, GCN/TAN also serves GW detection notices to some selected observatory partners (of which TOROS is one).
In the same way that long GRBs sparked the multi-band follow-up observations across the spectrum,
a new type of event associated with short GRBs gave birth to a new kind of MMA.
Short GRBs are believed to have originators in the merger of compact objects (\citet{2007PhR...442..166N}).
Compact object mergers are also the originators of the GW signals that LIGO has detected.
Along with the GWs produced in these mergers, a companion EM thermal radiation will radiate isotropically from the merger.
This EM counterpart is believed to shine about a thousand times brighter than a Nova, and it was named accordingly
`Kilonova'\footnote{It is also referenced in the literature under the name \emph{macronova}}.
Models of Kilonovae afterglows peak about a day after the GW emission (\citet{2010MNRAS.406.2650M})
and last for about a week.
Just as for the case for GRBs, Kilonovae can narrow the localization of GWs to a few arcseconds.
Conversely, if there is a chance to detect the relatively faint Kilonova,
it will be greatly helped if we have prompt information of its GW counterpart, or its associated GRB.
It is then very important to complement such information with the EM counterpart.
Both, the GW and the EM information contribute with different pieces of the puzzle,
they can paint a more complete picture of the phenomena.
EM counterparts can most notably help where GW information fails harder, in localization.
Localization by means of the EM counterpart, not only helps on the few parameters of the position on the sky,
but it will also help to separate the uncertainty degeneracy on the geometrical disposition of a merger.
This way, improving other estimates for the parameters of the merger, such as masses and spins involved,
as well as the luminosity distance.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Kilonova
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{The Kilonova, A New Case For Multi-Messenger Astronomy} \label{kilonovachapter}
It has long been suggested, both on observational and theoretical grounds,
that Binary Compact Mergers ---where at least one of the merging bodies is a NS--- are the progenitors for the short class of GRBs.
But it was not until the late 90's that a second class of EM emission was theorized to be present during these type of merging events.
This new class of thermal emission would be powered by the radioactive heating from the decay of heavy nuclei formed in the neutron-rich merger ejecta, driven by the so-called r-process.
%\textcolor{blue}{This emission provides both a robust EM counterpart to the GW chirp, which is expected to accompany a fraction of BH-NS mergers and essentially all NS-NS mergers.}
Unlike short GRB emission, where most of the energy is collimated into a radiation beam, Kilonova emission is isotropic.
It lasts for about a week and it peaks in the NIR sector of the light spectrum.
The intensity of such an event can reach brightness of a thousand times those of a Nova, and for this reason it was termed `Kilonova' (\citet{2010MNRAS.406.2650M}).
\begin{comment}
this is a repeat of line 666
\end{comment}
Rapid neutron capture, or r-process for short, is the main driver of the radiation we see during a Kilonova.
In a dense neutron-rich environment, if the neutron capture timescale of lighter seed atom nucleus (like Iron)
is shorter than the neutron $\beta$-decay timescale, nuclei can capture extra neutrons for themselves.
The newly formed nuclei will later decay emitting radiation.
\citet{1957RvMP...29..547B} and \citet{1992ApJ...395L..83N} had already proposed that approximately half of the elements heavier than iron are synthesized in this way.
This EM transient powered by the radioactive heating of the r-process, is what is called a Kilonova.
This radioactive heating occurs through a combination of $\beta$-decays, $\alpha$-decays,
and fission of the r-process nuclei (\citet{2010MNRAS.406.2650M, 2016ApJ...829..110B, 2016MNRAS.459...35H})
During a Binary NS merger, the decompression of highly neutron-rich ejecta is a favorable environment for rapid neutron capture process.
The BNS ejecta consists mainly of matter ejected either by tidal forces or compression-induced heating at the interface between merging bodies.
Unbound debris from the merger can also form a disk around the merge and outflows from this disk is another ---albeit second in importance--- source of ejecta.
As a first approximation we can imagine the ejecta expanding radially outwards with spherical symmetry.
Ejecta right after the merger can exceed billions of degrees at the radius of the merger (\textasciitilde100 km), but
during its expansion, the ejecta cools down due to adiabatic expansion.
The thermal radiation cannot initially escape as radiation because of the high optical depth at early times and the correspondingly long photon diffusion times through the ejecta.
Nonetheless, as the ejecta expands, the diffusion time decreases until eventually radiation can escape and the medium becomes transparent to radiation.
The condition at which ejecta first becomes transparent is crucial since it determines how much after the GW signal will the light curve peak.
Devoid of any other external source of heating, the ejecta would be so cold when it first becomes transparent,
that the whole transient would be basically invisible.
It is the continued heating of the ejecta by external processes what brightens the Kilonova.
As we mentioned before, the primary heating mechanism is the radioactive heating by r-process nuclei decay.
This alone is enough to heat the environment to shine as much as 1,000 times brighter than a Nova.
Nonetheless other contributions to the main heating rate of the ejecta are important to determine
the key observables of the Kilonova such as peak time, luminosity and effective temperature of the ejecta.
% Here other heating mechanisms
% The process just described is the current paradigm of Kilonova emission.
% Other EM components that are not derived from this mechanism are
% about day-long optical (?blue?) emission from lanthanide-free components of the ejecta;
% an hour- long precursor UV/blue emission, powered by the decay of free neutrons in the outermost ejecta layers (macronova);
% and enhanced emission due to energy input from a long-lived central engine, such as an accreting BH or millisecond magnetar.
In the BH-NS merger case, there is a chance of Kilonova emission if there is enough NS disruption
to get a suitable environment with enough neutron rich ejecta to spark r-process and the subsequent radioactive heating.
This can only happen in situations where the BH mass is low enough so that it won't swallow the NS entirely during the inspiral phase and if the BH is rotating rapidly.
The condition is roughly that the tidal radius of the NS exceed the innermost stable circular orbit of the BH.
For a NS of radius 12 km and mass 1.4 $M_{\odot}$, the BH mass can be as high as 12 $M_{\odot}$ (for a spin parameter of 0.95) but not higher.
A non-spinning BH would have to be very small to allow for tidal disruption and hence will yield a non-detectable signal.
(\citet{2012PhRvD..85d4015F} and references therein).
Finally, even though BH-BH mergers can have strong GW emission signals, they lack an EM counterpart,
except perhaps in very specific situations, mainly due to lack of baryonic matter.
The end product of a NS-NS or BH-NS merger is a central compact remnant, either a BH or a NS.
In the case of Binary NS systems, if the total mass of the original system exceeds a critical mass $M_{crit}$
the remnant NS will collapse into a BH essentially immediately, on the dynamical time of milliseconds or less
(\citet{2011PhRvD..83l4008H, 2013ApJ...773...78B}).
The actual value for $M_{crit}$ is highly dependent on the equation of state (EOS) chosen for the NS,
but it ranges between 2.6 and 3.9$M_{\odot}$.
Below the $M_{crit}$ value, we can still have a NS remnant supported by rotation, at least temporarily.
A massive NS remnant, which is supported exclusively by its differential rotation, is known as a \emph{hypermassive} NS (HMNS).
(\citet{2000ApJ...528L..29B, 2010ApJ...724L.199O, 2014ApJ...790...19K})
If the NS remnant is somewhat less massive, it can also be supported by its solid body rotation and it is known as a \emph{supramassive} NS (SMNS).
HMSN will decay rapidly into a BH after a few hundreds milliseconds after the merger, while SMNS can remain stable for minutes or much longer before collapsing
(\citet{2006PhRvD..73f4027S, 2006PhRvL..96c1101D, 2013PhRvD..87l1302S}).
Finally, if the NS remnant has a total mass less than the maximum mass of a non-rotating NS, it will remain a stable NS
(\citet{2008ApJ...676.1130M, 2013ApJ...771L..26G}).
At least a moderate fraction of NS-NS mergers are likely to be supramassive (\citet{2010ApJ...724L.199O}), with a chance to be indefinitely stable.
Energy input from such long-lived remnants could substantially enhance the kilonova emission.
\begin{comment}
The variety of sources which contribute to heating the ejecta, particularly on timescales when the ejecta is first becoming transparent,
will determine the specific characteristics of the light-curve of the Kilonova.
At a minimum, the ejecta receives heating from the radioactive decay of heavy nuclei synthesized in the ejecta by the r-process.
* Infrared Emission
In the tidal tails in the equatorial plane, or in more spherical outflows from the accretion disk in cases when BH formation is prompt or the HMNS phase is short-lived, the highly neutron-rich matter (Ye < 0.29) will form heavy r-process nuclei.
This r-process will peak in the near infra-red (NIR) at J and K bands (1.2 and 2.2 ??m, respectively) on a timescale of several days to a week.
* Blue Emission
In addition to the highly neutron-rich ejecta (Ye < 0.29), growing evidence suggests that some of the matter which is unbound from a NS-NS merger is less neutron rich (Ye > 0.29; e.g. Wanajo et al. 2014a; Goriely et al. 2015) and thus will be free of Lanthanide group elements (Metzger \& Fernandez 2014). This low-opacity ejecta can reside either in the polar regions, due to dynamical ejection from the NS-NS merger interface, or in more isotropic outflows from the accretion disk in cases when BH formation is significantly delayed.
By assuming a lower opacity appropriate to Lanthanide-free ejecta, the emission now peaks at the visual bands R and I, on a timescale of about 1 day at a level 2-3 magnitudes brighter than the Lanthanide-rich case.
In general, the total kilonova emission from a NS-NS merger will be a combination of `blue' and `red' components, as both high- and low-Ye ejecta components could be visible for viewing angles close to the binary rotation axis (Fig. 4). For equatorial viewing angles, the blue emission is likely to be blocked by the higher opacity of the lanthanide-rich equatorial matter (Kasen et al. 2015). Thus, although the week-long NIR transient is fairly generic, an early blue kilonova will be observed in only a fraction of mergers.
* Magnetar remnant KN
The type of compact remnant produced by a NS-NS merger (e.g. prompt BH formation, hypermassive NS, supramassive NS, or indefinitely stable NS) depends sensitively on the total mass of the binary relative to the maximum mass of a non-rotating NS, Mmax($\Omega$ = 0). The value of Mmax($\Omega$ = 0) exceeds about 2solar masses (Demorest et al. 2010, Antoniadis et al. 2013) but is otherwise unconstrained by observations or theory up to the maximum value about 3solar masses set by the causality limit on the EOS. A `typical' merger of two about 1.3-1.4sm NS results in a remnant mass of about 2.3-2.4sm after accounting for neutrino losses and mass ejection (e.g., Belczynski et al. 2008). If the value of Mmax($\Omega$ = 0) is well below this value (e.g. 2.1-2.2sm), then most mergers will undergo prompt collapse or form hypermassive NSs with very short lifetimes. On the other hand, if the value of Mmax($\Omega$ = 0) is close to or exceeds 2.3-2.4sm, then a order unity fraction of NS-NS mergers could result in long-lived supramassive or indefinitely stable remnants.
If the rotational energy could be extracted in non-GW channels on timescales of hours to years after the merger (e.g., by magnetic dipole radiation), this could substantially enhance the EM emission from NS-NS mergers (e.g. Gao et al. 2013; Metzger \& Piro 2014; Gao et al. 2015; Siegel \& Ciolfi 2016a). However, for NSs of mass Mns Mmax($\Omega$ = 0), only a fraction of the rotational energy is available to power EM emission, even in principle. This is because the loss of angular momentum that accompanies spin-down results in the NS collapsing into a BH before all of its rotational energy is released.
Nonetheless, there are several mechanisms to extract rotational energy from the indefinitely stable magnetar remnant.
There is plenty literature on the subject that suggests that rotational energy input from a stable magnetar could enhance kilonova emission. The emission is still red in color and peaks on a timescale of 1 to 2 weeks, but the luminosity is greatly enhanced compared to the radioactive case, with peak magnitudes of K $\approx$ 18- 20
* Enhancing from free neutrons
In addition to the blue and red components, recent NS-NS merger simulations show that a small fraction of the dynamical ejecta (typically a few percent, or about 1E-4sm) expands sufficiently rapidly that the neutrons do not have time to be captured into nuclei (Bauswein et al., 2013a). This fast expanding matter, which reaches asymptotic velocities v about 0.4-0.5 c, originates from the shock- heated interface between the merging stars and resides on the outermost layers of the polar ejecta. This `neutron skin' can super-heat the outer layers of the ejecta, enhancing the early kilonova emission (Metzger et al. 2015; Lippuner \& Roberts 2015).
\end{comment}
\subsection{Model Simulation of Light-curves}
\citet{2015MNRAS.450.1777K} used simulations to generate the spectrum of a Kilonova r-process emission
every 0.1 days after merger, within a wavelength range of 200--30000 \r{A}.
They also generated synthetic light curves in three different wavelength ranges: 3500--5000 \r{A} (``blue''), 5000--7000 \r{A} (``red'') and 1--3$\mu$m (``infrared'').
See figure \ref{fig:KNlightcurve}.
Peak luminosities for the blue emission ranges between 4--10$\times$10${}^{40}$ erg/s depending on the model,
in the red band it has a peak intensity of 2--40$\times$10${}^{40}$ ergs/s
and in the infrared band it peaks with an intensity of about 1--2$\times$10${}^{40}$ ergs/s.
The light curves peak about 2 days after the merger for the red and blue components and decays steeply in about a day.
The infrared curve peaks about 3 days after the merger with a much slower decay rate and remains on the same order of magnitude brightness for about a week before fading.
\begin{figure}
\centering
\includegraphics[scale=0.6]{figures/kilonova_lightcurves}
\caption{Kilonova light curves for a composite ejecta including a lanthanide-poor disk wind from a HMNS remnant with lifetime 100 ms,
and a lanthanide-rich torus of dynamical ejecta.
Colored curves show the optical light curves as a function of observer inclination from the rotation axis,
while black curves show near infrared emission. Figure from \citet{2015MNRAS.450.1777K}.}
\label{fig:KNlightcurve}
\end{figure}
\subsection{Observational Evidence}
In 2013, \citet{2013Natur.500..547T} and \citet{2013ApJ...774L..23B} reported evidence
that suggests a companion Kilonova to the short GRB 130603B (see figure \ref{fig:tanvir}).
GRB 130603B was detected on BATSE with a $T_{90}$ of about 0.18 s and a redshift $z$ = 0.356.
It was also detected by Konus-Wind with a duration $T_{90}$ of 0.09 s.
The localization of the GRB to its host galaxy was done by a optical afterglow detected at the William Herschel Telescope 2.7 hours after the event.
This optical afterglow faded away afterwards, marking the link to GRB 130603B.
\citet{2013Natur.500..547T} imaged the localization area with the Hubble Space Telescope (HST) during a whole orbit in two epochs,
9 days after and 30 days after the burst. They used both the optical F606W filter (0.6 $\mu$m) and the nIR F160W filter (1.6 $\mu$m).
Using differential photometry (see section \ref{section:dia}) for the two epochs, they found a very faint excess of flux at the host galaxy.
Their photometry analysis gave a magnitude R606,AB > 28.25 (2$\sigma$ upper limit) and H160,AB = 25.73 $\pm$ 0.20.
\citet{2013ApJ...774L..23B} also imaged the area with HST for two different epochs, one 9.4 days after and another one \textasciitilde30 days later.
Using differential photometry, they found a point source
with magnitude r = 21.56 $\pm$ 0.02 mag at 8.2 hr and r $\gtrsim$ 24.8 mag (3$\sigma$) at 32.2 hr.
Even though the source was very faint, the magnitude and color observed by HST
were in accordance to the prediction of numerical merger models for a Kilonova.
However, the sources were too faint to make any conclusive statement about its nature.
\begin{figure}
\centering
\includegraphics[scale=0.3]{figures/tanvir_kilonova}
\caption{HST imaging of the location of SGRB 130603B. The left-hand panel shows the host and surrounding field.
The next panels show in sequence the first epoch and second epoch imaging, and difference (upper row F606W/optical and lower row F160W/nIR).
Figure from \citet{2013Natur.500..547T}.}
\label{fig:tanvir}
\end{figure}
There were two other searches for NIR emission for the afterglow of GRB 060614 by \citet{2015ApJ...811L..22J} and \citet{2015NatCo...6E7323Y}.
They are indicative of possible r-process emission of a Kilonova.
Finding a Kilonova companion to a GW NS-NS merger or BH-NS would be a direct confirmation of the association
between Kilonovae, the r-process during a compact object merger, and the short kind of GRBs.
\section{Conclusion}
In summary, Kilonova emission is an ideal EM counterpart to the LIGO observations.
As previously said, unlike GRBs, Kilonova emission is isotropic.
Even though short GRBs emission is also present during the BNS merger, the r-process emission in the jet and other merger neutron ejecta, is fairly isotropic.
The chances to detect the GRB jet are very limited by the collimation of the jet and our line of sight, but r-process radiation is not.
The Kilonovae are bright.
It was based on their derived peak luminosities, of approximately 1,000 times brighter than a nova, that Metzger et al. (2010) first introduced the term `kilonova' to describe this EM counterparts.
Another fundamental element that the multi-messenger astronomy contributes with,
is the identification of host galaxies.
The inference of the distance to the GW event using the redshift of the host galaxy will greatly reduce degeneracy in the GW parameter estimation,
especially of the binary inclination with respect to the line of sight.
It will also give a better estimate of the energies involved in the merger.
Other interesting environment properties can be derived from the Kilonova detection, like age of the stellar population and possible displacements due to SN birth kicks.
But most importantly, the merger of a binary system involving a NS is very complex and several kind of factors can effect the radiation pattern and light-curve of the Kilonova as well as the GW waveform.
The optical light curve can serve as a probe into the core of the system and shed light to the intricacies and details of the merger process.
\begin{comment}
Rate of GRBs from NS-NS mergers is low, less than once per year all-sky. (e.g. \citet{2012ApJ...746...48M})
We should not expect the first --or even the first several dozen-- GW chirps from NS-NS/BH-NS mergers to be accompanied by a GRB.
Population synthesis models of field binaries predict GW detection rates of NS-NS/BH-NS mergers of about 0.2-300 per year,
once Advanced LIGO/Virgo reach their full design sensitivities near the end of this decade (e.g. \citet{2010CQGra..27q3001A, 2015ApJ...806..263D}).
Empirical rates based on observed binary pulsar systems in our galaxy predict a comparable range,
with a best bet rate of about 8 NS-NS mergers per year (\citet{2004ApJ...601L.179K, 2015ApJ...815...67K}).
\textcolor{red}{From here on, this is brought from the toros section}
Black Hole-Neutron Star (BH-NS) or Binary Neutron Stars (BNS) mergers are among the expected events detectable by the LVC.
These highly energetic events will emit GW radiation in the frequency range of LIGO and Virgo sensitivity, strong enough to be detected up to a few hundreds Mpc of distance.
The precise maximum detection distance depends mainly of the masses involved in the merger, as well as other geometrical and spin parameters, but it sits at around 400 Mpc.
BNS and BH-NS mergers have long been proposed as the process leading to short-hard gamma-ray bursts (SGRBs)
(\citet{1989Natur.340..126E, 1992ApJ...395L..83N}), but unfortunately this emission is beamed and thus can only be observed in a small fraction of the events.
Mergers with NS are also predicted to be accompanied by a more isotropic EM counterpart, commonly known as a `Kilonova'.
Kilonovae are day to week-long thermal, supernova-like transients, which are powered by the radioactive decay of heavy, neutron-rich elements synthesized in the expanding merger ejecta (\citet{1998ApJ...507L..59L}).
\end{comment}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% TOROS
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter{The TOROS Project}
In 2011, scientists from the Center for Gravitational Wave Astronomy (CGWA) at
The University of Texas at Brownsville (UTB)
and the Observatorio Astronomico de Cordoba (OAC) and Instituto de Astronomia Teorica y Experimental (IATE) (the last two in Argentina)
established the TOROS project (\citet{2014EAS....67..357B})
to scan likely areas of the localization uncertainty sky map of the GW trigger, looking for possible optical counterparts.
%to respond to the LVC GW triggers with a wide field search for possible optical counterparts in likely areas of the localization uncertainty sky map.
%Motivated by complementing the LIGO observations in the electromagnetic (EM) side, Dr. Mario Diaz from UT RGV founded the TOROS project. TOROS (the Transient Optical Robotic Observatory of the South), has the main goal of scanning the uncertainty region of the LIGO localization map for GW events, with a wide field telescope and a large CCD pixel camera, searching for EM transients candidates for counterparts for such GW event.
TOROS stands for Transient Optical Robotic Observatory of the South,
and its original project consisted in the construction of an observatory site in Cordon Macon,
a mountain top at 4637 m above sea level, in the Andes mountain range in the north of Argentina.
Cordon Macon is a location with high quality seeing and excellent photometric quality.
The mean and median of the seeing measurements obtained at Macon are 0.70'' and 0.55'', respectively (\citet{2009BAAA...52..285R}).
Several sites within the area around Cordon Macon were considered for the location of the European Extremely Large Telescope, including a site on the Macon Ridge itself.
%It will also link the network of observatories to the sky in the Southern hemisphere.
The proposed TOROS telescope would have a 0.6 m aperture and a 9.85 sq. deg. field of view.
When fully operational it is planned to have three basic modes of operation:
follow up of GW triggers;
follow up of gamma-ray burst triggers from Fermi, Swift, and other missions;
and baseline imaging of the entire surveyable area.
It is also included in the full project the inclusion of a data reduction and processing pipeline for transient detection, as well as a database for the dissemination of catalogs and triggers.
While the original project remains on hold awaiting for proper financing of the facility, several other institutions showed interest to participate as well.
This broadened the TOROS project into a wider collaboration of telescopes instead of the single telescope in Argentina that was originally envisioned.
%The collaboration has now partners in Mexico, and the Gemini spectrograph as well as the telescopes in Chile and Cordoba previously mentioned. \textcolor{red}{Use this paragraph to include all the participating institutions}
Whether it be the original design or the new dynamic proposed by the enlargement of the collaboration,
the interesting targets to TOROS remain the mergers with at least one NS, because of its several radiation messengers.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% PIPELINE
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Building a software pipeline for TOROS}
Since the ultimate goal of the TOROS Project is the robotization of the telescope,
it is important to have in place a software `pipeline' that makes the processing as automatic as possible,
removing the need for human intervention at all stages, from receiving the alert to propose new transient candidates.
The whole operation of TOROS can be divided into several stages
as in the diagram of figure \ref{fig:flowchart}.
\begin{figure}
\centering
\scalebox{0.8}{
\begin{tikzpicture}[node distance = 2.2cm]
% Place nodes
\node [cloud] (ligo) {LVC Alert System};
\node [cloud, below of=ligo] (robot) {TOROS Alert Robot};
\node [xshift=-3cm, left of=robot] (collabx) {\ldots};
\node [xshift=3cm, right of=robot] (collaby) {\ldots};
\node [block, below of=robot] (skymap) {Retrieve Skymap};
\node [block, below of=skymap] (targets) {Target Selection (Scheduler)};
\node [block, below of=targets] (broker) {Broker Website};
\node [obse, below of=broker] (obsx) {Observatory X};
\node [obse, left of=obsx, xshift=-1.5cm, yshift=0.5cm] (obsy) {Observatory Y};
\node [below of=obsy] (ldots) {\ldots};
\node [block, below of=obsx] (images) {Take Images \& Data Reduction};
\node [block, right of=images, xshift=8em] (refimages) {A posteriori Images \& Data Reduction};
\node[block, below of=refimages] (align) {Alignment};
\node [block, below of=images] (dia) {Difference Image Analysis};
\node [block, below of=dia] (realbogus) {Real/Bogus ML};
\node [block, below of=realbogus] (science) {Science};