LORENE
strot_diff_global.C
1 /*
2  * Methods for computing global quantities within the class Star_rot_diff
3  *
4  * (see file star_rot_diff.h for documentation).
5  *
6  */
7 
8 /*
9  * Copyright (c) 2025 Santiago Jaraba
10  *
11  * This file is part of LORENE.
12  *
13  * LORENE is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License version 2
15  * as published by the Free Software Foundation.
16  *
17  * LORENE is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with LORENE; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25  *
26  */
27 
28 
29 // C headers
30 #include <cmath>
31 
32 // Lorene headers
33 #include "star_rot_diff.h"
34 
35 
36  //---------------------//
37  // T/W //
38  //---------------------//
39 
40 namespace Lorene {
41 double Star_rot_diff::tsw() const {
42 
43  if (p_tsw == 0x0) { // a new computation is required
44 
45  Scalar dens = uuu ;
46 
47  dens.mult_rsint() ; // Multiplication by r sin(theta)
48 
49  if (relativistic) {
50  dens = omega_field * a_car * b_car * (ener_euler + press)
51  * dens ;
52  }
53  else { // Newtonian case
54  dens = omega_field * nbar * dens ;
55  }
56 
57  dens.std_spectral_base() ;
58 
59  double tcin = 0.5 * dens.integrale() ;
60 
61  if (relativistic) {
62 
63  Scalar dens2 = a_car * bbb * gam_euler * ener ;
64  dens2.std_spectral_base() ;
65  double mass_p = dens2.integrale() ;
66 
67  p_tsw = new double( tcin / ( mass_p + tcin - mass_g() ) ) ;
68 
69  }
70  else { // Newtonian case
71  Scalar dens2 = 0.5 * nbar * logn ;
72  dens2.std_spectral_base() ;
73  double wgrav = dens2.integrale() ;
74  p_tsw = new double( tcin / fabs(wgrav) ) ;
75  }
76 
77 
78  }
79 
80  return *p_tsw ;
81 
82 }
83 
84 }
virtual double mass_g() const
Gravitational mass.
Scalar a_car
Square of the metric factor A.
Definition: star_rot.h:116
bool relativistic
Indicator of relativity: true for a relativistic star, false for a Newtonian one. ...
Definition: star_rot.h:106
Scalar bbb
Metric factor B.
Definition: star_rot.h:119
Lorene prototypes.
Definition: app_hor.h:67
Tensor field of valence 0 (or component of a tensorial field).
Definition: scalar.h:399
double integrale() const
Computes the integral over all space of *this .
Definition: scalar_integ.C:67
virtual void std_spectral_base()
Sets the spectral bases of the Valeur va to the standard ones for a scalar field. ...
Definition: scalar.C:790
Scalar nbar
Baryon density in the fluid frame.
Definition: star.h:192
double * p_tsw
Ratio T/W.
Definition: star_rot.h:245
Scalar gam_euler
Lorentz factor between the fluid and Eulerian observers.
Definition: star.h:204
Scalar ener
Total energy density in the fluid frame.
Definition: star.h:193
Scalar press
Fluid pressure.
Definition: star.h:194
void mult_rsint()
Multiplication by everywhere; dzpuis is not changed.
Scalar logn
Logarithm of the lapse N .
Definition: star.h:222
Scalar b_car
Square of the metric factor B.
Definition: star_rot.h:122
virtual double tsw() const
Ratio T/W.
Scalar uuu
Norm of u_euler.
Definition: star_rot.h:133
Scalar ener_euler
Total energy density in the Eulerian frame.
Definition: star.h:198
Scalar omega_field
Field .
Definition: star_rot_diff.h:73