>
BLACKHOLES TUTORIAL |
Black Holes
A simulation can contain any number of black holes, numbered 1, 2, 3, ... . Functions are provided to get the mass and spin of each black hole.
Working with black holes
ReadBlackHoleMass | ReadBlackHoleSpin |
ReadBlackHoleIrreducibleMass |
Functions for reading black hole information.
Mass
The function ReadBlackHoleMass gives the mass of one of the black holes as a function of time. This is the physical mass of the black hole, including the spin contribution.
In[1]:=
Out[1]=
In[2]:=
Out[2]//Short=
When simulating binary systems, the inspiralling black holes are conventionally taken to be 1 and 2, and the final merged black hole is 3.
In[3]:=
Out[3]=
In[4]:=
Out[4]=
In[5]:=
Out[5]=
Spin
The function ReadBlackHoleSpin gives the spin of one of the black holes as a function of time. This is the dimensionful angular momentum; i.e. it has units of .
In[6]:=
Out[6]=
In[7]:=
Out[7]=
In[8]:=
Out[8]=
In[9]:=
Out[9]=
Since the result is a list, you can compute the magnitude of the spin vector using the Norm function:
In[10]:=
Out[10]=
In[11]:=
Out[11]=
You can also compute the dimensionless spin by dividing by the mass squared:
In[12]:=
Out[12]=
In[13]:=
Out[13]=
Irreducible mass
If there is no spin information available in the simulation then ReadBlackHoleMass cannot be used. If it is known that the spins are negligible, then the irreducible mass can be used as a mass measurement.
In[14]:=
Out[14]=
Implementation notes
SimulationTools obtains black hole information from any of the following sources:
AHFinderDirect and QuasiLocalMeasures Cactus output;
Numerical Relativity Data Format (NRDF) output files
In both cases, the black holes are numbered according to the output data. So black hole 1 corresponds to AHFinderDirect horizon 1 (QuasiLocalMeasures horizon 0), or NRDF body 1 from the metadata file.