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
|
/*
* Methods for computing global quantities within the class Et_rot_diff
*
* (see file et_rot_diff.h for documentation)
*/
/*
* Copyright (c) 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_rot_diff_global_C[] = "$Header: /cvsroot/Lorene/C++/Source/Etoile/et_rot_diff_global.C,v 1.4 2014/10/13 08:52:57 j_novak Exp $" ;
/*
* $Id: et_rot_diff_global.C,v 1.4 2014/10/13 08:52:57 j_novak Exp $
* $Log: et_rot_diff_global.C,v $
* Revision 1.4 2014/10/13 08:52:57 j_novak
* Lorene classes and functions now belong to the namespace Lorene.
*
* Revision 1.3 2014/10/06 15:13:08 j_novak
* Modified #include directives to use c++ syntax.
*
* Revision 1.2 2003/12/19 16:21:42 j_novak
* Shadow hunt
*
* Revision 1.1.1.1 2001/11/20 15:19:28 e_gourgoulhon
* LORENE
*
* Revision 1.2 2001/10/24 16:06:53 eric
* fonction tsw(): correction erreur ener. cin. (facteur 0.5).
*
* Revision 1.1 2001/10/19 08:18:30 eric
* Initial revision
*
*
* $Header: /cvsroot/Lorene/C++/Source/Etoile/et_rot_diff_global.C,v 1.4 2014/10/13 08:52:57 j_novak Exp $
*
*/
// Headers C
#include <cmath>
// Headers Lorene
#include "et_rot_diff.h"
//----------------------------//
// T/W //
//----------------------------//
namespace Lorene {
double Et_rot_diff::tsw() const {
if (p_tsw == 0x0) { // a new computation is required
Cmp dens = uuu() ;
dens.mult_r() ; // Multiplication by
dens.va = (dens.va).mult_st() ; // r sin(theta)
if (relativistic) {
dens = omega_field() * a_car() * b_car() * (ener_euler() + press())
* dens ;
}
else { // Newtonian case
dens = omega_field() * nbar() * dens ;
}
dens.std_base_scal() ;
double tcin = 0.5 * dens.integrale() ;
if (relativistic) {
Cmp dens2 = a_car() * bbb() * gam_euler() * ener() ;
dens2.std_base_scal() ;
double mass_p = dens2.integrale() ;
p_tsw = new double( tcin / ( mass_p + tcin - mass_g() ) ) ;
}
else { // Newtonian case
Cmp dens2 = 0.5 * nbar() * logn() ;
dens2.std_base_scal() ;
double wgrav = dens2.integrale() ;
p_tsw = new double( tcin / fabs(wgrav) ) ;
}
}
return *p_tsw ;
}
}
|