LORENE
scalar_test_poisson.C
1 /*
2  * Method of class Scalar to check if a Poisson equation has been correctly
3  * solved.
4  *
5  * (see file scalar.h for documentation)
6  *
7  */
8 
9 /*
10  * Copyright (c) 2003 Eric Gourgoulhon & Jerome Novak
11  *
12  * Copyright (c) 2000-2001 Eric Gourgoulhon (for a preceding Cmp version)
13  *
14  * This file is part of LORENE.
15  *
16  * LORENE is free software; you can redistribute it and/or modify
17  * it under the terms of the GNU General Public License as published by
18  * the Free Software Foundation; either version 2 of the License, or
19  * (at your option) any later version.
20  *
21  * LORENE is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24  * GNU General Public License for more details.
25  *
26  * You should have received a copy of the GNU General Public License
27  * along with LORENE; if not, write to the Free Software
28  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29  *
30  */
31 
32 
33 
34 
35 /*
36  * $Id: scalar_test_poisson.C,v 1.6 2025/03/04 13:16:50 j_novak Exp $
37  * $Log: scalar_test_poisson.C,v $
38  * Revision 1.6 2025/03/04 13:16:50 j_novak
39  * New complete versions of Map_af::poisson() and Map_et::poisson() for Scalar, not using Cmp.
40  *
41  * Revision 1.5 2016/12/05 16:18:19 j_novak
42  * Suppression of some global variables (file names, loch, ...) to prevent redefinitions
43  *
44  * Revision 1.4 2014/10/13 08:53:47 j_novak
45  * Lorene classes and functions now belong to the namespace Lorene.
46  *
47  * Revision 1.3 2003/10/29 13:14:29 e_gourgoulhon
48  * Change of method name: laplacien --> laplacian.
49  *
50  * Revision 1.2 2003/10/01 13:04:44 e_gourgoulhon
51  * The method Tensor::get_mp() returns now a reference (and not
52  * a pointer) onto a mapping.
53  *
54  * Revision 1.1 2003/09/25 09:13:11 e_gourgoulhon
55  * First version.
56  *
57  *
58  * $Header: /cvsroot/Lorene/C++/Source/Tensor/Scalar/scalar_test_poisson.C,v 1.6 2025/03/04 13:16:50 j_novak Exp $
59  *
60  */
61 
62 // Headers Lorene
63 #include "tensor.h"
64 
65 namespace Lorene {
66 Tbl Scalar::test_poisson(const Scalar& uu, ostream& ostr, bool detail) const {
67 
68  assert( &(uu.get_mp()) == mp ) ;
69 
70  // Computation of the absolute and relative errors
71  // -----------------------------------------------
72 
73  int dzi ;
74  if ( check_dzpuis(4) ) {
75  dzi = 4 ;
76  }
77  else{
78  if ( check_dzpuis(2) ) {
79  dzi = 2 ;
80  }
81  else{
82  assert( check_dzpuis(0) ) ;
83  dzi = 0 ;
84  }
85  }
86 
87  Tbl tdiff = max( abs( uu.laplacian(dzi) - *this ) ) ;
88 
89  Tbl tmax = max( abs(*this) ) ;
90 
91  int nz = mp->get_mg()->get_nzone() ;
92  int nzm1 = nz - 1 ;
93 
94  Tbl trel(nz) ;
95  trel.set_etat_qcq() ;
96 
97  if ( (dzpuis == 0) || (tmax(nzm1) == double(0)) ) {
98 
99  double s_max = max( tmax ) ;
100 
101  for (int l=0; l<nz; l++) {
102  trel.set(l) = tdiff(l) / s_max ;
103  }
104 
105  }
106  else{
107 
108  double s_max = 0 ;
109  for (int l=0; l<nzm1; l++) {
110  s_max = (tmax(l) > s_max) ? tmax(l) : s_max ;
111  }
112 
113  for (int l=0; l<nzm1; l++) {
114  trel.set(l) = tdiff(l) / s_max ;
115  }
116 
117  trel.set(nzm1) = tdiff(nzm1) / tmax(nzm1) ;
118 
119  }
120 
121  // All the errors are set in the same output 2-D Tbl
122  // -------------------------------------------------
123 
124  Tbl err(3, nz) ;
125 
126  err.set_etat_qcq() ;
127 
128  for(int l=0; l<nz; l++) {
129  err.set(0, l) = trel(l) ;
130  err.set(1, l) = tdiff(l) ;
131  err.set(2, l) = tmax(l) ;
132  }
133 
134  // Display
135  // -------
136 
137  if (detail) {
138  ostr << "Max. source :" ;
139  for (int l=0; l<nz; l++) {
140  ostr << " " << err(2, l) ;
141  }
142 
143  ostr << endl << "Abs. error : " ;
144  for (int l=0; l<nz; l++) {
145  ostr << " " << err(1, l) ;
146  }
147  }
148 
149  ostr << endl << "Rel. error : " ;
150  for (int l=0; l<nz; l++) {
151  ostr << " " << err(0, l) ;
152  }
153 
154  ostr << endl ;
155 
156  return err ;
157 
158 }
159 
160 }
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
const Scalar & laplacian(int ced_mult_r=4) const
Returns the Laplacian of *this.
Definition: scalar_deriv.C:435
double & set(int i)
Read/write of a particular element (index i) (1D case)
Definition: tbl.h:301
Tensor field of valence 0 (or component of a tensorial field).
Definition: scalar.h:399
friend Tbl max(const Scalar &)
Maximum values of a Scalar in each domain.
Definition: scalar_math.C:614
int dzpuis
Power of r by which the quantity represented by this must be divided in the compactified external do...
Definition: scalar.h:415
Tbl test_poisson(const Scalar &uu, ostream &ostr, bool detail=false) const
Checks if a Poisson equation with *this as a source has been correctly solved.
void set_etat_qcq()
Sets the logical state to ETATQCQ (ordinary state).
Definition: tbl.C:364
int get_nzone() const
Returns the number of domains.
Definition: grilles.h:467
Basic array class.
Definition: tbl.h:164
bool check_dzpuis(int dzi) const
Returns false if the last domain is compactified and *this is not zero in this domain and dzpuis is n...
Definition: scalar.C:879
friend Scalar abs(const Scalar &)
Absolute value.
Definition: scalar_math.C:526
const Map *const mp
Mapping on which the numerical values at the grid points are defined.
Definition: tensor.h:307
const Map & get_mp() const
Returns the mapping.
Definition: tensor.h:902