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
|
/*
* Kerr metric in Quasi-Isotropic coordinates
*/
/*
* Copyright (c) 2013 Claire Some, Eric Gourgoulhon
*
* This file is part of LORENE.
*
* LORENE is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* LORENE is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LORENE; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
char kerrQI_C[] = "$Header: /cvsroot/Lorene/Codes/Kerr2/kerr_QI.C,v 1.5 2014/10/13 08:53:57 j_novak Exp $" ;
/*
* $Id: kerr_QI.C,v 1.5 2014/10/13 08:53:57 j_novak Exp $
* $Log: kerr_QI.C,v $
* Revision 1.5 2014/10/13 08:53:57 j_novak
* Lorene classes and functions now belong to the namespace Lorene.
*
* Revision 1.4 2013/07/25 19:45:50 o_straub
* calculation of the marginally bound radius
*
* Revision 1.3 2013/04/04 15:33:47 e_gourgoulhon
* Comparison ISCO with analytic formula
*
* Revision 1.2 2013/04/03 12:11:19 e_gourgoulhon
* Added member kk to Compobj; suppressed tkij
*
* Revision 1.1 2013/04/02 23:18:30 e_gourgoulhon
* New code kerr_QI
*
*
* $Header: /cvsroot/Lorene/Codes/Kerr2/kerr_QI.C,v 1.5 2014/10/13 08:53:57 j_novak Exp $
*
*/
// C++ headers
#include "headcpp.h"
// C headers
#include <cstdlib>
#include <cmath>
// Lorene headers
#include "compobj.h"
#include "nbr_spx.h"
#include "utilitaires.h"
#include "proto.h"
#include "graphique.h"
using namespace Lorene ;
int main() {
// Parameters of the computation
// -----------------------------
ifstream fpar("par_kerr_QI.d") ;
if ( !fpar.good() ) {
cerr << "Problem in opening the file par_kerr_QI.d ! " << endl ;
abort() ;
}
double mass ; // M
fpar >> mass ; fpar.ignore(1000,'\n') ;
double a_ov_m ; // Kerr parameter a/M
fpar >> a_ov_m ; fpar.ignore(1000,'\n') ;
int graphic_out ; // flag for graphical outputs
fpar >> graphic_out ; fpar.ignore(1000,'\n') ;
int nr ; // Number of collocation points in r in each domain
fpar >> nr; fpar.ignore(1000,'\n') ;
int nt ; // Number of collocation points in theta in each domain
fpar >> nt; fpar.ignore(1000,'\n') ;
int np ; // Number of collocation points in phi in each domain
fpar >> np; fpar.ignore(1000,'\n') ;
int nz ; // Number of domains
fpar >> nz ; fpar.ignore(1000,'\n') ;
int nzm1 = nz - 1 ; // Index of outermost domain
fpar.ignore(1000,'\n') ; // skip title
double* r_limits = new double[nz+1]; // radial boundaries of each domain in units of M
for (int l=0; l<nz; l++) {
fpar >> r_limits[l];
}
r_limits[nz] = __infinity ;
fpar.close();
cout << "M = " << mass << ", a/M = " << a_ov_m << endl ;
double r_hor = double(0.5)*mass*sqrt(double(1)-a_ov_m*a_ov_m) ;
cout << "Value of coordinate r at the event horizon : " << r_hor << endl ;
cout << "r_limits : " ;
for (int l=0; l<nz+1; l++) {
cout << r_limits[l] << " " ;
}
cout << endl ;
// Setup of a multi-domain grid (Lorene class Mg3d)
// ------------------------------------------------
int symmetry_theta = SYM ; // symmetry with respect to the equatorial plane
int symmetry_phi = SYM ; // symmetry with respect to phi --> phi + pi
bool compact = true ; // external domain is compactified
Mg3d mgrid(nz, nr, nt, np, symmetry_theta, symmetry_phi, compact) ;
cout << mgrid << endl ;
// Setup of an affine mapping : grid --> physical space (Lorene class Map_af)
// --------------------------------------------------------------------------
Map_af map(mgrid, r_limits) ;
// Construction of the Kerr_QI object:
// ----------------------------------
Kerr_QI bh(map, mass, a_ov_m) ;
bh.update_metric() ;
cout.precision(15) ;
cout << bh << endl ;
// ISCO from Eq. (21) of Bardeen, Press & Teukolsky, ApJ 178, 347 (1972):
double third = double(1)/double(3) ;
double z1 = 1 + pow(1-a_ov_m*a_ov_m, third)*( pow(1+a_ov_m, third) +
pow(1-a_ov_m, third) ) ;
double z2 = sqrt(3*a_ov_m*a_ov_m + z1*z1) ;
double R_isco_p = 3 + z2 - sqrt((3-z1)*(3+z1+2*z2)) ;
double R_isco_r = 3 + z2 + sqrt((3-z1)*(3+z1+2*z2)) ;
cout << "Analytic value of R_ISCO (prograde orbits) : " << R_isco_p << " M" << endl ;
cout << "Numerical value of R_ISCO (prograde orbits) : " <<
bh.r_isco(0)/mass + mass*(1-a_ov_m*a_ov_m)/(4*bh.r_isco(0)) + 1 << " M" << endl ;
//cout << "Analytic value of R_ISCO (retrograde orbits): " << R_isco_r << " M" << endl ;
// R_mb analogue to Eq. (19) of Bardeen, Press & Teukolsky, ApJ 178, 347 (1972):
double R_mb = 2 - a_ov_m + 2*sqrt(1 - a_ov_m) ;
cout << "Analytic value of R_mb : " << R_mb << " M" << endl ;
cout << "Numerical value of R_mb : " << bh.r_mb(0)/mass + mass*(1 - a_ov_m*a_ov_m)/(4*bh.r_mb(0)) + 1 << " M ; " << (bh.r_mb(0)) << endl ;
// Drawings
if (graphic_out == 1) {
des_meridian(bh.get_nn(), 0, 1.1*r_limits[nzm1], "N", 1) ;
des_meridian(bh.get_nphi(), 0, 1.1*r_limits[nzm1], "Nphi", 3) ;
des_meridian(bh.get_gamma().cov()(1,1), 0, 1.1*r_limits[nzm1], "gamma_11", 4) ;
des_meridian(bh.get_gamma().cov()(2,2), 0, 1.1*r_limits[nzm1], "gamma_22", 5) ;
des_meridian(bh.get_gamma().cov()(3,3), 0, 1.1*r_limits[nzm1], "gamma_33", 6) ;
des_meridian(bh.get_kk()(1,3), 0, 1.1*r_limits[nzm1], "K_(r)(ph)", 7) ;
des_meridian(bh.get_kk()(2,3), 0, 1.1*r_limits[nzm1], "K_(th)(ph)", 8) ;
arrete() ;
}
// Output file for GYOTO
//----------------------
bh.gyoto_data("gyoto_kerr_QI.d") ;
return EXIT_SUCCESS ;
}
|