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
|
/*
* Methods for computing global quantities within the class Etoile_bin
*
* (see file etoile.h for documentation)
*/
/*
* Copyright (c) 2000-2001 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 as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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 et_bin_global_C[] = "$Header: /cvsroot/Lorene/C++/Source/Etoile/et_bin_global.C,v 1.12 2014/10/13 08:52:55 j_novak Exp $" ;
/*
* $Id: et_bin_global.C,v 1.12 2014/10/13 08:52:55 j_novak Exp $
* $Log: et_bin_global.C,v $
* Revision 1.12 2014/10/13 08:52:55 j_novak
* Lorene classes and functions now belong to the namespace Lorene.
*
* Revision 1.11 2004/12/30 17:24:42 f_limousin
* Remove #include "et_bin_ncp.h"
*
* Revision 1.10 2004/12/30 17:22:25 f_limousin
* Remove all functions belonging to the class Et_bin_ncp
*
* Revision 1.9 2003/06/20 14:02:44 f_limousin
* pow(gamma(), 1./2.) is changed to pow(a_car(), 3./2.)
*
* Revision 1.8 2003/02/06 17:25:56 f_limousin
* Add global quantities for the class et_bin_ncp
*
* Revision 1.7 2003/01/17 13:32:27 f_limousin
* Add comments
*
* Revision 1.6 2002/12/17 09:48:21 k_taniguchi
* Suppress every desaliasing multiplications using "%".
*
* Revision 1.5 2002/12/16 17:32:47 k_taniguchi
* Suppress the things I did in the previous version.
*
* Revision 1.4 2002/12/16 16:59:39 k_taniguchi
* Set some Cmp to the state of "std_base_scal()".
*
* Revision 1.3 2002/12/16 14:36:39 k_taniguchi
* Introduce a new Cmp for the calculation of gravitational mass.
*
* Revision 1.2 2002/12/10 15:45:25 k_taniguchi
* Change the multiplication "*" to "%".
*
* Revision 1.1.1.1 2001/11/20 15:19:28 e_gourgoulhon
* LORENE
*
* Revision 2.4 2000/07/06 10:02:22 eric
* *** empty log message ***
*
* Revision 2.3 2000/07/06 09:40:37 eric
* Ajout de la fonction xa_barycenter().
*
* Revision 2.2 2000/02/02 09:23:12 eric
* 1ere version operationnelle dans le cas relativiste.
*
* Revision 2.1 2000/02/01 16:00:13 eric
* Le calcul de mass_b est implemente dans le cas relativiste.
*
* Revision 2.0 2000/01/31 15:57:21 eric
* *** empty log message ***
*
*
* $Header: /cvsroot/Lorene/C++/Source/Etoile/et_bin_global.C,v 1.12 2014/10/13 08:52:55 j_novak Exp $
*
*/
// Headers C
// Headers Lorene
#include "etoile.h"
//--------------------------//
// Baryon mass //
//--------------------------//
namespace Lorene {
double Etoile_bin::mass_b() const {
if (p_mass_b == 0x0) { // a new computation is required
if (relativistic) {
Cmp sqrt_acar = sqrt(a_car()) ;
sqrt_acar.std_base_scal() ;
// See Eq (69) from Gourgoulhon et al. (2001)
// Cmp dens = a_car() % sqrt_acar % gam_euler() % nbar() ;
Cmp dens = a_car() * sqrt( a_car() ) * gam_euler() * nbar() ;
dens.std_base_scal() ;
p_mass_b = new double( dens.integrale() ) ;
}
else{
assert(nbar.get_etat() == ETATQCQ) ;
p_mass_b = new double( nbar().integrale() ) ;
}
}
return *p_mass_b ;
}
//----------------------------//
// Gravitational mass //
//----------------------------//
double Etoile_bin::mass_g() const {
if (p_mass_g == 0x0) { // a new computation is required
if (relativistic) {
Cmp sqrt_acar = sqrt(a_car()) ;
sqrt_acar.std_base_scal() ;
Cmp dens = a_car() * sqrt( a_car() ) * nnn()
* ( ener_euler() + s_euler() ) ;
dens.std_base_scal() ;
p_mass_g = new double( dens.integrale() ) ;
}
else{
p_mass_g = new double( mass_b() ) ; // in the Newtonian case
// M_g = M_b
}
}
return *p_mass_g ;
}
//----------------------------------//
// X coordinate of the barycenter //
//----------------------------------//
double Etoile_bin::xa_barycenter() const {
if (p_xa_barycenter == 0x0) { // a new computation is required
Cmp xxa(mp) ;
xxa = mp.xa ; // Absolute X coordinate
xxa.std_base_scal() ;
Cmp dens = a_car() * sqrt( a_car() ) * gam_euler() * nbar() * xxa ;
dens.std_base_scal() ;
p_xa_barycenter = new double( dens.integrale() / mass_b() ) ;
}
return *p_xa_barycenter ;
}
}
|