File: test_sym_tensor.C

package info (click to toggle)
lorene 0.0.0~cvs20161116%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 26,472 kB
  • sloc: cpp: 212,946; fortran: 21,645; makefile: 1,750; sh: 4
file content (253 lines) | stat: -rw-r--r-- 7,624 bytes parent folder | download | duplicates (2)
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
/*
 *  Code for testing the classes Sym_tensor, 
 *   in particular the transverse decomposion of a symmetric tensor.
 *
 */

/*
 *   Copyright (c) 2003-2004 Eric Gourgoulhon & Jerome Novak
 *
 *   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 version 2
 *   as published by the Free Software Foundation.
 *
 *   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 test_sym_tensor_C[] = "$Header: /cvsroot/Lorene/Codes/Test/Tensor/test_sym_tensor.C,v 1.9 2014/10/13 08:54:03 j_novak Exp $" ;

/*
 * $Id: test_sym_tensor.C,v 1.9 2014/10/13 08:54:03 j_novak Exp $
 * $Log: test_sym_tensor.C,v $
 * Revision 1.9  2014/10/13 08:54:03  j_novak
 * Lorene classes and functions now belong to the namespace Lorene.
 *
 * Revision 1.8  2014/10/06 15:12:56  j_novak
 * Modified #include directives to use c++ syntax.
 *
 * Revision 1.7  2005/09/08 07:40:56  j_novak
 * Update of set_auxiliary arguments.
 *
 * Revision 1.6  2005/04/06 14:55:45  j_novak
 * Added the test on the decomposition onto eta/mu/W/X/T potentials.
 *
 * Revision 1.5  2004/02/19 22:15:55  e_gourgoulhon
 * New argument "comment" in functions spectral_display and diffrelmax.
 *
 * Revision 1.4  2004/02/18 18:56:35  e_gourgoulhon
 * Method trace() renamed the_trace().
 * Tensor::trace used instead of Tensor::scontract.
 *
 * Revision 1.3  2004/02/09 13:01:35  e_gourgoulhon
 * Added test of the TT decomposition.
 *
 * Revision 1.2  2003/12/10 10:18:24  e_gourgoulhon
 * First operational version.
 *
 * Revision 1.1  2003/11/27 16:02:24  e_gourgoulhon
 * First version of code test_sym_tensor
 *
 *
 * $Header: /cvsroot/Lorene/Codes/Test/Tensor/test_sym_tensor.C,v 1.9 2014/10/13 08:54:03 j_novak Exp $
 *
 */

// C++ headers
#include "headcpp.h"

// C headers
#include <cstdlib>

// Lorene headers
#include "metric.h"
#include "nbr_spx.h"
#include "utilitaires.h"


using namespace Lorene ;

