LORENE
sym_tensor_decomp.C
1/*
2 * Methods transverse( ) and longit_pot( ) of class Sym_tensor
3 *
4 * (see file sym_tensor.h for documentation).
5 *
6 */
7
8/*
9 * Copyright (c) 2003-2004 Eric Gourgoulhon & Jerome Novak
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
30/*
31 * $Id: sym_tensor_decomp.C,v 1.15 2016/12/05 16:18:17 j_novak Exp $
32 * $Log: sym_tensor_decomp.C,v $
33 * Revision 1.15 2016/12/05 16:18:17 j_novak
34 * Suppression of some global variables (file names, loch, ...) to prevent redefinitions
35 *
36 * Revision 1.14 2014/10/13 08:53:43 j_novak
37 * Lorene classes and functions now belong to the namespace Lorene.
38 *
39 * Revision 1.13 2008/12/05 08:45:12 j_novak
40 * Modified dzpuis treatment.
41 *
42 * Revision 1.12 2008/12/03 10:20:00 j_novak
43 * Modified output.
44 *
45 * Revision 1.11 2004/06/17 06:56:42 e_gourgoulhon
46 * Simplified code for method transverse (use of Vector::ope_killing).
47 * Slight modif. of output in method longit_pot.
48 *
49 * Revision 1.10 2004/06/14 20:45:41 e_gourgoulhon
50 * Added argument method_poisson to methods longit_pot and transverse.
51 *
52 * Revision 1.9 2004/05/25 15:05:57 f_limousin
53 * Add parameters in argument of the functions transverse, longit_pot
54 * for the case of Map_et.
55 *
56 * Revision 1.8 2004/03/30 14:01:19 j_novak
57 * Copy constructors and operator= now copy the "derived" members.
58 *
59 * Revision 1.7 2004/03/30 08:01:16 j_novak
60 * Better treatment of dzpuis in mutators.
61 *
62 * Revision 1.6 2004/03/29 16:13:07 j_novak
63 * New methods set_longit_trans and set_tt_trace .
64 *
65 * Revision 1.5 2004/02/09 12:56:27 e_gourgoulhon
66 * Method longit_pot: added test of the vector Poisson equation.
67 *
68 * Revision 1.4 2004/02/02 09:18:11 e_gourgoulhon
69 * Method longit_pot: treatment of case divergence dzpuis = 5.
70 *
71 * Revision 1.3 2003/12/10 10:17:54 e_gourgoulhon
72 * First operational version.
73 *
74 * Revision 1.2 2003/11/27 16:01:47 e_gourgoulhon
75 * First implmentation.
76 *
77 * Revision 1.1 2003/11/26 21:57:03 e_gourgoulhon
78 * First version; not ready yet.
79 *
80 *
81 * $Header: /cvsroot/Lorene/C++/Source/Tensor/sym_tensor_decomp.C,v 1.15 2016/12/05 16:18:17 j_novak Exp $
82 *
83 */
84
85
86// Lorene headers
87#include "metric.h"
88#include "param.h"
89
90namespace Lorene {
92 const Sym_tensor_trans& ht ) {
93
94 assert ( v_pot.get_index_type(0) == CON ) ;
95
96 const Metric& metre = ht.get_met_div() ;
97
98 *this = ht + v_pot.ope_killing(metre) ; // this has dzpuis = 2, if v_pot not 0
99 if ((*this)(1,1).get_dzpuis() == 2)
100 dec_dzpuis(2) ; // which is decreased so to add *this to a flat metric
101
102 del_deriv() ;
103
104 set_dependance(metre) ;
105 int jp = get_place_met(metre) ;
106 assert ((jp>=0) && (jp<N_MET_MAX)) ;
107
108 p_transverse[jp] = new Sym_tensor_trans(ht) ;
109 p_longit_pot[jp] = new Vector( v_pot ) ;
110
111}
112
113const Sym_tensor_trans& Sym_tensor::transverse(const Metric& metre, Param* par,
114 int method_poisson) const {
115
116 set_dependance(metre) ;
117 int jp = get_place_met(metre) ;
118 assert ((jp>=0) && (jp<N_MET_MAX)) ;
119
120 if (p_transverse[jp] == 0x0) { // a new computation is necessary
121
122 assert( (type_indice(0) == CON) && (type_indice(1) == CON) ) ;
123
124 for (int ic=0; ic<n_comp; ic++) {
125 assert(cmp[ic]->check_dzpuis(4)) ; // dzpuis=4 is assumed
126 }
127
128 const Vector& ww = longit_pot(metre, par, method_poisson) ;
129
130 Sym_tensor lww = ww.ope_killing(metre) ; // D^i W^j + D^j W^i
131
132 lww.inc_dzpuis(2) ;
133
134 p_transverse[jp] = new Sym_tensor_trans(*mp, *triad, metre) ;
135
136 *(p_transverse[jp]) = *this - lww ;
137
138 }
139
140 return *p_transverse[jp] ;
141
142
143}
144
145
146const Vector& Sym_tensor::longit_pot(const Metric& metre, Param* par,
147 int method_poisson) const {
148
149 set_dependance(metre) ;
150 int jp = get_place_met(metre) ;
151 assert ((jp>=0) && (jp<N_MET_MAX)) ;
152
153 if (p_longit_pot[jp] == 0x0) { // a new computation is necessary
154
155 const Metric_flat* metf = dynamic_cast<const Metric_flat*>(&metre) ;
156 if (metf == 0x0) {
157 cout << "Sym_tensor::longit_pot : the case of a non flat metric"
158 << endl <<" is not treated yet !" << endl ;
159 abort() ;
160 }
161
162 Vector hhh = divergence(metre) ;
163
164
165 // If dpzuis is 5, it should be decreased to 4 for the Poisson equation:
166 bool dzp5 = false ;
167 for (int i=1; i<=3; i++) {
168 dzp5 = dzp5 || hhh(i).check_dzpuis(5) ;
169 }
170 if (dzp5) hhh.dec_dzpuis() ;
171
172 if (dynamic_cast<const Map_af*>(mp) != 0x0)
173 p_longit_pot[jp] = new Vector( hhh.poisson(double(1),
174 method_poisson) ) ;
175 else
176 p_longit_pot[jp] = new Vector( hhh.poisson(double(1), *par,
177 method_poisson) ) ;
178
179
180 // Test of resolution of the vector Poisson equation:
181 const Vector& ww = *(p_longit_pot[jp]) ;
182
183 hhh.dec_dzpuis() ;
184
185 Vector lapw = ww.derive_con(metre).divergence(metre)
186 + (ww.divergence(metre)).derive_con(metre) ;
187#ifndef NDEBUG
188 cout << "## Sym_tensor::longit_pot : test of Poisson : \n" ;
189 cout <<
190 " Max absolute error in each domain on the vector Poisson equation:\n" ;
191 maxabs(lapw - hhh) ;
192
193 int nz = mp->get_mg()->get_nzone() ; // total number of domains
194
195 cout << " Relative error in each domain on the vector Poisson equation:\n" ;
196 for (int i=1; i<=3; i++){
197 cout << " Comp. " << i << " : " ;
198 for (int l=0; l<nz; l++){
199 cout << diffrel(lapw(i),hhh(i) )(l) << " " ;
200 }
201 cout << endl ;
202 }
203 cout << endl ;
204#endif
205 }
206
207 return *p_longit_pot[jp] ;
208
209
210}
211
212
213}
Affine radial mapping.
Definition map.h:2042
Flat metric for tensor calculation.
Definition metric.h:261
Parameter storage.
Definition param.h:125
Transverse symmetric tensors of rank 2.
Definition sym_tensor.h:611
const Metric & get_met_div() const
Returns the metric with respect to which the divergence and the trace are defined.
Definition sym_tensor.h:672
void set_longit_trans(const Vector &v, const Sym_tensor_trans &a)
Assigns the derived members p_longit_pot and p_transverse and updates the components accordingly.
const Sym_tensor_trans & transverse(const Metric &gam, Param *par=0x0, int method_poisson=6) const
Computes the transverse part of the tensor with respect to a given metric, transverse meaning diverg...
const Vector & longit_pot(const Metric &gam, Param *par=0x0, int method_poisson=6) const
Computes the vector potential of longitudinal part of the tensor (see documentation of method transv...
Sym_tensor_trans * p_transverse[N_MET_MAX]
Array of the transverse part of the tensor with respect to various metrics, transverse meaning diver...
Definition sym_tensor.h:242
virtual void del_deriv() const
Deletes the derived quantities.
Definition sym_tensor.C:289
Sym_tensor(const Map &map, const Itbl &tipe, const Base_vect &triad_i)
Standard constructor.
Definition sym_tensor.C:145
Vector * p_longit_pot[N_MET_MAX]
Array of the vector potential of the longitudinal part of the tensor with respect to various metrics ...
Definition sym_tensor.h:249
const Vector & divergence(const Metric &) const
Returns the divergence of this with respect to a Metric .
Definition sym_tensor.C:352
Tensor field of valence 1.
Definition vector.h:188
Sym_tensor ope_killing(const Metric &gam) const
Computes the Killing operator associated with a given metric.
Definition vector.C:441
Vector poisson(double lambda, int method=6) const
Solves the vector Poisson equation with *this as a source.
const Scalar & divergence(const Metric &) const
The divergence of this with respect to a Metric .
Definition vector.C:384
Tbl diffrel(const Cmp &a, const Cmp &b)
Relative difference between two Cmp (norme version).
Definition cmp_math.C:507
int get_index_type(int i) const
Gives the type (covariant or contravariant) of the index number i .
Definition tensor.h:899
virtual void dec_dzpuis(int dec=1)
Decreases by dec units the value of dzpuis and changes accordingly the values in the compactified ext...
Definition tensor.C:817
const Map *const mp
Mapping on which the numerical values at the grid points are defined.
Definition tensor.h:301
int get_place_met(const Metric &) const
Returns the position of the pointer on metre in the array met_depend .
Definition tensor.C:452
const Tensor & derive_con(const Metric &gam) const
Returns the "contravariant" derivative of this with respect to some metric , by raising the last inde...
Definition tensor.C:1023
virtual void inc_dzpuis(int inc=1)
Increases by inc units the value of dzpuis and changes accordingly the values in the compactified ext...
Definition tensor.C:825
void set_dependance(const Metric &) const
To be used to describe the fact that the derivatives members have been calculated with met .
Definition tensor.C:462
Scalar ** cmp
Array of size n_comp of pointers onto the components.
Definition tensor.h:321
int n_comp
Number of stored components, depending on the symmetry.
Definition tensor.h:318
const Tensor & divergence(const Metric &gam) const
Computes the divergence of this with respect to some metric .
Definition tensor.C:1064
Itbl type_indice
1D array of integers (class Itbl ) of size valence containing the type of each index: COV for a cov...
Definition tensor.h:316
const Base_vect * triad
Vectorial basis (triad) with respect to which the tensor components are defined.
Definition tensor.h:309
Tbl maxabs(const Tensor &aa, const char *comment=0x0, ostream &ost=cout, bool verb=true)
Maxima in each domain of the absolute values of the tensor components.
Lorene prototypes.
Definition app_hor.h:67
virtual void dec_dzpuis(Scalar &) const =0
Decreases by 1 the value of dzpuis of a Scalar and changes accordingly its values in the compacti...