Gyoto
|
Metric around a Kerr black-hole in Boyer-Lindquist coordinates. More...
#include <GyotoKerrBL.h>
Public Member Functions | |
KerrBL () | |
Default constructor. | |
virtual KerrBL * | clone () const |
Virtual copy constructor. | |
void | spin (const double spin) |
Set spin. | |
double | spin () const |
Returns spin. | |
double | difftol () const |
Get difftol_. | |
void | difftol (double t) |
Set difftol_. | |
void | horizonSecurity (double drhor) |
double | horizonSecurity () const |
void | genericIntegrator (bool) |
bool | genericIntegrator () const |
double | getRms () const |
Returns prograde marginally stable orbit. | |
double | getRmb () const |
Returns prograde marginally bound orbit. | |
void | gmunu (double g[4][4], const double *pos) const |
Metric coefficients. More... | |
double | gmunu (const double *const x, int mu, int nu) const |
Metric coefficients. More... | |
void | gmunu_up (double gup[4][4], const double *pos) const |
gμ,ν | |
double | gmunu_up (const double *const x, int mu, int nu) const |
int | christoffel (double dst[4][4][4], const double *pos) const |
double | ScalarProd (const double pos[4], const double u1[4], const double u2[4]) const |
Scalar product. More... | |
void | nullifyCoord (double coord[8], double &tdot2) const |
Set tdot (coord[4]) such that coord is light-like and return other possible tdot. More... | |
void | nullifyCoord (double coord[8]) const |
Set tdot (coord[4]) such that coord is light-like. Everything is in geometrical units. More... | |
virtual void | circularVelocity (double const pos[4], double vel[4], double dir=1.) const |
Yield circular velocity at a given position. More... | |
virtual void | MakeCoord (const double coordin[8], const double cst[5], double coordout[8]) const |
Inverse function of MakeMomentumAndCst. More... | |
void | MakeMomentum (const double coordin[8], const double cst[5], double coordout[8]) const |
Transforms from Boyer-Lindquist coordinates [t,r,th,phi,tdot,rdot,thdot,phidot] to [t,r,th,phi,pt,pr,pth,pphi] where pt,pr... are generalized momenta. | |
virtual void | setParameter (std::string, std::string, std::string) |
Set parameter by name. More... | |
void | setParticleProperties (Worldline *line, const double *coord) const |
Set Metric-specific constants of motion. Used e.g. in KerrBL. | |
virtual int | isStopCondition (double const *const coord) const |
Check whether integration should stop. More... | |
const std::string | kind () const |
Get kind_. | |
int | coordKind () const |
Get coordinate kind. | |
int | getRefCount () |
void | mass (const double) |
Set mass used in unitLength() | |
void | mass (const double, const std::string &unit) |
Set mass used in unitLength() | |
double | mass () const |
Get mass used in unitLength() | |
double | mass (const std::string &unit) const |
Get mass used in unitLength() | |
double | unitLength () const |
M * G / c^2, M is in kg, unitLength in meters. More... | |
double | unitLength (const std::string &unit) const |
unitLength expressed in specified unit | |
double | deltaMin () const |
void | deltaMin (double h1) |
double | deltaMax () const |
virtual double | deltaMax (double const pos[8], double delta_max_external) const |
void | deltaMax (double h1) |
double | deltaMaxOverR () const |
Get delta_max_over_r_. | |
void | deltaMaxOverR (double t) |
Set delta_max_over_r_. | |
bool | keplerian () const |
Get keplerian_. | |
void | keplerian (bool) |
Set keplerian_. | |
virtual void | cartesianVelocity (double const coord[8], double vel[3]) |
Compute xprime, yprime and zprime from 8-coordinates. | |
virtual double | SysPrimeToTdot (const double coord[4], const double v[3]) const |
Compute tdot as a function of dr/dt, dtheta/dt and dphi/dt. Everything is in geometrical units. More... | |
virtual double | Norm3D (double *pos) const |
not clear | |
virtual void | setParameters (Gyoto::FactoryMessenger *fmp) |
Main loop in Subcontractor_t function. More... | |
virtual void | fillElement (FactoryMessenger *fmp) |
called from Factory More... | |
void | processGenericParameters (Gyoto::FactoryMessenger *fmp) |
Process generic XML parameters. | |
virtual double | christoffel (const double coord[8], const int alpha, const int mu, const int nu) const |
Chistoffel symbol. More... | |
virtual int | christoffel (double dst[4][4][4], const double coord[8]) const |
Chistoffel symbol. More... | |
virtual int | diff (const double y[8], double res[8]) const |
F function such as dy/dtau=F(y,cst) | |
virtual void | hook (Listener *listener) |
Start listening. More... | |
virtual void | unhook (Listener *listener) |
Stop listening. More... | |
Protected Types | |
typedef Gyoto::SmartPointer < Gyoto::SmartPointee > | Subcontractor_t (Gyoto::FactoryMessenger *) |
A subcontractor builds an object upon order from the Factory. More... | |
Protected Member Functions | |
int | myrk4 (Worldline *line, const double coordin[8], double h, double res[8]) const |
RK4 integrator. | |
void | kind (const std::string) |
Set kind_. More... | |
void | coordKind (int coordkind) |
Set coordkind_. More... | |
void | incRefCount () |
Increment the reference counter. Warning: Don't mess with the counter. | |
int | decRefCount () |
Decrement the reference counter and return current value. Warning: Don't mess with the counter. | |
virtual void | tellListeners () |
Call tell() on each hooked Listener. More... | |
Protected Attributes | |
double | spin_ |
Angular momentum parameter. | |
double | a2_ |
spin_*spin_ | |
double | a3_ |
a2_*spin_ | |
double | a4_ |
a2_*a2_ | |
double | difftol_ |
Numerical tuning parameter. More... | |
double | rsink_ |
numerical horizon | |
double | drhor_ |
horizon security | |
bool | generic_integrator_ |
which integrator to use | |
double | delta_min_ |
Minimum integration step for the adaptive integrator. | |
double | delta_max_ |
Maximum integration step for the adaptive integrator. | |
double | delta_max_over_r_ |
Numerical tuning parameter. More... | |
bool | keplerian_ |
1 if circularVelocity should return the Newtonian Keplerian velocity, in r^-3/2 | |
Private Member Functions | |
int | myrk4 (const double coor[8], const double cst[5], double h, double res[8]) const |
Internal-use RK4 proxy. | |
int | myrk4_adaptive (Gyoto::Worldline *line, const double coor[8], double lastnorm, double normref, double coor1[8], double h0, double &h1, double h1max) const |
Internal-use adaptive RK4 proxy. | |
int | CheckCons (const double coor_init[8], const double cst[5], double coor_fin[8]) const |
Ensure conservation of the constants of motion. More... | |
void | Normalize4v (double coord[8], const double part_mass) const |
Normalize 4-velocity. More... | |
virtual int | diff (const double y[8], const double cst[5], double res[8]) const |
Used in RK4 proxies. | |
virtual void | computeCst (const double coord[8], double cst[5]) const |
Friends | |
class | Gyoto::SmartPointer< Gyoto::Metric::KerrBL > |
Metric around a Kerr black-hole in Boyer-Lindquist coordinates.
|
inherited |
A subcontractor builds an object upon order from the Factory.
Various classes need to provide a subcontractor to be able to instanciate themselves upon order from the Factory. A subcontractor is a function (often a static member function) which accepts a pointer to a FactoryMessenger as unique parameter, communicates with the Factory using this messenger to read an XML description of the object to build, and returns this objet. SmartPointee::Subcontractor_t* is just generic enough a typedef to cast to and from other subcontractor types: Astrobj::Subcontractor_t, Metric::Subcontractor_t, Spectrum::Subcontractor_t. A subcontractor needs to be registered using the relevant Register() function: Astrobj::Register(), Metric::Register(), Spectrum::Register().
|
private |
Ensure conservation of the constants of motion.
Tweak thetadot if necessary.
|
virtualinherited |
Chistoffel symbol.
Value of Christoffel symbol Γαμν at point (x1, x2, x3).
Reimplemented in Gyoto::Metric::NumericalMetricLorene, Gyoto::Metric::RotStar3_1, and Gyoto::Metric::Minkowski.
|
virtualinherited |
Chistoffel symbol.
Value of Christoffel symbol Γαμν at point (x1, x2, x3).
|
virtual |
Yield circular velocity at a given position.
Give the velocity of a massive particle in circular orbit at the given position projected onto the equatorial plane. Such a velocity may not exist everywhere (or anywhere) for a given metric. This method is intended to be used by Astrobj classes such as Torus or ThinDisk.
If keplerian_ is set to true, this method should return the Keplerian velcity instead (derived classes should ensure this, see KerrBL::circularVelocity() for instance).
The default implementation throws an error if keplerian_ is set to false.
pos | input: position, |
vel | output: velocity, |
dir | 1 for corotating, -1 for counterrotating. |
Reimplemented from Gyoto::Metric::Generic.
|
privatevirtual |
Integrator. Computes the evolution of y (initcond=y(0)).
|
protectedinherited |
Set coordkind_.
coordkind(int coordkind) is protected because, for most Metrics, it should not be changed in runtime.Set coordinate kind
|
inherited |
Get delta_max_
|
virtualinherited |
Get delta max at a given position
pos | 4-position |
optional] | delta_max_external external constraint on delta_max |
|
inherited |
Set delta_max_
|
inherited |
Get delta_min_
|
inherited |
Set delta_min_
|
virtualinherited |
called from Factory
Metrics implementations should impement fillElement to save their parameters to XML and call the Metric::fillElement(fmp) for the shared properties
Reimplemented in Gyoto::Metric::NumericalMetricLorene, Gyoto::Metric::RotStar3_1, and Gyoto::Metric::Minkowski.
|
virtual |
Metric coefficients.
The default implementation calls double gmunu(const double * x, int mu, int nu) const.
[out] | g | 4x4 array to store the coeefficients |
[in] | x | 4-position at which to compute the coefficients; |
Reimplemented from Gyoto::Metric::Generic.
|
virtual |
Metric coefficients.
The default implementation calls Metric:: gmunu(double g[4][4], const double * pos) const
x | 4-position at which to compute the coefficient; |
mu | 1st index of coefficient, 0≤μ≤3; |
nu | 2nd index of coefficient, 0≤ν≤3; |
Reimplemented from Gyoto::Metric::Generic.
|
virtualinherited |
Start listening.
Use from a Hook::Listener object method:
where "this" is a Listener and "teller" is a Teller.
Use unhook() later to stop listening to a given Teller.
listener | pointer to the new listener |
|
virtual |
Check whether integration should stop.
The integrating loop will ask this the Metric through this method whether or not it is happy to conitnue the integration. Typically, the Metric should answer 0 when everything is fine, 1 when too close to the event horizon, inside the BH...
coord | 8-coordinate vector to check. |
Reimplemented from Gyoto::Metric::Generic.
|
protectedinherited |
Set kind_.
kind(const std::string) is protected because, for most Metrics, it should not be changed in runtime.Set kind_
|
virtual |
Inverse function of MakeMomentumAndCst.
Computes pr, ptheta, E and L from rdot, thetadot, phidot, tdot
|
private |
Normalize 4-velocity.
To 0 or -1. Changes rdot to allow norm conservation.
|
virtual |
Set tdot (coord[4]) such that coord is light-like and return other possible tdot.
Set coord[4] so that the 4-velocity coord[4:7] is lightlike, i.e. of norm 0. There may be up to two solutions. coord[4] is set to the hightest. The lowest can be retrieved in tdot2. Everything is expressed in geometrical units.
[in,out] | coord | 8-position, coord[4] will be set according to the other elements; |
[out] | tdot2 | will be set to the smallest solution |
Reimplemented from Gyoto::Metric::Generic.
|
virtual |
Set tdot (coord[4]) such that coord is light-like. Everything is in geometrical units.
Set coord[4] so that the 4-velocity coord[4:7] is lightlike, i.e. of norm 0. There may be up to two solutions. coord[4] is set to the hightest. The lowest can be retrieved using nullifyCoord(double coord[8], double& tdot2) const. Everything is expressed in geometrical units.
[in,out] | coord | 8-position, coord[4] will be set according to the other elements; |
Reimplemented from Gyoto::Metric::Generic.
|
virtual |
Scalar product.
Compute the scalarproduct of the two quadrivectors u1 and u2 in this Metric, at point pos expressed in coordinate system sys.
pos | 4-position; |
u1 | 1st quadrivector; |
u2 | 2nd quadrivector; |
Reimplemented from Gyoto::Metric::Generic.
|
virtual |
Set parameter by name.
Assume MyKind is a subclass of Metric::Generic which has two members (a string StringMember and a double DoubleMember):
If MyKind is not a direct subclass of Generic, it should call the corresponding setParameter() implementation instead of Generic::setParameter().
name | XML name of the parameter |
content | string representation of the value |
unit | string representation of the unit |
Reimplemented from Gyoto::Metric::Generic.
|
virtualinherited |
Main loop in Subcontractor_t function.
The Subcontractor_t function for each Metric kind should look somewhat like this (templated as Gyoto::Metric::Subcontractor<MyKind>):
Each metric kind should implement setParameter(string name, string content, string unit) to interpret the individual XML elements. setParameters() can be overloaded in case the specific Metric class needs low level access to the FactoryMessenger. See Gyoto::Astrobj::UniformSphere::setParameters().
Reimplemented in Gyoto::Metric::RotStar3_1.
|
virtualinherited |
Compute tdot as a function of dr/dt, dtheta/dt and dphi/dt. Everything is in geometrical units.
coord | 4-position (geometrical units); |
v | 3-velocity dx1/dx0, dx2/dx0, dx3/dx0; |
|
protectedvirtualinherited |
Call tell() on each hooked Listener.
Whenever a Teller mutates, it should warn any Listener hooked to it using tellListeners().
|
virtualinherited |
Stop listening.
Use from a Hook::Listener object method:
where "this" is a Listener, "teller" is a Teller, and "this" has called teller->hook(this) previously.
listener | pointer to the listener |
|
inherited |
M * G / c^2, M is in kg, unitLength in meters.
Metrics implementations are free to express lengths and distances in whatever unit they see fit (presumably most often geometrical units). This function returns this unit in SI (meters).
|
protectedinherited |
Numerical tuning parameter.
Ensure that delta (the numerical integration step) is never larger than a fraction of the distance between the current location and the center of the coordinate system.
For investigations close to the event horizon, 0.5 is usually fine. If high accuracy is needed long after deflection (weak lensing), then this must be smaller. A good test is to look at a MinDistance map for a FixedStar: it must be smooth.
|
protected |
Numerical tuning parameter.
Small values yield more accurate integration at the expanse of computing time.