int main() {

	// Construction of a multi-grid (Mg3d)
	// -----------------------------------
  
	int nz = 3 ; 	// Number of domains
	int nzm1 = nz - 1 ;  
	int nr = 33 ; 	// Number of collocation points in r in each domain
	int nt = 9 ; 	// Number of collocation points in theta in each domain
	int np = 16 ; 	// Number of collocation points in phi in each domain
	int symmetry_theta = SYM ; // symmetry with respect to the equatorial plane
	int symmetry_phi = NONSYM ; // no symmetry in phi
	bool compact = true ; // external domain is compactified
  
	Mg3d mgrid(nz, nr, nt, np, symmetry_theta, symmetry_phi, compact) ;
	
	
  	// Construction of an affine mapping (Map_af)
  	// ------------------------------------------

	// Boundaries of each domains
	double r_limits[] = {0., 2., 3., __infinity} ; 
  	assert( nz == 3 ) ;  // since the above array described only 3 domains
  
	Map_af map(mgrid, r_limits) ; 
  	

	// Construction of a flat metric
	// -----------------------------

	Metric_flat mets(map, map.get_bvect_spher()) ; // spherical representation
	Metric_flat metc(map, map.get_bvect_cart()) ;  // Cartesian representation


	// Construction of a symmetric tensor field 
	// -----------------------------------------

	const Coord& x = map.x ; 
	const Coord& y = map.y ; 
	const Coord& z = map.z ; 
	const Coord& r = map.r ; 
	const Coord& cost = map.cost ; 
	const Coord& sint = map.sint ; 
	const Coord& cosp = map.cosp ; 
	const Coord& sinp = map.sinp ; 

	Sym_tensor hhc(map, CON, map.get_bvect_cart()) ; 
	
	
	Scalar tmp(map) ; 
		
    hhc.set(1,1) = 2 ; 
    tmp = 1 / (r*r*r*r)  ; 
	hhc.set(1,1).set_domain(nzm1) = tmp.domain(nzm1)  ; 
    hhc.set(1,1).set_dzpuis(4) ; 

    hhc.set(1,2) = x ;
    tmp = sint*cosp / (r*r) ; 
    hhc.set(1,2).set_domain(nzm1) = tmp.domain(nzm1)  ; 
    hhc.set(1,2).set_dzpuis(4); 	 
    
    hhc.set(1,3) = y * z ; 
    tmp = sint*sinp*cost / (r*r*r) ;
    hhc.set(1,3).set_domain(nzm1) = tmp.domain(nzm1)  ; 
    hhc.set(1,3).set_dzpuis(4); 	 

    hhc.set(2,2) = x*y ; 
    tmp = sint*sint*cosp*sinp / (r*r*r) ;
    hhc.set(2,2).set_domain(nzm1) = tmp.domain(nzm1)  ; 
    hhc.set(2,2).set_dzpuis(4); 	 
    
    hhc.set(2,3) = z  ; 
    tmp = cost / (r*r) ;
    hhc.set(2,3).set_domain(nzm1) = tmp.domain(nzm1)  ; 
    hhc.set(2,3).set_dzpuis(4); 	 
    
    hhc.set(3,3) = x ; 
    tmp = sint*cosp / (r*r) ;
    hhc.set(3,3).set_domain(nzm1) = tmp.domain(nzm1)  ; 
    hhc.set(3,3).set_dzpuis(4); 	 



/*
	hhc.set(1,1) = 1. / (1 + pow(r,4)) ; ;
	tmp = 1. / (1. + 1./pow(r,4)) ;
	hhc.set(1,1).set_domain(nzm1) = tmp.domain(nzm1) ; 
	hhc.set(1,1).set_dzpuis(4); 	 

	hhc.set(1,2) = x / (1 + pow(r,5)) ; 
	tmp = sint*cosp / (1. + 1./pow(r,5)) ;
	hhc.set(1,2).set_domain(nzm1) = tmp.domain(nzm1)  ; 
	hhc.set(1,2).set_dzpuis(4); 	 

	hhc.set(1,3) = y * z  / (1 + pow(r,6)) ; 
	tmp = sint*sinp*cost / (1. + 1./pow(r,6)) ;
	hhc.set(1,3).set_domain(nzm1) = tmp.domain(nzm1)  ; 
	hhc.set(1,3).set_dzpuis(4); 	 

	hhc.set(2,2) = x*y / (1 + pow(r,6)) ; 
	tmp = sint*sint*cosp*sinp / (1. + 1./pow(r,6)) ;
	hhc.set(2,2).set_domain(nzm1) = tmp.domain(nzm1)  ; 
	hhc.set(2,2).set_dzpuis(4); 	 

	hhc.set(2,3) = z / (1 + pow(r,5)) ; 
	tmp = cost / (1. + 1./pow(r,5)) ;
	hhc.set(2,3).set_domain(nzm1) = tmp.domain(nzm1)  ; 
	hhc.set(2,3).set_dzpuis(4); 	 

	hhc.set(3,3) = x / (1 + pow(r,5)) - y*z*z / (1 + pow(r,7)) ; 
	tmp = sint*cosp / (1. + 1./pow(r,5))
		- sint*sinp*cost*cost / (1. + 1./pow(r,7)) ;
	hhc.set(3,3).set_domain(nzm1) = tmp.domain(nzm1)  ; 
	hhc.set(3,3).set_dzpuis(4); 	 
*/

    hhc.std_spectral_base() ; 
    
    Sym_tensor hhs = hhc ; 
    hhs.change_triad( map.get_bvect_spher() ) ; 
    
    Scalar eta = hhs.eta() ; eta.div_r_dzpuis(4) ;
    Scalar mu = hhs.mu() ; mu.div_r_dzpuis(4) ;
    Scalar ww = hhs.www() ;
    Scalar xx = hhs.xxx() ;
    Scalar tt = hhs.ttt() ;
    cout << eta.get_dzpuis() << endl ;

    // Test of the eta/mu/W/X decomposition
    //-------------------------------------
    Sym_tensor hh_new(map, CON, map.get_bvect_spher()) ;
    hh_new.set_auxiliary(hhs(1,1), eta, mu, ww, xx, tt) ;
    
    cout << "Test of the decomposition on eta/mu/W/X potentials : " << endl ;
    for (int i=1; i<=3; i++) 
	for (int j=i; j<=3; j++) {
	    Scalar raz = (hhs(i,j) - hh_new(i,j)) ;
	    cout << "Component: " << i << " , " << j << ": " ;
	    maxabs(raz) ;
	    cout  << endl ;
	}
    arrete() ;
    
    // Transverse part
    // ---------------
    
    Sym_tensor_trans thhs = hhs.transverse(mets, 0x0, 6) ; 
    arrete() ; 
    
    thhs.dec_dzpuis(4) ;
    cout << "Max abs(trace) of the transverse part thhs : \n" ; 
    maxabs( thhs.the_trace() ) ; 
    
    Vector divt = thhs.divergence(mets) ; 
    cout << "Max abs(divergence) of the transverse part thhs : " << endl ;
    maxabs( divt ) ; 
    

    // TT part
    // -------
    
    Sym_tensor_tt tthhs = hhs.transverse(mets).tt_part() ; 
    tthhs.dec_dzpuis(4) ;
    
    Scalar tr_tthhs = tthhs.trace(mets) ;
    cout << "Max abs(trace) of the TT part tthhs : " << endl ;
    maxabs( tr_tthhs ) ; 
    
    Vector divtt = tthhs.divergence(mets) ; 
    cout << "Max abs(divergence) of the TT part tthhs : " << endl ;
    maxabs( divtt ) ; 
    
    
    return EXIT_SUCCESS ; 
}