You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a (float): Specific angular momentum of the black hole. Should always be between :math:`-1` and :math:`1`. :math:`a > 0` if the accretion disk orbits in the same direction as the hole rotates; :math:`a < 0` if it orbits in the opposite direction.
472
484
473
485
See also:
474
486
:cite:t:`Page_1974` Equation 15l
487
+
488
+
See also:
489
+
:meth:`calc_innermost_orbit` for the calculation of the innermost orbit of Kerr black holes.
The variable :math:`Z2` is used to calculate the innermost orbit for Kerr black holes.
499
+
500
+
.. math::
501
+
502
+
Z_2 \equiv \sqrt{3a_*^2+Z_1^2}
503
+
504
+
Args:
505
+
bh_mass (float): Mass of the black hole.
506
+
a (float): Specific angular momentum of the black hole. Should always be between :math:`-1` and :math:`1`. :math:`a > 0` if the accretion disk orbits in the same direction as the hole rotates; :math:`a < 0` if it orbits in the opposite direction.
481
507
482
508
See also:
483
509
:cite:t:`Page_1974` Equation 15m
510
+
511
+
See also:
512
+
:meth:`calc_innermost_orbit` for the calculation of the innermost orbit of Kerr black holes.
484
513
"""
485
514
Z1=calc_Z1(bh_mass, a)
486
515
a_=a/bh_mass
487
516
returnnp.sqrt(3*a_**2+Z1**2)
488
517
489
518
490
-
defcalc_innermost_orbit(bh_mass, a):
491
-
"""Calculcate the innermost orbit :math:`r_{ms}` for a Kerr black hole.
519
+
defcalc_innermost_stable_orbit(bh_mass, a):
520
+
r"""Calculcate the innermost stable orbit :math:`r_{ms}` for a Kerr black hole.
492
521
493
-
A larger angular momentum :math:`a` will yield innermost orbits closer to the black hole.
522
+
A larger specific angular momentum :math:`a` will yield innermost orbits closer to the black hole.
a (float): Specific angular momentum of the black hole. Should always be between :math:`-1` and :math:`1`. :math:`a > 0` if the accretion disk orbits in the same direction as the hole rotates; :math:`a < 0` if it orbits in the opposite direction.
a (float): Specific angular momentum of the black hole. Should always be between :math:`-1` and :math:`1`. :math:`a > 0` if the accretion disk orbits in the same direction as the hole rotates; :math:`a < 0` if it orbits in the opposite direction.
512
559
513
560
See also:
514
561
:cite:t:`Page_1974` Equation 15k
562
+
563
+
See also:
564
+
meth:`calc_innermost_orbit` for the calculation of :math:`r_{ms}`
515
565
"""
516
-
rms=calc_innermost_orbit(bh_mass, a)
566
+
rms=calc_innermost_stable_orbit(bh_mass, a)
517
567
returnnp.sqrt(rms/bh_mass)
518
568
519
569
@@ -526,7 +576,7 @@ def calc_f_kerr(bh_mass, a, r):
Here, :math:`nu`, :math:`psi` and :math:`mu` are metric coefficients (functions of r), including Kerr metric. :math:`\dot{M}_0` is the radius-independent, time-averaged rate at which mass flows inward. Defining the innermost stable orbit as :math:`r_{ms}`, :math:`x=\sqrt{r/M}`, :math:`x_0=\sqrt{r_{ms}/M}` and :math:`a^*=a/M`, the :math:`f`-function is defined as:
579
+
Here, :math:`\nu`, :math:`\psi` and :math:`\mu` are metric coefficients (functions of :math:`r`) of the Kerr metric. :math:`\dot{M}_0` is the radius-independent, time-averaged rate at which mass flows inward. Defining the innermost stable orbit as :math:`r_{ms}`, :math:`x=\sqrt{r/M}=\sqrt{r^*}`, :math:`x_0=\sqrt{r_{ms}/M}` and :math:`a^*=a/M`, the :math:`f`-function is defined as:
530
580
531
581
.. math::
532
582
@@ -537,6 +587,43 @@ def calc_f_kerr(bh_mass, a, r):
a (float): Specific angular momentum of the black hole. Should always be between :math:`-1` and :math:`1`. :math:`a > 0` if the accretion disk orbits in the same direction as the hole rotates; :math:`a < 0` if it orbits in the opposite direction.
614
+
r (float): Radius of the orbit
615
+
616
+
Attention:
617
+
:cite:t:`Luminet_1979` has a mistake in Equation 15. The factor in fromt of the :math:`log` should be :math:`\sqrt{3}/2` instead of :math:`\sqrt{3}/3`. This can be verified by solving :cite:t:`Page_1974` Equation 15n. The resulting images of the paper are correct though.
618
+
619
+
See also:
620
+
:cite:t:`Page_1974` for more information.
621
+
622
+
See also:
623
+
:meth:`calc_flux_intrinsic_kerr` for the calculation of the intrinsic flux.
624
+
625
+
See also:
626
+
:meth:`calc_innermost_stable_orbit` for the calculation of :math:`r_{ms}`
540
627
"""
541
628
a_=a/bh_mass
542
629
x=np.sqrt(r/bh_mass)
@@ -555,7 +642,35 @@ def calc_f_kerr(bh_mass, a, r):
555
642
556
643
557
644
defcalc_flux_intrinsic_kerr(bh_mass, a, r, acc):
558
-
"""Calculate the intrinsic flux of the accretion disk of a Kerr black hole, in function of the accretion rate, specific angular momentum, and radius of emission."""
645
+
r"""Calculate the intrinsic flux of the accretion disk of a Kerr black hole, in function of the accretion rate, specific angular momentum, and radius of emission.
646
+
647
+
The intrinsic flux is not redshift-corrected. Observed photons will have a flux that deviates from this by a factor of :math:`1/(1+z)^4`
648
+
649
+
The intrinsic flux in function of the radius is defined as:
f &= -\Omega_{,r}(E^{\dagger}-\Omega L^\dagger)^{-2}\int_{r_{ms}}^r(E^\dagger \ - \Omega L^\dagger)L^\dagger_{,r}dr
662
+
\end{align*}
663
+
664
+
Args:
665
+
bh_mass (float): Mass of the black hole.
666
+
a (float): Specific angular momentum of the black hole. Should always be between :math:`-1` and :math:`1`. :math:`a > 0` if the accretion disk orbits in the same direction as the hole rotates; :math:`a < 0` if it orbits in the opposite direction.
667
+
r (float): Radius of the orbit.
668
+
acc (float): (initial) accretion rate of the black hole :math:`\dot{M}_0`
669
+
670
+
See also:
671
+
:meth:`calc_f_kerr` for an algebraic expression of the :math:`f` function.
672
+
673
+
"""
559
674
f=calc_f_kerr(bh_mass=bh_mass, a=a, r=r)
560
675
exp_nupsimu=r
561
676
returnacc*f/exp_nupsimu/4/np.pi
@@ -564,14 +679,14 @@ def calc_flux_intrinsic_kerr(bh_mass, a, r, acc):
:cite:t:`Luminet_1979` has a mistake in Equation 15. The factor in fromt of the :math:`log` should be :math:`\sqrt{3}/2` instead of :math:`sqrt{3}/3`. This can be verified (tediously) by solving :cite:t:`Page_1974` Equation 15n.
699
+
:cite:t:`Luminet_1979` has a mistake in Equation 15. The factor in fromt of the :math:`log` should be :math:`\sqrt{3}/2` instead of :math:`\sqrt{3}/3`. This can be verified by solving :cite:t:`Page_1974` Equation 15n. The resulting images of the paper are correct though.
0 commit comments