-
Notifications
You must be signed in to change notification settings - Fork 0
/
mythesis.tex
1616 lines (1210 loc) · 117 KB
/
mythesis.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
\documentclass{wihuri}
%\usepackage{isolatin1} % Saadaan ääkköset toimimaan !
%\usepackage[latin1]{inputenc} % Saadaan oikeat merkit
\usepackage[utf8]{inputenc} % Tällä toimii utf-8
\usepackage[T1]{fontenc} % Ja tämä liittyy edelliseen
\usepackage[finnish]{babel} %Suomenkielinen tavutus
\usepackage{tytiivis} %Tiivistelmäsivun laatimiseksi
%\usepackage[dvips]{graphicx}%Saadaan kuvat toimimaan %I commented
\usepackage{lastpage}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{gensymb}
%###
\usepackage{epsfig}
\usepackage{times}
\usepackage{enumerate}
\usepackage{float}
\usepackage{epstopdf}
\usepackage{amsfonts}
\usepackage{changepage}
\addto\captionsfinnish{%
\renewcommand{\refname}%
{References}%
}
\addto\captionsfinnish{%
\renewcommand{\contentsname}%
{Contents}%
}
\addto\captionsfinnish{%
\renewcommand{\figurename}%
{Figure}%
}
\addto\captionsfinnish{%
\renewcommand{\tablename}%
{Table}%
}
\def\rg{r_{\rm S}} % Schwarzschild radius
\def\be{\begin{equation}}
\def\ee{\end{equation}}
\def\bc{\begin{center}}
\def\ec{\end{center}}
\def\beq{\begin{eqnarray}}
\def\eeq{\end{eqnarray}}
\def\msun{{\rm M_{\odot}}}
\def\d{{\rm d}}
\def\Ledd{L_{\rm Edd}}
\def\xte{{\it RXTE}}
\def\Ginga{{\it Ginga}}
%\def\deg{^{\circ}}
\def\rinf{r_{\rm spot, \infty}}
\def\Tinf{T_{\infty}}
\def\Te{T_{\rm e}}
\def\phip{\phi_{\rm p}}
\def\phis{\phi_{\rm s}}
\def\alphap{\alpha_{\rm p}}
\def\alphas{\alpha_{\rm s}}
%\def\muv{\mu_{\rm v}}
\def\rg{r_{\rm S}} % Schwarzschild radius
\def\betaeq{\beta_{\rm eq}}
%\def\Dop{{\cal{D}}}
\def\Dop{\delta}
\def\taut{\tau_{\rm es}}
\def\source{SAX J$1808.4-3658$}
\def\sourceb{SAX J$1748.9-2021$}
\def\mumin{\mu_{\rm min}}
\def\mumax{\mu_{\rm max}}
\def\phiobs{\phi_{\rm obs}}
\def\ani{h}
\def\thetas{\theta_{S}}
\def\tstep{\mathsf{t}}
\def\bolo{\mathrm{B}}
\def\ene{E}%\mathrm{E}}
\def\lratio{\mathcal{R}}
\def\req{R_{\mathrm{eq}}}
%###
%
% Esimerkkejä uusien käskyjen määrittelyistä.
% Käsky \mathbi{``vektorin symboli''} luo boldin italicin kirjaimen. Kreikkalaisille
% kirjaimille taitaa olla pakko käyttää \pmb:tä.
%\newcommand{\mathbi}[1]{\textbf{\em #1}}
%\newcommand{\bmath}[1]{\textbf{\em #1}}
\newcommand{\bmath}[1]{\boldsymbol{#1}}
%\newcommand{\bbeta}[1]{\bmath{\beta #1}}
% Käsky \der luo derivaatan d:n
\newcommand{\der}{\mbox{d}}
%
%\DeclareMathAlphabet{\mathpzc}{OT1}{pzc}{m}{it}
\begin{document}
\bibliographystyle{wihuri} %Tyylitiedosto "wihuri.bst". Hieman muutettu alkuperäisestä wihuri-versiosta.
%\title{Gradu}
%\opinnayte{Pro Gradu}
%\author{Fil. yo. Tuomo Salmi}
%\vuosi{2004}
%\oppiaine{Fysiikka}
%\tarkastaja{P.P.}
%\tarkastaja{H.H.}
\title{Mass and radius constraints for neutron stars
from pulse shape modeling}
\opinnayte{Master's Thesis}
\author{Tuomo Salmi}
\vuosi{2016}
\oppiaine{Astronomy}
\tarkastaja{Juri Poutanen}
\tarkastaja{Joonas Nättilä}
\maketitle
\newpage
\thispagestyle{empty}
\vspace*{10cm}
\vfill
%\hspace*{-2cm}\parbox{\textwidth}{Turun yliopiston laatujärjestelmän mukaisesti
% tämän julkaisun alkuperäisyys on tarkastettu Turnitin
% OriginalityCheck-järjestelmällä}
\hspace*{-2cm}\parbox{\textwidth}{The originality of this thesis has been checked in accordance with the University of Turku quality assurance system using the Turnitin Originality check}
%Huomaa, että joudut kuitenkin printtaamaan tämän sivun erikseen
%kaksipuoleseksi kannen kanssa.
\newpage
%\begin{tiivistelma}%
% {Fysiikan laitos}%
% {Salmi, Tuomo}%
% {Tutkielman otsikko}
% {Pro Gradu, \pageref{LastPage} s., 3 liites.}%
% {Fysiikka}% Oppiaine
% {Huhtikuu 2004}%
% Tiivistä tähän !
%\end{tiivistelma}
\begin{tiivistelma}%
{Department of Physics and Astronomy}%
{SALMI, TUOMO:}%
{Mass and radius constraints for neutron stars
from pulse shape modeling}
{Master's thesis, \pageref{LastPage} pages}%s., 3 Appendices}%
{Astronomy}% Oppiaine
{November 2016}%
Neutron stars are the most compact directly observable objects. The matter inside a neutron star is at supranuclear densities. The equation of state (EOS) of neutron stars describes the properties of such dense matter. Separation between numerous theoretical EOSs is possible if we are able to constrain the possible masses and radii of neutron stars from observations.
In this thesis we present one method that can be used to constrain masses and radii of neutron stars. The method is suitable for accreting millisecond pulsars, where a rapidly rotating neutron star, called a millisecond pulsar, accretes matter from a relatively low mass companion star, via an accretion disc, onto the magnetic poles of the neutron star. Because of the accretion, we observe radiation from two "hot spots" \ on the neutron star surface. This radiation is pulsating coherently at the spinning frequency of the neutron star. The exact shape of the pulses can be modeled with a theoretical model that takes into account the general and special relativistic effects via "Schwarzschild-Doppler" \ approximation and the oblate shape of the star caused by the fast rotation. The details of this model are discussed.
The pulse profiles carry information about the mass and radius of a neutron star since e.g., the light bending and thus pulse shape depends strongly on the compactness of the star. Also many other physical parameters and observing angles affect the light curves. Therefore, we use Bayesian analysis and a novel Monte Carlo sampling method, called "ensemble sampler", to obtain probability distributions for the different parameters, especially for the mass and the radius. The ensemble sampler has shown to overcome many difficulties concerning the traditional Metropolis-Hastings sampler.
We have also generated synthetic data to test our method and fitted the pulse profiles to these data. The results of our samplings, using these synthetic data, show that obtaining new constraints for radius and mass is not a very easy task. However, according to our study, prior information obtained from polarization measurements may be used the get significantly tighter constraints.
$keywords: ~Neutron ~stars, ~Accreting ~millisecond ~pulsars, ~Pulse ~profile ~modeling, \\ ~Bayesian ~analysis, ~Ensemble ~sampler, ~Mass ~and ~radius ~constraints$
\end{tiivistelma}
\pagenumbering{gobble}
\section*{Acknowledgements}
First of all, I would like to thank my supervisors Professor Juri Poutanen and Joonas Nättilä for a very interesting and challenging topic. The support I got was extremely helpful, especially the theoretical advice from Juri, and the tools of analysis and all the other support from Joonas. I would also like to thank all the people in the astrophysics research group for the interesting discussions and support in
general. Finally, I wish to thank my family and friends %and especially Laura
for support and encouragement throughout my studies.
\newpage
\tableofcontents %Sisällysluettelo
\newpage
\pagenumbering{arabic}
%\pagenumbering{gobble}
%\section*{Acknowledgement}
%\newpage
%\pagenumbering{arabic}
\section*{Introduction}
\addcontentsline{toc}{section}{Introduction}
%Näin tehtynä Johdannolle ei tule numeroa sisälllysluetteloon
Rapidly rotating neutron stars, called pulsars, are the lighthouses of the universe. Pulses can be observed when an electromagnetic beam from a neutron star is emitted towards the Earth. In some cases this emission may be created when matter is accreted onto the magnetic poles at the surface of the pulsar. Light curves from these pulses can be detected in many wavelengths. For example, the most rapidly rotating accreting pulsars, called accreting millisecond pulsars,
have been detected in the X-ray band of the electromagnetic spectrum. %The rapidly rotating pulsars are called millisecond pulsars.
The exact shape of the pulses may reveal us important information about the properties of the neutron stars. The determination of the mass-radius relation of neutron stars through observations is one of the fundamental problems in astrophysics. This information could provide tight constraints on the equation of state (EOS) of the ultra-dense matter located inside neutron stars \cite{lattimer2007} \cite{hebeler}. Densities of this high are otherwise unattainable.
%This high densities of cold matter is otherwise unattainable.
Studies of the light curves of pulsars can therefore help to determine the properties of such matter. The properties of matter at extremely high densities are also among the most important questions in physics and astronomy.
%One way to constrain masses and radii is to use X-ray burst observations of neutron stars. Models of burst oscillations waveforms (pulses during the burst) can be fit to observations of these waveforms.
One way to constrain masses and radii is to use X-ray oscillations produced by the rotation of accreting millisecond pulsars. Models of these oscillations can be compared to observed waveforms.
The mass and radius of neutron star have an effect on the waveform because of the influence e.g., on the light bending due to general relativity. However, many other parameters have also an impact on the light curves making it challenging to get more strict constraints to radius and mass. Markov chain Monte Carlo sampling and high-performance computing are necessities when trying to find the correct values for these parameters.
\vspace{10cm}
\iffalse
Gradua kirjoitettaessa on hyvä muistaa muutamat perussäännöt:
\begin{enumerate}
\item Kaikkiin
kuviin tulee viitata tekstissä, esim. ``Kuvasta \ref{kuva1} nähdään,
että kuviin viittaaminen on latexissa lastenleikkiä''.
\item Kuvat ja taulukot kuuluvat oikeasti sivujen ylälaitaan. Latex
tekee tämän automaattisesti oikein, älä lisäile mitään paikkamääreitä.
\item Kuvat tulisi laatia kohtuullisen tiiviiksi. Siten, että kuva-ala
tulee kokonaan hyötykäyttöön.
\item Kuva- ja taulukkoteksteissä kuuluu olla niin paljon tietoa, että
kuva/taulukko on ymmärrettävissä ilman tekstin lukua, mm. suureet ja
lyhenteet tulee esitellä.
\item Jos otat kuvan jostain lähteestä, muista viitata. Gradut menevät
myös sähköiseen arkistoon: muista copyright!
\item Esittele kaikki lyhenteet ensimmäisen käytön yhteydessä:
esim. elektronimikroskooppi (SEM).
\item Jos joudut keksimään itse käännöksiä termeille, lisää
ensimmäisen käyttökerran jälkeen alkuperäinen
termi. Esim. lukkiutumispotentiaali (engl. pinning potential)
\item Suureet kirjoitetaan italicilla, kuten $\rho = m/V$. Yksiköt sen
sijaan romanilla, esim. 1 m$^2$. Vektorit boldilla italicilla,
$\mathbi{v}$.
\item Kaavat ovat osa tekstiä, näin ollen pilkut ja pisteet tulevat
kaavan sisään.
\item Kaavojen jälkeen esitellään kaikki uudet suureet. Esim Newtonin
toinen laki on
\begin{equation}
\mathbi{F} = m\mathbi{a},
\end{equation}
missä $\mathbi{F}$ on kappaleeseen vaikuttava voima, $m$ on kappaleen
massa ja $\mathbi{a}$ on sen kiihtyvyys.
\item Jos koko kappaleen tiedot ovat yhdestä lähteestä, lähdeviite
tulee kappaleen loppuun, pisteen jälkeen. Kaikissa muissa
tapauksissa ennen pistettä. Muista viitata aina, kun otat käyttöön
numeroarvoja tai muuta tarkkaa tietoa.
\end{enumerate}
Näitä noudattamalla saadaan vähennettyä ainakin yksi tarkastuskierros.
%\section{Tästä alkaa teoriaosuus}
\fi
\section{Neutron stars}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{figure}
%\centerline{\epsfig{file=oblate_fig.png,width=8.0cm}}
\centerline{\epsfig{file=eos_mr.png,width=12.0cm}}
%or maybe lattimer instead
\caption{Mass-radius diagram for neutron stars \cite{lattimer}. Black curves are for normal matter and green curves for SQM equations of state. Regions excluded by general relativity (GR), causality, and rotation constraints are indicated. The rotation constraint is obtained from the highest measured spin frequency ($641$ Hz). The orange curves show the contours of constant radiation radii $R_{\infty}$. The dashed line $\Delta I / I = 0.014$ is a limit estimated from the glitches of Vela pulsar \cite{lattimer2001}. From Lattimer \& Prakash (2004) \cite{lattimer}.}
\label{fig:eos_mr}
\end{figure}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Neutron stars are some of the most dense and massive objects in the
Universe. Typical mass $M$ of a neutron star is on the order of $1.5$ solar masses ($\msun$), %($M_{\odot}$),
and typical radius $R$ on the order of $12$ km. The central density $n_{c}$ can be from $5$ to $10$ times the nuclear equilibrium density $n_{0} \approx 0.16 ~\mathrm{fm}^{-3}$ of neutrons and protons found in laboratory nuclei \cite{lattimer}. Neutrons dominate the nucleonic content of neutron stars, but also some protons, electrons and muons exist. At the supernuclear densities more exotic baryons, mesons or quarks may also appear. The composition of the innermost core of the neutron star is still unknown. Superfluidity and/or superconductivity of the matter %fermions are
is in any case expected inside the star. In Figure \ref{fig:eos_mr} a typical mass-radius plane of neutron stars is shown, with various EOSs.
Neutron stars are created after the gravitational collapse of a core of a
massive star ($>8~\msun$) at the end of its life. The collapse also triggers a Type II supernova explosion \cite{lattimer}. Stars more massive than about $25 ~\msun$ collapse instead into a black hole. The general relativistic Schwarzschild condition
\be \label{eq:schw_cond}
R > \frac{2GM}{c^{2}},
\ee
where $G$ is the gravitational constant and $c$ is the speed of light, %constrains the possible mass %and radius of neutron stars.
differentiates neutron stars from black holes. More compact objects (for which $R < 2GM/c^{2}$) are inside the event horizon meaning that the light cannot escape the object. This constraint is presented in Figure \ref{fig:eos_mr} as a blue region.
A more strict upper bound to the compactness (ratio between the mass and radius) of a neutron star follows
the fact \cite{rhoades} %(/PhysRevLett.32.324 )
that the speed of sound in dense matter has to be less than the speed of light. This gives us the so-called causality condition
\be \label{eq:causality}
R \gtrsim \frac{3GM}{c^{2}}.
\ee
This constraint is shown in Figure \ref{fig:eos_mr} as a green region. Neutron stars have also a minimum stable mass, which is about $0.1 ~\msun$, although the origin of neutron star in a supernova gives a more realistic minimum (on the order of $1.1 ~\msun$) \cite{lattimer2013}.
A lower limit for the compactness of a neutron star can be obtained from its spin frequency. The radius of the star cannot extend further than the point where the spin frequency equals to the Keplerian frequency. Assuming a rigid Newtonian sphere, this frequency can be expressed as
\be \label{eq:keplerian}
\nu_{\mathrm{K}} = 2 \pi \sqrt{\frac{GM}{r^{3}}},
\ee
where $r$ is the distance from the center of the star. Thus, at $r=R$, $~\nu_{\mathrm{K}}$ has to be higher than the observed spin frequency, and we get a lower limit for $M/R^{3}$. This constraint is shown in Figure \ref{fig:eos_mr} for the highest measured rotational frequency ($641$ Hz \cite{lattimer}) as a red region. One should also take into account the non-spherical shape and the general relativistic effects, but a lower limit is still obtained.
%https://arxiv.org/pdf/1010.5788v1.pdf %add this to reference......somewhere
%shapiro 2.0 mass NS...
%The Oppenheimer-Volkoff general relativistic equations for a spherically symmetric (non-rotating) neutron star
Generally, the mass-radius ($M-R$) relation is determined by the equations of hydrostatic equilibrium. For a general relativistic and spherically symmetric (non-rotating) object %under hydrostatic equilibrium
these are the so-called Tolman-Oppenheimer-Volkoff equations %(Tolman,
%1934 \cite{tolman}; Oppenheimer \& Volkoff, 1939 \cite{oppenheimer})
\cite{tolman} \cite{oppenheimer}:
\be
\frac{\d \mathcal{P}}{\d r} = -\frac{G[m(r)+4 \pi r^{3}\mathcal{P}/c^{2}](\rho_{\mathrm{m}} + \mathcal{P}/c^{2})}{r[r-2Gm(r)/c^{2}]},
\ee
and
\be
\frac{\d m(r)}{\d r } = 4 \pi \rho_{\mathrm{m}} r^{2},
\ee
where $\mathcal{P}$ and $\rho_{\mathrm{m}}$ are the pressure and mass-energy density, respectively, and $m(r)$ is the gravitational mass enclosed within a radius $r$. The $M-R$ relation can now be obtained if the relation between the pressure and the density $\mathcal{P}=\mathcal{P}(\rho_{\mathrm{m}})$ is known. This relation is called the EOS.
For realistic EOSs the previous equations must be numerically solved to obtain $M-R$ relations. These can be separated into three categories according to the compressibility of the matter: soft, moderate, and stiff equations of state. The determination of the EOS would thus allow us to find out the structure of a neutron star and the properties of the nucleonic matter inside it \cite{akmal}. Even the exteriors of neutron stars may be either normal hadronic matter or a so-called strange quark matter (SQM) depending on the EOS.
The number of possible EOSs can be reduced by observing which masses and radii the EOS should be able to produce. %Different EOSs are shown in Figure \ref{fig:eos_mr}.
The highest measured mass of a neutron star is close to two solar masses \cite{demorest} which rules out all the EOSs that cannot produce a mass so large. In Figure \ref{fig:eos_mr} this leaves only two possible EOSs, but there are also many EOSs which are not shown. %From the highest measured rotational frequency of a pulsar ($641$ Hz \cite{lattimer}) we get a lower limit for the compactness that an EOS must reach. This constraint and also constraints from the general relativity and causality (equations \ref{eq:schw_cond} and \ref{eq:causality}) are presented in the figure \ref{fig:eos_mr}.
The orange curves in Figure \ref{fig:eos_mr} show the contours of constant radiation radius $R_{\infty}$, which is the apparent radius of the object at "infinity". It is larger than $R$, since the light bending makes the star appear larger, and is given by \cite{lattimer2001}
\be \label{eq:rinfty}
R_{\infty} = \frac{R}{\sqrt{1-2GM/Rc^{2}}}.
\ee
Knowing the relation between the mass and radius of any particular neutron star gives also limits to the possible EOSs. For example, suddenly increased spin rates of pulsars ("glitches") have been used to get mass-radius relations \cite{lattimer2001}. It has been a strong indication that the star's moment of inertia $I$ acts as an angular momentum reservoir for the sudden spin-ups \cite{link1999}. The measured $\Delta I / I = 0.014$ for Vela pulsar gives the mass as a function of radius, and it is also shown as a dashed line in Figure \ref{fig:eos_mr}. The correct EOS of neutron star has to cross this line. In our work we aim to find out independent knowledge %(in terms of probability distributions)
of both mass and radius of observed pulsars using pulse profile modeling.
%using observations to constrain masses and radii of neutron stars.
%This is "rhoades":
%http://journals.aps.org/prl/pdf/10.1103/PhysRevLett.32.324 %link works in Tuorla
%Maximum Mass of a Neutron star*
%Clifford E. Rhoades, Jr.,t and Remo Ruffini
%Joseph Henry Iaboratomes, Princeton University, Princeton, Net Jersey 08540
%(Received 30 October 1972)
%On the basis of Einstein's theory of relativity, the principle of causality, and Le Chatelier's
%principle, it is here established that the maximum mass of the equilibrium configuration
%of a neutron star cd~not be larger than 3.2M'. The extremal principle given
%here applies as well when the equation of state of matter is unknown in a limited range of
%densities. The absolute maximum mass of a neutron star provides a decisive method of
%observationally distinguishing neutron stars from black holes.
%One more potential constraint on the EOS is based on the rotation of neutron stars. The velocity of the stellar surface cannot exceed the velocity of an orbiting particle suspended just above the surface ("break-up frequency"). The highest observed spin rate gives a lower limit to the compactness of the neutron star.
%VOLUME 32, NUMBER 6 PHYSICAL R E V I E W L E T T E R S 11 FEBRUARY 1974
\subsection{Accreting millisecond pulsars}
%https://arxiv.org/pdf/1206.2727v4.pdf
Rotating neutron stars were first detected as radio pulsars in 1967 \cite{gold68}. %http://adsabs.harvard.edu/abs/1968Natur.218..731G
After that, many different classes of pulsars have been discovered including those situated in low-mass X-ray binaries (LMXBs). LMXBs are systems in which the neutron star accretes matter from a non-collapsed companion (with a relatively low mass $M \lesssim \msun$) via an accretion disc. Accreting millisecond X-ray pulsars (AMXPs) are a subgroup of the LMXBs in which the gas from the accretion disc (stripped from the companion) is channeled onto the magnetic poles of a rapidly rotating neutron star. The result is a pair of "hot spots" \ on the pulsar surface. This gives rise to the X-ray pulsations with typical periods of a few milliseconds corresponding to the spin frequency of the neutron star. By definition, AMXPs are spinning at frequencies $\nu \ge 100 ~\mathrm{Hz}$ and have weak surface magnetic fields ($B \sim 10^{8-9}$ G) \cite{patruno}. A schematic view of the accretion onto the hot spots of the pulsar is shown in Figure \ref{fig:shcematic}.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{figure}
%\centerline{\epsfig{file=oblate_fig.png,width=8.0cm}}
\centerline{\epsfig{file=schematic.jpg,width=12.0cm}}
%or maybe lattimer instead
\caption{A view from a magnetohydrodynamical simulation for an accreting compact object with an inclined dipole field. The density of the streaming matter changes exponentially from blue to red. Red lines with arrows show selected magnetic field lines. The magnetic moment, $\bmath{\mu}$, and the rotation axis, $\bmath{\Omega}$, are also shown. From Romanova {\it et al}. (2004) \cite{romanova}.}
\label{fig:shcematic}
\end{figure}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%ROMANOCVA : http://iopscience.iop.org/article/10.1086/421867/pdf
The transfer of mass occurs in all known AMXPs via a Roche lobe overflow from the donor star. The equipotential surface of the binary systems gravitational and centrifugal forces (surrounding the star) is known as a Roche lobe. Both the neutron star and the companion have their own lobes that only join at the inner Lagrangian point $L_{1}$ \cite{frank85}. %http://adsabs.harvard.edu/abs/1985Sci...230.1269F (book in Tuorla)
In case when the Roche lobe of the companion star is full of matter, the gas left outside the companion's Roche Lobe starts to flow towards neutron star through the $L_{1}$ point. An accretion disc is formed because of the rotation of the system of the two stars.
The first AMXP discovered was \source. It is also used as a reference target in this thesis. %It is also the main observed target in this thesis.
The source was first found in 1996 by the Italian-Dutch {\it BeppoSAX} satellite \cite{zandsax1808}. %http://adsabs.harvard.edu/abs/1998A%26A...331L..25I
The first coherent pulsations (at $401$ Hz) were detected during the second outburst with NASA's {\it Rossi X-ray Timing Explorer} ({\it RXTE}) in 1998 \cite{wijnandssax1808}. %http://adsabs.harvard.edu/abs/1998Natur.394..344W
It provided a confirmation of the "recycling scenario" \ which states that AMXPs are the evolutionary progenitors of recycled radio millisecond pulsars. They are responsible for the conversion of slowly rotating neutron stars with high magnetic field ($B \sim 10^{12}$ G), into a rapidly spinning objects with a relatively weak magnetic field ($B \sim 10^{8}$ G) \cite{patruno}. The idea is that a weakening magnetic field allows accretion to happen. The angular momentum of the accreting matter is transferred to the pulsar resulting in the increase of its spin frequency.% of the pulsar.
%SAX J1808.4–3658 went into outburst again in 2000, 2002, 2005, 2008 and 2011,
%with an approximate recurrence time of about 1.6-3.3 yr, and is the best sampled and
After the first two outbursts, \source \ has gone into outburst several times reoccurring approximately every two to three years. It is the best sampled and studied object out of all AMXPs. Typically the outburst consists of five phases: a fast rise, with a steep increase in luminosity lasting only a few days, a peak, a slow decay stage, a fast decay phase, and the flaring tail. Except the last phase, the aforementioned outburst division is typical for several X-ray binaries and can in principle be partially explained with a so-called disc instability model \cite{disc-instability}. An example of a such outburst is shown in Figure \ref{fig:outburst}. %(see Figure \ref{fig:outburst} for a such outburst).
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{figure}
%\centerline{\epsfig{file=oblate_fig.png,width=8.0cm}}
\centerline{\epsfig{file=outburst.png,width=12.0cm}}
%or maybe lattimer instead
\caption{Light curve of the 2015 outburst of \sourceb \ as observed by {\it Swift-XRT} (black points) and {\it XMM-Newton} (the green star). From Sanna {\it et al}. (2016) \cite{outburst}.}% The green star represents
%the epoch of the XMM-Newton observation \cite{outburst}.}
\label{fig:outburst}
\end{figure}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%The typical outburst can be split in five phases: a
%fast rise, with a steep increase in luminosity lasting only a few days, a peak, a slow
%decay stage, a fast decay phase and the flaring tail. Except the last phase, they can in %principle be partially explained with the disk instability model.
%pulse profiles from which %phase?
The X-ray spectrum of the outbursts have also been analyzed, and there is evidence for a two component-model including a blackbody at lower energies and a hard Comptonization component at higher energies \cite{twocompmod}. %http://articles.adsabs.harvard.edu/cgi-bin/nph-iarticle_query?2002MNRAS.331..141G&defaultprint=YES&filetype=.pdf]
The heated hot spot on the neutron star surface is interpreted to produce the blackbody flux. The Comptonization is produced above the spot in an accretion shock. This shock is created as the plasma abruptly decelerates close to the neutron star surface. % at the bottom of the magnetic field lines.
\iffalse
The RXTE observatory has played an extraordinary role by discovering many
systems of this kind and by collecting extensive data records of each outburst detected
during its fifteen year lifetime. The excellent timing capabilities of RXTE
have brought new means to study NSs with coherent X-ray timing, and helped to
constrain the long term properties of many AMXPs over a baseline of more than
a decade. Observation of the orbital Doppler shift of the AMXP pulse frequency
contains information on the orbital parameters of the binary and their evolution in
time. Binary evolution has benefited from the study of AMXPs [13, 14, 15] which
are now known to include ultra-compact systems (orbital period Pb . 80 min) with
white dwarf companions, compact systems (Pb ≃ 1.5 − 3 hr) with brown dwarf
donors and wider systems (Pb ≃ 3.5 − 20 hr) with main sequence stars. Other Xray
and gamma ray space missions like XMM-Newton, INTEGRAL, Chandra, Swift
and HETE have also played an important role in discovering and understanding the
spectral and timing properties of these objects. Multiwavelength observations covering
radio, infrared, optical and UV wavelengths have also illuminated different
aspects of these fascinating systems. Several optical and infrared counterparts have
been identified with ground based observations and in some cases have led to the
discovery of the spectral type of the donor, while radio and infrared observations
have revealed the possible presence of jets.
\fi
\clearpage
\section{Methods}
%There have been many different attempts to constrain the masses and radii of neutron stars and thus also the possible equations of state. For example one approach is the so called cooling tail method, where the observed cooling tracks of thermonuclear X-ray bursts are compared to the accurate theoretical atmosphere model calculations \cite{nattila_bayes}. One other approach to measure $M$ and $R$ is to fit detailed spectral models to high-precision measurements of X-ray burst spectra \cite{madej}. %http://adsabs.harvard.edu/abs/2005AcA....55..349M
%This however requires very high-precision spectral data.
There have been many different attempts to constrain the masses and radii of neutron stars and thus also the possible equations of state. Our approach is to fit a pulse profile model to the observed X-ray oscillations of accretion-powered millisecond pulsars. In this section we first present our waveform model and then the Bayesian methods which we use to get constraints for the parameters of the model. %The final aim is to combine constraints obtained with different approaches.
\subsection{Pulse profile modeling}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{figure}
\centerline{\epsfig{file=data_sax1808.pdf,width=12.0cm}}
\caption{Normalized photon number fluxes at different energies as a function of the phase from \source \ measured with {\it RXTE}.
\label{fig:saxdata}}
\end{figure}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
The coherent flux oscillations at the rotational frequency (the light curves) of accreting millisecond pulsars (described in the first chapter) can be modeled with different models. One example of the observed pulse profiles (of \source) is shown in Figure \ref{fig:saxdata}. The model presented here assumes that the radiation is originated from one or two of the polar caps of the star. General and special relativistic effects have been taken into account using a so-called Schwarzschild-Doppler (S+D) approximation %(Miller, Lamb 1998
\cite{millerlamb98} %http://adsabs.harvard.edu/abs/1998ApJ...499L..37M
%, Poutanen, Gierlinski 2003
\cite{poutagierlinskisax}. In the S+D approximation the effects of general relativity (gravitational light bending) are modeled as though the star is not rotating using the Schwarzschild metric and the formalism specified by
Pechenick {\it et al.} (1983) %, Ftaclas, \& Cohen (1983)
\cite{pechenick}. Rotational effects have been approximated by using special relativistic Doppler transformations as though the star is a rotating object with no gravitational field. The oblate shapes of the rapidly rotating neutron stars have also been taken into account using an empirical formula for the oblate shape \cite{algendy} \cite{morsink}.
%Rotational effects are added by introducing Doppler terms as though the star is a rotating object with no gravitational field. The oblate shape of the rapidly rotating neutron stars have also been taken account using an empirical formula for the oblate shape.
The observed pulse profiles from AMXPs appear to be rather close to sinusoidal with peak-to-peak oscillation amplitude
\be \label{eq:amplitude}
A = \frac{F_{\mathrm{max}} - F_{\mathrm{min}}} {F_{\mathrm{max}} + F_{\mathrm{min}}}
\ee %https://arxiv.org/pdf/astro-ph/0510038v2.pdf
between $4$ and $12$ per cent \cite{poutarew2006}, where $F_{\mathrm{max}}$ is the maximum observed flux and $F_{\mathrm{min}}$ is the minimum observed flux. Light bending tends %error, where?
to reduce this variability amplitude. The amplitude depends only weakly on energy, and the spectrum may be fitted with a two-component model (blackbody and Comptonization). At higher energies the amplitude deviates more from a sine wave because of the different emission pattern. The weak energy dependency and a fairly constant spectral shape as a function of pulse phase, support also the idea that the bulk of the observed X-ray emission originates from the polar caps (where the gas stream channeled by the neutron star's magnetic field impacts the stellar surface forming a shock). Any additional source of radiation would have to have a spectrum identical to that of the shock.
\subsubsection{Oblateness}
Due to the fast rotation, the millisecond pulsars have an oblate shape instead of spherical. The difference between an oblate and a spherical star is significant when the rotation frequency $\nu \gtrsim 300 ~\mathrm{Hz}$ \cite{cadeau}%a place for a reference..
. The most important effect is purely geometrical: The directions that the light can be emitted into are different in the cases of an oblate and a spherical star. Thus, there are certain spot locations on the star where the spot is invisible if the surface is oblate but would be visible if the surface were purely spherical (and vice versa).
There are different models describing the exact shape and oblateness of the neutron star (function $R(\theta)$, where $\theta$ is the colatitude measured from the spin axis).
%The exact shape and oblateness of the star (function $R(\theta)$) can be chosen from different models ($\theta$ is the colatitude measured from the spin axis).
One of the most recent ones was presented by Algendy {\it et al}. (2014) \cite{algendy}.
We use primarily it in this thesis. In this model %(in geometric units
%where $G = c = 1$)
\begin{equation}
\label{rtheta2}
\frac{R(\theta)}{\req} = (1 + o_{2}(x,\bar{\Omega})\cos^{2}(\theta)),
\end{equation}
where
\begin{equation}
\label{otwo}
o_{2}(x,\bar{\Omega}) = \bar{\Omega}^{2}(-0.788+1.030x),
\end{equation}
\begin{equation}
\label{rtheta2x}
x = \frac{GM}{c^{2}\req},
\end{equation}
and
\begin{equation}
\label{rtheta2omega}
\bar{\Omega} = \Omega \left(\frac{\req^{3}}{GM} \right)^{1/2}.
\end{equation}
In these equations $\req$ is the radius of the rotating star measured at the equator and $\Omega = 2\pi/P$, where $P$ is the spin period. %The equator radius is measured in the normal Schwarzschild coordinates as all the radii are in this thesis.
As another model %in pulse profile comparison
we have also used a model presented by Morsink {\it et al}. (2007) \cite{morsink}. In that model
\be\label{eq:rtheta}
\frac{R(\theta)}{\req} = 1 + \sum\limits_{n=0}^2 a_{2n}(\bar{\zeta},\bar{\epsilon})P_{2n}(\cos(\theta)),
\ee
where $P_{n}(\cos(\theta))$ is the Legendre polynomial of order $n$ and parameters $\bar{\zeta}$ and $\bar{\epsilon}$ are obtained from
\be\label{eq:parzeta}
\bar{\zeta} = \frac{GM}{\req c^{2}}
\ee
and
\be\label{eq:parepsilon}
\bar{\epsilon} = \frac{\Omega^{2}\req^{3}}{GM}.
\ee
The coefficients needed are given as
\be\label{eq:azero}
a_{0} = -0.18\bar{\epsilon}+0.23\bar{\zeta}\bar{\epsilon}-0.05\bar{\epsilon}^{2},
\ee
\be\label{eq:atwo}
a_{2} = -0.39\bar{\epsilon}+0.29\bar{\zeta}\bar{\epsilon}+0.13\bar{\epsilon}^{2},
\ee
and
\be\label{eq:afour}
a_{4} = +0.04\bar{\epsilon}-0.15\bar{\zeta}\bar{\epsilon}+0.07\bar{\epsilon}^{2}.
\ee
\subsubsection{Geometry}
Besides the geometry of the star itself, we also need to know the relations between different angles in different frames. To derive these we consider a small spot on the stellar surface at colatitude $\thetas$ from the rotational pole. We follow here closely the derivation of Poutanen \& Beloborodov (2006) \cite{poutabelo}.
The star is assumed to be rotating with a frequency $\nu=P^{-1}$ (seen by a distant observer).
The velocity of the spot in units of $c$ (as measured by a non-rotating observer near the star) %<- correct now?
is
\begin{equation}
\label{beta2}
\beta = \frac{v}{c}=\frac{2\pi R(\thetas)}{c} \frac{\nu}{\sqrt{1-u}} \sin\thetas,
\end{equation}
%=\beta_{\rm eq}(\theta) \sin\theta,
where %$\beta_{\rm eq}$ would be constant if the star were spherical,
$u\equiv\rg/R(\thetas)$,
$\rg=2GM/c^2$ is the Schwarzschild radius, $M$ is mass and $R(\thetas)$ is
radius of the star at spot location (given by equation \ref{rtheta2} or \ref{eq:rtheta}). The pulsar frequency has been corrected for the gravitational redshift $1/\sqrt{1-u}=1+z$ since the rotation frequency seen by distant observer is reduced in the gravitational field of the star due to the gravitational time dilation. The corresponding Lorentz factor for the velocity of the spot is $\Gamma=(1-\beta^2)^{-1/2}$.
Because of the fast rotation and special relativistic effects, spot area $\d S^\prime$ measured in a corotating frame is not same as the area $\d S$ measured in a non-rotating frame. The instantaneous position of the spot in the fixed lab frame is described by the unit vector
\begin{equation}
\bmath{r}=(\sin\thetas\cos\phi, \sin\thetas\sin\phi, \cos\thetas),
\end{equation}
that points to the spot from the center of the star (see Figure \ref{fig:geom2}). The rotational phase of the pulsar is $\phi=2\pi\nu t$, where $t$ denotes time. The vector $\bmath{r}$ is not generally directed perpendicular to the surface of the spot unless the star is spherical. The vector that points normal to the surface is given by
\begin{equation}
\bmath{n}=(\sin(\thetas-\gamma)\cos\phi, \sin(\thetas-\gamma)\sin\phi, \cos(\thetas-\gamma)).
\end{equation}
The angle between $\bmath{n}$ and $\bmath{r}$ is $\gamma$ and
\begin{equation}
\cos\gamma=[1+f^{2}(\thetas)]^{-1/2},
\end{equation}
where
\be \label{eq:ftheta}
f(\theta)=\frac{1+z}{R}\frac{\d R}{\d \theta}.
\ee
In case of a spherical star $\d R / \d \theta = 0$ and thus $\bmath{n} = \bmath{r}$. A normal oblate spheroid would have $f(\theta)=(\d R /\d \theta)/R$, but the Schwarzschild metric introduces an additional conformal factor $(1+z)$ into the equation.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{figure}
%\centerline{\epsfig{file=oblate_fig.png,width=8.0cm}}
\centerline{\epsfig{file=fig2.png,width=12.0cm}}
\caption{Geometry of the problem. Created with https://github.com/natj/nsfig. %Dotted curve shows a spherical star which radius is equal to the radius of the oblate star at spot location (\cite{morsink}).%Dotted curve shows the
%photon trajectory.
\label{fig:geom2}}
\end{figure}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%We will start the waveform with the center of the spot in the plane defined...
The computation of the waveform is started from the center of the spot in the plane defined by the spin axis and the direction to the observer
(when the spot crosses the plane defined by $\bmath{z}$ and $\bmath{k}$). The light pulse originating at this moment at the point that is directly below the observer and with a reference distance $r_{\mathrm{ref}}$ to the center of the star (e.g., the equatorial radius of the star) is used to define the zero of the observer's time coordinate. Measuring of the time $t$ is started when this photon arrives at the observer (hence fixing $t=0$). %The time is set to zero when this photon arrives at the observer.
We denote the unit vector along the line of sight by
\be
\bmath{k}=(\sin i, 0, \cos i),
\ee
where $i$ is the inclination angle of the spin axis to the line of sight.
Thus (see Figure \ref{fig:geom2})
\be \label{eq:psi2}
\cos\psi=\bmath{k}\cdot \bmath{r} = \cos i\ \cos\thetas+\sin i\ \sin \thetas\ \cos\phi.
\ee
The bending angle $\psi$ measures the angle between the line of sight and the position vector $\bmath{r}$ of the spot. The initial angle of the emitted photon with respect to
${\bmath{r}}$ differs from $\psi$ because of the light bending.
%Angle $\psi$ measures the apparent inclination of the spot to the line of
%sight, which is different from the true inclination because of
%the light bending effect. %IS THIS CORRECT?
% The initial angle of the emitted photon with respect to the normal
% ${\mathbf n}$ differs from $\psi$ because of the light bending.
We denote the initial direction of the emitted photon by $\bmath{k}_0$ %($\bmath{l}$ in figure \ref{fig:geom2})
and the true emission angle (relative to $\bmath{r}$) by $\alpha$ so that
\be
\cos\alpha=\bmath{k}_0 \cdot \bmath{r}.
\ee
The zenith angle $\sigma$ between the $\bmath{n}$ and $\bmath{k_{0}}$ is defined by
\be
\cos\sigma = \bmath{k}_{0}\cdot\bmath{n}.
\ee
The direction of the photon changes from $\bmath{k}_0$ near the stellar surface to $\bmath{k}$ at infinity as it propagates to infinity so that $\cos\alpha=\bmath{k}_0\cdot\bmath{r}$
changes to $\cos\psi=\bmath{k}\cdot\bmath{r}$.
%As a photon propagates to infinity, its direction changes from
%$\bmath{k}_0$ near the stellar surface to $\bmath{k}$ at infinity,
%so that $\cos\alpha=\bmath{k}_0\cdot\bmath{r}$
%changes to $\cos\psi=\bmath{k}\cdot\bmath{r}$.
The relation between $\bmath{k}_0$ and $\bmath{k}$ may be written as
\be\label{eq:k02}
\bmath{k}_0=[ \sin\alpha\ \bmath{k} +\sin(\psi-\alpha)\ \bmath{r}]/\sin\psi.
\ee
%At any moment of time, we can introduce an instantaneous non-rotating frame $x,y,z$
%with the $y$-axis along the direction of the spot motion,
%$x$-axis along the meridian towards the equator, and
%$z$-axis along the normal to the spot.
%In this static frame
We would like to express this vector in the rest frame of the spot instead of the non-rotating static frame. As a first step we do the coordinate transformation to an instantaneous non-rotating frame $x,y,z$ with the $y$-axis along the direction of the spot motion, $x$-axis along the meridian towards the equator, and $z$-axis along the normal of the spot. This frame can be introduced in any moment of time. In this static frame
\be
\bmath{k}_0=
\left(
%\frac{\sin\alpha}{\sin\psi} (\sin i\cos\theta\cos\phi -\cos i \sin\theta),
\cos \epsilon,
\cos\xi,
\cos\sigma
\right) ,
\ee
where $\xi$ is the angle between the spot velocity and the direction of the emitted photon $\bmath{k}_0$. It is given as
\be \label{eq:cosxi22}
\cos\xi=\frac{\bmath{\beta}}{\beta} \cdot \bmath{k}_0
=\frac{\sin\alpha}{\sin\psi} \frac{\bmath{\beta}}{\beta} \cdot \bmath{k}=
- \frac{\sin\alpha}{\sin\psi}\sin i\ \sin\phi\ ,
\ee
since $\bmath{\beta} = \beta(-\sin\phi,\cos\phi,0)$ in the lab frame. Angle between the meridian % And $\epsilon$ is the angle between the meridian
\be
\bmath{m} = (\cos(\thetas - \gamma)\cos \phi ,\cos (\thetas -\gamma)\sin \phi, -\sin (\thetas -\gamma))
\ee
and $\bmath{k}_0$ is $\epsilon$ which is obtained from
\be \label{eq:kx-comp}
\begin{split}
\cos\epsilon= \bmath{m} \cdot \bmath{k}_0
=\frac{\sin\alpha}{\sin\psi} (\sin i \cos(\thetas -\gamma)\cos \phi -\cos i \sin (\thetas -\gamma))
+ \frac{\sin (\psi - \alpha)}{\sin \psi}\sin\gamma.
%+ \frac{\sin (\psi - \alpha)}{\sin \psi}(\sin \theta \cos (\theta -\gamma)-\sin (\theta -\gamma)\cos \theta).
\end{split}
\ee
%But also $\bmath{\beta}$ (y-axis) and $\bmath{n}$ (z-axis)should be perpendicular???? Okey, I think it is both same time .. +if you choose $\bmath{r}$ as z-axis, then the z-component of $\bmath{k_{0}}$ will be $\cos\alpha$)
Next we can consider a frame which has the same axes as previously but which is also corotating with the spot. We want to express the direction of the emitted light also in this frame. Emission angle relative to the surface normal in this frame is denoted by
$\sigma'$. It differs from $\sigma$ because of relativistic aberration. The rays of light are tilted towards the direction of the spot motion relative to the observer.
In this frame comoving with the spot
(with $y$-axis again along the spot motion and $z$-axis along the local normal),
the unit vector along the photon momentum is
obtained from the Lorentz transformation:
\be \label{eq:k0prime2}
\bmath{k}'_{0} = \Dop
\left( \begin{array}{c}
%(\sin i\cos\theta\cos\phi -\cos i \sin\theta)\sin\alpha/\sin\psi \\
\cos \epsilon \\
\Gamma (\cos\xi-\beta)\\
\cos\sigma
\end{array}
\right) ,
\ee
where $\delta$ is the Doppler factor formulated as
\be \label{eq:dop2}
\Dop=\frac{1}{\Gamma(1-\beta\cos\xi)} .
\ee
Using equation (\ref{eq:k0prime2}), we obtain
\be \label{eq:aberr2}
\cos\sigma' = \Dop \ \cos\sigma.
\ee
Making use of equation (\ref{eq:k02}) the zenith angle has the value
\be\label{eq:cossigma2}
\begin{split}
\cos\sigma = \bmath{k}_{0}\cdot\bmath{n} = \cos\alpha\cos\gamma+\sin\alpha\sin\gamma\cos\zeta = \\
\cos \alpha \cos \gamma + \frac{\sin \alpha}{\sin \psi} \sin \gamma (\cos i \sin \thetas - \sin i \cos \thetas \cos \phi),
\end{split}
\ee
where the spherical trigonometric identity $\cos i = \cos\thetas\cos\psi+\sin\thetas\sin\psi\cos\zeta$ (where $\zeta$ is the angle between the spot-observer and the spot-spin-axis planes) and the equation (\ref{eq:psi2}) are used. With small bending angles the approximation $\sin \alpha / \sin \psi \approx \sqrt{(1-u)}$ may be used. This is based on the Beloborodov's approximation \cite{beloborodov}
\be \label{eq:beloborodov}
1-\cos \alpha \approx (1 - \cos \psi)(1 - u).
\ee
%if $\sin\psi\sin\theta \ne 0$. If $\sin\psi\sin\theta = 0$, then $\cos\sigma = \cos\alpha\cos\gamma$.
Equation (\ref{eq:cossigma2}) is useful since we need to know the emission angle $\sigma$ relative to the spot normal in order to calculate fluxes and visibility conditions.
\subsubsection{Light bending}
Before we can get the angle $\sigma$ from equation (\ref{eq:cossigma2}), we also first need to know how to get the angle $\alpha$ when we know the light bending angle $\psi$. The angles $\psi$ (for every point at every phase) we know directly from the geometry since we can calculate them using equation (\ref{eq:psi2}). In case of non-infinitesimal spot (which is discussed more in the Section 2.1.6), we of course need a transformation of coordinates between the spot frame and the frame of the star (to get corresponding $\theta$ and $\phi$ for every point inside the spot). The angle $\psi$ is anyway straight determined since we are going to calculate the trajectories for only those photons which are going to arrive at the observer (not in some other direction). The task is now to find out the true emission angle $\alpha$ using general relativity.
The exact relation between $\alpha$ and $\psi$ (when $\alpha < \pi/2$) in Schwarzschild geometry (i.e., light bending) is given by \cite{mtw}%(e.g. Misner {\it et al}. 1973 \cite{mtw}) %\citep[e.g.][]{mtw73}
\be \label{eq:bend2}
\psi_{\mathrm{p}}(R,\alpha)=\int_R^{\infty} \frac{dr}{r^2} \left[ \frac{1}{b^2} -
\frac{1}{r^2}\left( 1- \frac{\rg}{r}\right)\right]^{-1/2} ,
\ee
where $b$ is the impact parameter,
\be \label{eq:impact2}
b=\frac{R}{\sqrt{1-u}} \sin\alpha .
\ee
The relation between $\alpha$ and $\psi$, when $\alpha > \pi/2$, is
\be
\psi(R,\alpha)=2\psi_{\max}-\psi_{\mathrm{p}}(R,\pi-\alpha),
\ee
where $\psi_{\max} = \psi_{\mathrm{p}}(\mathsf{p},\alpha=\pi/2)$ and $\mathsf{p}$ is the distance of closest approach, given by
\be
\mathsf{p} = -\frac{2}{\sqrt{3}}b\cos([\arccos(3\sqrt{3}\rg/(2b))+2\pi]/3).
\ee
Numerical calculations using directly integral (\ref{eq:bend2}) lead to large errors, but after making a variable substitution $x = \sqrt{1-R/r}$ the integral can be computed without problems using for example Simpson quadratures. Even though it is not possible to obtain $\alpha$ as an exact function of $\psi$, we can still use the previous equations to form a two-dimensional grid of $\psi$ corresponding to different $\alpha$ and $R$. Then we find the correct $\alpha$ at different phases of the rotation of the star by quadratic interpolation.
The maximum bending angle corresponds to $\sigma=\pi/2$. Otherwise the photon would be directed across the star surface.
The condition $\cos \sigma>0$ is used to define the visibility of the spot. In addition, one should also check that the photon will not hit the surface of the star in any later phase of its trajectory (it might happen for an oblate star). This check is not yet included in the current pulse profile code.
\subsubsection{Observed flux}
Next we can consider the flux originating from our small spot. The observed flux from the spot at photon energy $E$ is
\be
\label{eq:dF_E2}
\d F_{\ene}=I_{\ene}\ \d\Omega,
\ee
where $I_{\ene}$ is the specific intensity of radiation at infinity and $\d\Omega$ is
the solid angle covered by the spot (with area $\d S'$ in the corotating frame) on the observer's sky.
The solid angle can be expressed in terms of the impact parameter \cite{pechenick}
\be
\d\Omega=b\ \d b\ \d\varphi/D^2,
\ee
where $D$ is the distance to the source and $\varphi$ is the azimuthal
angle corresponding to rotation around line of sight (vector $\bmath{k}$).
The impact parameter $b$ depends only on the bending angle $\psi$, but not on $\varphi$.
%The apparent area of the spot as measured by photon beams
%in the non-rotating frame near the stellar surface is $\d S=\Dop\ \d S'$
The apparent area of the infinitesimal spot measured by the observer in the non-rotating frame near the stellar surface %(but also at infinity) %not true? .. note: dS*cos(sigma) = Lorentz invariant
is $\d S=\Dop\ \d S'$ \cite{terrell} \cite{lightman75}.
%(see Terrell 1959 \cite{terrell} or Lightman {\it et al}. 1975 \cite{lightman75}). %; Ghisellini 1999) %http://journals.aps.org/pr/pdf/10.1103/PhysRev.116.1041 (terrell)
%lightman75 = problem book in relativity and gravitation (found in Tuorla)
%didin't found $\d S=\Dop\ \d S'$
We also know the relation between $\sigma$ and $\sigma'$ from the relativistic aberration formula (\ref{eq:aberr2}) (for motions parallel to the spot surface) $\cos\sigma' = \Dop \ \cos\sigma$. Thus
\be \label{eq:Salpha2}
\d S\ \cos\sigma = \d S'\ \cos\sigma',
\ee
which shows that the spot area projected on to the plane perpendicular to the photon direction is Lorentz invariant \cite{lightman75} \cite{lindbland85}. %(see e.g. Lightman et al. 1975 \cite{lightman75} or
%Problem book in relativity and gravitation
%Lind \& Blandford 1985 \cite{lindbland85}).
This area is also called a photon beam cross-section.
The infinitesimal spot area measured in the frame comoving with the spot may be calculated as \cite{morsink} %(Morsink et al. 2007 \cite{morsink})
\be \label{eq:surf_element}
\d S'(\theta) = \Gamma R^{2}(\theta) [1+f^{2}(\theta)]^{1/2} \sin \theta \d \theta \d \varphi,
\ee
where the factor $[1+f^{2}(\theta)]^{1/2}$ takes into account the oblateness of the spot surface (function $f(\theta)$ is given in equation \ref{eq:ftheta}).
%which shows that the spot area projected on to the plane perpendicular
%to the photon propagation direction, i.e. a photon beam cross-section,
%is Lorentz invariant (see e.g. Lightman et al. 1975 \cite{lightman75} or %Problem book in %relativity and gravitation
%Lind \& Blandford 1985 \cite{lindbland85}).
%Using equation~(\ref{eq:impact2}) and
%the facts that $\d S=R^2\ \d\cos\psi\ \d\varphi$ (THIS IS NOT CORRECT %NOW) one gets... (see Morsink)
The solid angle measured at a distance $D$ from the star is then \cite{morsink}
\be\label{eq:omega2}
\d\Omega=\frac{\d S' \cos \sigma'}{D^2} \frac{1}{1-u} \frac{\d\cos\alpha}{\d\cos\psi}.
\ee
In case of stars with lower compactness (weak gravity) $\rg \ll R$, so $u\ll 1$, this gives the formula $\d\Omega=\d S' \cos \sigma'/D^2$.
%The combined effect of the gravitational redshift and Doppler effect
%results in the following relation between the monochromatic
%observed and local intensities
We have now obtained the solid angle $\d\Omega$ needed to calculate the flux from our spot with equation (\ref{eq:dF_E2}). However, we still need to find out an expression for intensity $I_{\ene}$. The intensity is also different in the static frame of the distant observer than in the local frame comoving with the spot due to both gravitational redshift and Doppler effects. The relation between monochromatic observed and local intensities is \cite{mtw} \cite{rybicki}%(see e.g. Misner et. al. 1973 \cite{mtw} or Rybicki \& Lightman 1979 \cite{rybicki})%\citep[see e.g.][]{mtw73,rl79}:
\be
I_{\ene} = \left (\frac{E}{E'}\right )^3 I'_{\ene'} (\sigma'),
\ee
where $E/E'=\Dop \sqrt{1-u}$. Here $I'_{\ene'}(\sigma')$ is the intensity computed in the corotating frame. The dependency of redshift ($1+z = 1/\sqrt{1-u}$) to the power of $-3$ can be understood by noting that $I_{\ene} \propto \nu^{3}$ and $\nu = \nu'(1+z)^{-1}$.
For the bolometric intensity the relation to frequency goes as $\nu^{4}$, and one gets
\be \label{eq:bolointensity}
I_{\bolo}= \left (\Dop \sqrt{1-u} \right )^4 I_{\bolo}'(\sigma') .
\ee
The observed spectral flux \eqref{eq:dF_E2} is now given by
\be \label{eq:fluxspot2}
\d F_{\ene}=(1-u)^{1/2} \Dop^{4} I'_{\ene'}(\sigma') \cos\sigma
\frac{\d \cos\alpha}{\d\cos\psi}
\frac{\d S'}{D^2} ,
\ee
where we have used the aberration formula (\ref{eq:aberr2}).
The bolometric flux reads
\be \label{eq:fluxbolo2}
\d F_{\bolo}= (1-u)\ \Dop^5 \
I_{\bolo}'(\sigma') \cos\sigma \frac{\d\cos\alpha}{\d\cos\psi} \frac{\d S'}{D^2} .
\ee
The radiation spectrum can be e.g., a blackbody, with effective temperature $T_{\mathrm{eff}}$, or a power-law spectrum. We can take for example a power-law $I'_{\ene'}(\sigma') \propto E '^{-(\lambda-1)}$ which does not depend on the angle $\sigma'$. Here $\lambda$ is the photon spectral index. With this spectrum we get
\be \label{eq:int_trans2}
I'_{\ene'}(\sigma') = I'_{\ene}(\sigma')
\left( \Dop \sqrt{1-u} \right)^{\lambda-1} .
\ee
The observed spectral flux %at a distance $D$ from the star
may be then expressed as
\be\label{eq:fluxplaw2}
\d F_{\ene}= (1-u)^{\lambda/2}\ \Dop^{\lambda+3} I'_{\ene}(\sigma')
\cos\sigma\ \frac{\d\cos\alpha}{\d\cos\psi}\ \frac{\d S'}{D^2}.
\ee
We note that the equation for the bolometric flux (\ref{eq:fluxbolo2})
can be obtained as a special case of equation (\ref{eq:fluxplaw2}) by setting $\lambda=2$.
Let us look the expression (\ref{eq:fluxbolo2}) for the bolometric flux more carefully. We see that there is a difference by a factor $\Dop^5$ between the flux from a rapidly rotating star and that from a slowly rotating star. One power of the Doppler factor came from the change in the projected area due to aberration as we already mentioned. From the four other powers of Doppler factor (appearing in the equation \ref{eq:bolointensity}) two comes from the solid angle transformation, one from the energy, and one from the time contraction of photon arrival \cite{rybicki}. %(Rybicki \& Lightman 1979 \cite{rybicki}).
In the case of spectral flux (\ref{eq:fluxspot2}) there is no Doppler factor from the energy, and thus there is one power less.
%Two powers of $\Dop$ come
%from the solid angle transformation, one from the energy, one from the
%photon arrival time contraction,
%and the fifth from the change in the projected area due to aberration.
%Aberration may also change the specific intensity since it has to be computed
%for angle $\sigma'$ in the comoving frame.
As mentioned, in the most simple model we may assume that the intensity is independent of $\sigma'$ ("isotropic beaming"). In a little more general case one can assume the intensity to be a product of an angle-dependent ("beaming function") and an energy-dependent function. The beaming function describes how much intensity is emitted to each direction, and the function might have e.g., a polynomial dependency on $\cos \sigma'$. An atmosphere dominated by electron scattering produces a beaming function called Hopf profile.%, which may be approximated with a polynomial function (Nättilä and Pihajoki (in preparation)).
Thanks to the observed AMXPs (e.g., \source \ \cite{poutagierlinskisax}) we know that the spectrum of the pulsar (i.e., the energy-dependency of $I'_{\ene'}(\sigma')$) might be fitted with a blackbody component at lower energies and with a power-law component at higher energies. However, in the case of \source \ the blackbody contributes only about $30$ per cent to the flux even in the $3-5$ keV region (which is near the lowest observed energies with {\it RXTE}) \cite{poutagierlinskisax}. Thus, we can approximate the spectrum with two different power-laws on both sides of a cut-off energy, which is defined to be at the maximum flux of a blackbody with $T_{\mathrm{eff}} = 2 $ keV (in the frame of the spot). Below the cut-off energy we use Rayleigh-Jeans law ($I'_{\ene'}(\sigma') \propto E '^{2}$ and thus $\lambda = -1$) and above the cut-off a descending power-law with the spectral index $\lambda = 1.86$. The power-law is normalized to be equal with the reference blackbody at 1 keV. This spectrum is shown in Figure \ref{fig:spectrum}.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{figure}
\centerline{\epsfig{file=spectrum_numflux0.pdf,width=12.0cm}}
\caption{The two-component power-law energy spectrum compared to the reference blackbody at $2$ keV temperature. The spectra are calculated using the time-averaged fluxes at different energies of the pulse profile model with some physical parameters.
\label{fig:spectrum}}
\end{figure}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
In a more realistic model we would calculate the fluxes using two overlapping spots. The other spot would produce blackbody emission with isotropic beaming and the other one the power-law emission with e.g., a linear dependency on the cosine of the beaming angle $\sigma'$ (representing the accretion shock). The spots may have different shapes and sizes. %This model will be added to the pulse profile code in the near future.
In the calculations of this thesis we use monochromatic photon number fluxes (in units of photons/cm$^{2}$/s/keV) since those are the fluxes we get from the observations. We must thus divide the fluxes we get from equation (\ref{eq:fluxspot2}) with the observed energy $E$. When calculating the flux, we make again a grid of values of the derivatives $\d\cos\psi / \d\cos\alpha$ (same as $(\d\cos\alpha / \d\cos\psi)^{-1}$) with different $\alpha$ and $R$. The derivatives for each point are found by linear interpolation.
\subsubsection{Time delays}
The previous expressions (\ref{eq:fluxspot2}), (\ref{eq:fluxbolo2}), and (\ref{eq:fluxplaw2}) for calculating the flux of an infinitesimal spot
contain the pulsar phase $\phi$ expressed in $\cos\sigma$. However, we should realize that photons are not necessarily observed in the same order as they are emitted due to the different light travel times when the position of the emitting spot is different. For this reason the flux actually corresponds to an observed phase $\phiobs$, which is different from $\phi$. The delays because of light travel times become significant only for rapidly rotating pulsars. %In Schwarzschild metric the maximum time delay for a neutron star
%of $M=1.4\msun$ is $\Delta t\sim 7\times 10^{-2}$ ms (almost independent
%of compactness of the star $M/R$). This gives at most
%a 5 per cent correction to the arrival phase for a rotational period $P=1.5$~ms.
%citate here to JP pulse profile comparisons paper?
%The delay is caused by different travel times of emitted
%photons to the observer, depending on the position of the emitting spot.
The different light travel times in Schwarzschild metric may be calculated and subtracted to get the time delay between the photon from the point of interest and a photon from a reference point (we call this the reference photon). We choose the reference point to locate at the reference radius $r_{\mathrm{ref}}$ from the center of the star (it can be chosen arbitrarily as long as it exceeds $\rg$) and assume that the reference photon is emitted exactly to the radial direction (meaning that $\alpha$ = 0 and thus impact parameter $b = 0$). Now a photon following the trajectory with an impact parameter $b$ (and $\alpha < \pi/2$) is lagging the reference photon by
%A photon following the trajectory with an impact parameter $b$ (and $\alpha < \pi/2$)
%is lagging the photon originating from a reference radius $r_{\mathrm{ref}}$ (which %can be chosen arbitrarily as long as it exceeds $\rg$) with $b=0$ by
%(Pechenick et al. \cite{pechenick})%\citep{pfc83}:
%:
\cite{pechenick}
\be \label{eq:delay2}
%c\Delta t_{p}(R,\alpha)= c\Delta t_{s}(R,\alpha) -\delta t(r_{\mathrm{ref}},R),
%\ee
c\Delta t(R,\alpha)= c\Delta t_{\mathrm{s}}(R,\alpha) -\delta t(r_{\mathrm{ref}},R),
\ee
where
\be \label{eq:delayint}
c\Delta t_{\mathrm{s}}(R,\alpha) =
\int_R^{\infty} \frac{\d r}{1- \rg/r}
\left\{ \left[ 1- \frac{b^2}{r^2} \left( 1- \frac{\rg}{r} \right)
\right] ^{-1/2} -1 \right\}
\ee
is the time difference between the photon in interest and a photon originating from the same radius $R$ but with $b=0$, and
\be
\delta t(r_{\mathrm{ref}},R) = R-r_{\mathrm{ref}}+\rg\ln(\frac{R-\rg}{r_{\mathrm{ref}}-\rg})
\ee
is the time difference between photons with $b=0$ from $R$ and $r_{\mathrm{ref}}$ \cite{falkner}.
%%(...) Citate here to falkner
In the case when $\alpha > \pi/2$, the corresponding delay is
\be\label{eq:delay22}
\begin{split}
c\Delta t(R,\alpha)= 2c\Delta t_{s}(p,\pi/2)-c\Delta t_{s}(R,\pi-\alpha)\\+2\left[ R-p+\rg\ln(\frac{R-\rg}{p-\rg})\right]-\delta t(r_{\mathrm{ref}},R).
\end{split}
\ee
The integral in equation (\ref{eq:delayint}) is not very easy to solve numerically. That is why we use again the variable substitution $x = \sqrt{1-R/r}$ before using Simpson quadrature. We also make a grid of time delays corresponding to different $\alpha$ and $R$, which we later interpolate linearly in order to make the code run faster.
We are now able to compute the bending angle $\psi$, the emission angles $\alpha$ and $\sigma$, and the impact parameter $b$ using equations (\ref{eq:bend2}), (\ref{eq:impact2}), and (\ref{eq:cossigma2}) for a given pulsar phase $\phi$. The corresponding delays $\Delta t(R,\alpha)$ we can find using formulae (\ref{eq:delay2}) and (\ref{eq:delay22}). When these time delays are known, we compute the delays expressed in phase with
%For a given pulsar phase $\phi$, we compute angle $\psi$, then
%we find the corresponding emitted $\alpha$, $\sigma$ and the impact parameter $b$
%using formulae (\ref{eq:bend2}), (\ref{eq:impact2}) and (\ref{eq:cossigma2}), and
% compute the corresponding delays $\Delta t(R,\alpha)$ or $\Delta t_{p}(R,\alpha)$
%with equations (\ref{eq:delay2}) and (\ref{eq:delay22}).
%We then construct a one-to-one
%correspondence between the pulsar phase $\phi$ and
%the photon arrival phase to the observer $\phiobs=\phi+ \Delta\phi$,
%with the phase delays
\be \label{eq:deltaphi2}
\Delta \phi(\phi) =2\pi\nu \Delta t[b(\phi)],
\ee
and the arrival phase to the observer is then $\phiobs=\phi+ \Delta\phi$. We may thus construct a one-to-one correspondence between $\phi$ and $\phiobs$.
The flux at the observed phase $\phiobs$ is
${F}_{\rm obs}(\phiobs)=F(\phi+\Delta\phi)$ with
phase delay $\Delta \phi=2\pi\nu\Delta t$
calculated using (\ref{eq:delay2}), (\ref{eq:delay22}), and (\ref{eq:deltaphi2}).
The contraction (or stretching) of the arrival times of photons is already taken into account by one of the Doppler factors in the previous section, so we do not need to multiply flux again by $\delta$.
%The effect of the photon arrival time contraction (or stretching) on
%the observed flux is already accounted for by one of the Doppler factors,
%so there is no need to multiply again flux by $\delta$.
\subsubsection{Profiles from a large spot}
In all the previous sections we assumed the spot to be infinitesimally small. If the spot have a finite size, we need of course to integrate over the spot surface. It may be done by splitting the spot into a number of small sub-spots and computing the fluxes to each sub-spot separately. Integration over the spot surface is then done using Gaussian quadrature in (cosine of) colatitude and trapezoidal rule for integration over the azimuth inside the spot.
One important thing is to include the time delays correctly for each sub-spot. Because of this we compute the delays relative to the photons emitted from a point directly under the observer (with $b=0$ as said in the previous section). %miksi juuri b=0 hyvä valinta sub-spottien kannalta?
A more difficult problem is to find out what is the exact relation between the area of the finite spot in the rotating and non-rotating frames ($\d S=\Dop\ \d S'$ was true for an infinitesimal spot). This problem has still to be studied.
%For a finite size spot, obviously, integration over the spot surface is required.
%%I will not write here any formulae as they are rather trivial.
%The idea is to split the spot into a number of small sub-spots and compute the %profiles from each sub-spot separately. One should be careful to include time delays %correctly. For this problem it is actually good to compute the time delays relative to %the photons emitted from the point directly under the observer. Integration over the %spot surface is done using Gaussian quadrature in (cosine of) colatitude and %trapezoidal rule for integration over the azimuth inside the spot. The surface element %of the spot is
%\be \label{eq:surf_element}
%\d S'(\theta) = \gamma R^{2}(\theta) [1+f^{2}(\theta)]^{1/2} \sin \theta \d \theta \d %\phi ,
%\ee
%where the factor $[1+f^{2}(\theta)]^{1/2}$ takes care of the oblateness of the spot %surface (function $f(\theta)$ is given in equation \ref{eq:ftheta}).
In the model in this thesis we assumed a spot which have a constant angular radius $\rho$ (angle between the center and the edge of the spot measured from the center of the star). %(the angle measured from the spot center to the end of the spot is constant).
The spot could also be modeled to have a more complicated shape. %For a large spot (angular radius $\sim$30 deg) at least a few tens points in total are needed if one wants to achieve accuracy of the order of 1\%.
%Alternatively, one could use the HEALPIX representation of the spot, or any other %routine. For a large spot (angular radius $\sim$30 deg),
%at least a few tens points in total are needed if one wants to achieve accuracy of %the order of 1\%.
\subsubsection{Comparison of the profiles}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{figure}[!ht]
\centerline{\epsfig{file=mor3test.eps,width=11.0cm}}
\caption{Light curves (bolometric flux) for light emitted from one infinitesimal spot with $\req = 16.4$ km, $M = 1.4$ $\msun$, $\nu = 600$ Hz, $\thetas = 49 \degree$, $i = 70 \degree$, and $T_{\mathrm{eff}} = 2$ keV . Results are compared with figure 3 of Morsink {\it et al}. (2007) \cite{morsink}. The blue dashed curve is the result of \cite{morsink} and the black solid line is our result.
\label{fig:mor3}}
\end{figure}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%