LORENE
scalar_integ.C
1 /*
2  * Member functions of the Scalar class for the computation of integrals.
3  */
4 
5 /*
6  * Copyright (c) 2003 Eric Gourgoulhon & Jerome Novak
7  *
8  * Copyright (c) 1999-2001 Eric Gourgoulhon (Cmp version)
9  *
10  * This file is part of LORENE.
11  *
12  * LORENE is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
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 
30 
31 /*
32  * $Id: scalar_integ.C,v 1.6 2025/03/04 16:31:11 j_novak Exp $
33  * $Log: scalar_integ.C,v $
34  * Revision 1.6 2025/03/04 16:31:11 j_novak
35  * Updated method "integrale" to "Scalar" objects.
36  *
37  * Revision 1.5 2016/12/05 16:18:18 j_novak
38  * Suppression of some global variables (file names, loch, ...) to prevent redefinitions
39  *
40  * Revision 1.4 2014/10/13 08:53:46 j_novak
41  * Lorene classes and functions now belong to the namespace Lorene.
42  *
43  * Revision 1.3 2004/07/26 16:02:23 j_novak
44  * Added a flag to specify whether the primitive should be zero either at r=0
45  * or at r going to infinity.
46  *
47  * Revision 1.2 2004/06/14 15:28:17 e_gourgoulhon
48  * Added method primr().
49  *
50  * Revision 1.1 2003/09/25 09:33:36 j_novak
51  * Added methods for integral calculation and various manipulations
52  *
53  *
54  * $Header: /cvsroot/Lorene/C++/Source/Tensor/Scalar/scalar_integ.C,v 1.6 2025/03/04 16:31:11 j_novak Exp $
55  *
56  */
57 
58 // Headers Lorene
59 #include "tensor.h"
60 #include "cmp.h"
61 
62  //-----------------------------------//
63  // Integral over all space //
64  //-----------------------------------//
65 
66 namespace Lorene {
67 double Scalar::integrale() const {
68 
69  const Tbl& integ = integrale_domains() ;
70 
71  int nz = mp->get_mg()->get_nzone() ;
72 
73  double resu = integ(0) ;
74  for (int l=1; l<nz; l++) {
75  resu += integ(l) ;
76  }
77 
78  return resu ;
79 }
80 
81  //-----------------------------------//
82  // Integrals in each domain //
83  //-----------------------------------//
84 
86 
87  // Protection
88  assert(etat != ETATNONDEF) ;
89 
90  // If the integrals have not been previously computed, the
91  // computation must be done by the appropriate routine of the mapping :
92 
93  if (p_integ == 0x0) {
94  p_integ = mp->integrale(*this) ;
95  }
96 
97  return *p_integ ;
98 
99 }
100 
101 
102  //----------------------//
103  // Radial primitive //
104  //----------------------//
105 
106 Scalar Scalar::primr(bool null_infty) const {
107 
108  Scalar resu(*mp) ;
109 
110  mp->primr(*this, resu, null_infty) ;
111 
112  return resu ;
113 }
114 
115 
116 
117 
118 }
Lorene prototypes.
Definition: app_hor.h:67
const Mg3d * get_mg() const
Gives the Mg3d on which the mapping is defined.
Definition: map.h:792
Tensor field of valence 0 (or component of a tensorial field).
Definition: scalar.h:399
virtual void primr(const Scalar &uu, Scalar &resu, bool null_infty) const =0
Computes the radial primitive which vanishes for .
double integrale() const
Computes the integral over all space of *this .
Definition: scalar_integ.C:67
Scalar primr(bool null_infty=true) const
Computes the radial primitive which vanishes for .
Definition: scalar_integ.C:106
Tbl * p_integ
Pointer on the space integral of *this (values in each domain) (0x0 if not up to date) ...
Definition: scalar.h:480
const Tbl & integrale_domains() const
Computes the integral in each domain of *this .
Definition: scalar_integ.C:85
int get_nzone() const
Returns the number of domains.
Definition: grilles.h:467
virtual Tbl * integrale(const Scalar &) const =0
Computes the integral over all space of a Scalar .
int etat
The logical state ETATNONDEF (undefined), ETATZERO (null), ETATUN (one), or ETATQCQ (ordinary)...
Definition: scalar.h:408
Basic array class.
Definition: tbl.h:164
const Map *const mp
Mapping on which the numerical values at the grid points are defined.
Definition: tensor.h:307