LORENE
tensor.h
1 /*
2  * Definition of Lorene classes Tensor and Sym_tensor
3  *
4  */
5 
6 /*
7  * Copyright (c) 2003-2004 Eric Gourgoulhon & Jerome Novak
8  *
9  * Copyright (c) 1999-2001 Philippe Grandclement (for preceding class Tenseur)
10  * Copyright (c) 2000-2001 Eric Gourgoulhon (for preceding class Tenseur)
11  * Copyright (c) 2002 Jerome Novak (for preceding class Tenseur)
12  *
13  * This file is part of LORENE.
14  *
15  * LORENE is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation; either version 2 of the License, or
18  * (at your option) any later version.
19  *
20  * LORENE is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with LORENE; if not, write to the Free Software
27  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28  *
29  */
30 
31 
32 #ifndef __TENSOR_H_
33 #define __TENSOR_H_
34 
35 
36 /*
37  * $Id: tensor.h,v 1.65 2025/03/31 08:29:50 j_novak Exp $
38  * $Log: tensor.h,v $
39  * Revision 1.65 2025/03/31 08:29:50 j_novak
40  * Methods to copyt Tensors and Scalars to smaller grids...
41  *
42  * Revision 1.64 2025/03/28 09:12:50 j_novak
43  * News methods to copy Tensors and Scalars to larger grids. To be used for de-aliasing.
44  *
45  * Revision 1.63 2023/08/31 08:27:26 g_servignat
46  * Added the possibility to filter in the r direction within the ylm filter. An order filtering of 0 means no filtering (for all 3 directions).
47  *
48  * Revision 1.62 2023/08/28 09:53:33 g_servignat
49  * Added ylm filter for Tensor and Scalar in theta + phi directions
50  *
51  * Revision 1.61 2014/10/13 08:52:37 j_novak
52  * Lorene classes and functions now belong to the namespace Lorene.
53  *
54  * Revision 1.60 2013/06/05 15:43:49 j_novak
55  * Suppression of leg_spectral_base()
56  *
57  * Revision 1.59 2013/01/11 15:44:54 j_novak
58  * Addition of Legendre bases (part 2).
59  *
60  * Revision 1.58 2008/12/05 08:44:02 j_novak
61  * New flag to control the "verbosity" of maxabs.
62  *
63  * Revision 1.57 2007/12/21 16:06:16 j_novak
64  * Methods to filter Tensor, Vector and Sym_tensor objects.
65  *
66  * Revision 1.56 2006/06/07 14:08:58 j_novak
67  * New methods set_index_type( / int).
68  *
69  * Revision 1.55 2005/10/25 08:56:34 p_grandclement
70  * addition of std_spectral_base in the case of odd functions near the origin
71  *
72  * Revision 1.54 2004/07/08 12:21:51 j_novak
73  * Replaced tensor::annule_extern_c2 with tensor::annule_extern_cn for a
74  * more general transition.
75  *
76  * Revision 1.53 2004/06/17 06:54:23 e_gourgoulhon
77  * Added method annule_extern_c2.
78  *
79  * Revision 1.52 2004/05/13 21:29:27 e_gourgoulhon
80  * Added (external) functions central_value, max_all_domains,
81  * min_all_domains and maxabs_all_domains.
82  *
83  * Revision 1.51 2004/03/24 14:53:39 j_novak
84  * Double declarations suppressed
85  *
86  * Revision 1.50 2004/03/22 13:12:43 j_novak
87  * Modification of comments to use doxygen instead of doc++
88  *
89  * Revision 1.49 2004/02/27 21:12:44 e_gourgoulhon
90  * Suppressed function contract_desal (since contract has now the
91  * boolean argument "desaliasing").
92  *
93  * Revision 1.48 2004/02/26 22:44:37 e_gourgoulhon
94  * -- constructor of Tensor from Map is now declared explicit.
95  * -- class Tensor: added methods compute_derive_lie and derive_lie
96  * -- class Tensor_sym: added methods derive_cov, derive_con and derive_lie.
97  *
98  * Revision 1.47 2004/02/19 22:08:51 e_gourgoulhon
99  * Added argument "comment" in method spectral_display,
100  * as well as in external functions min, max, maxabs, etc...
101  *
102  * Revision 1.46 2004/02/18 18:42:41 e_gourgoulhon
103  * -- Added methods trace.
104  * -- Method scontract suppressed ( since it is the same as trace(int, int) ).
105  *
106  * Revision 1.45 2004/02/18 15:52:39 e_gourgoulhon
107  * -- Added optional argument desaliasing in function contract.
108  * -- Added new function contract for double contraction.
109  *
110  * Revision 1.44 2004/02/16 10:48:06 e_gourgoulhon
111  * Added "class Tensor_sym;" at the beginning.
112  *
113  * Revision 1.43 2004/02/15 21:53:48 e_gourgoulhon
114  * Modif. comments: suppressed the mention *** under development ***.
115  *
116  * Revision 1.42 2004/01/30 12:44:17 e_gourgoulhon
117  * Added Tensor_sym operator*(const Tensor_sym&, const Tensor_sym& ).
118  *
119  * Revision 1.41 2004/01/27 13:05:10 j_novak
120  * Removed the method Tensor::mult_r_ced()
121  *
122  * Revision 1.40 2004/01/19 16:31:40 e_gourgoulhon
123  * Added operator()(int, int, int, int) and set(int, int, int, int)
124  * for direct access to components of valence 4 tensors.
125  *
126  * Revision 1.39 2004/01/15 11:09:27 f_limousin
127  * Modif in method contract_desal
128  *
129  * Revision 1.38 2004/01/15 11:00:44 f_limousin
130  * Added method contract_desal for the contraction of two tensors with desaliasing
131  *
132  * Revision 1.37 2004/01/14 11:39:00 f_limousin
133  * Added method contract for one tensor
134  *
135  * Revision 1.36 2004/01/08 09:21:39 e_gourgoulhon
136  * Added arithmetics of Tensor_sym.
137  * Added arithmetics with Scalar (to solve some ambiguities with respect
138  * to the Scalar arithmetics).
139  * Added Tensor_sym tensorial product.
140  *
141  * Revision 1.35 2004/01/04 20:47:37 e_gourgoulhon
142  * -- Introduction of new derived class Tensor_sym to store tensor with
143  * two symmetric indices
144  * -- Suppression of class Tensor_delta (now a special case of Tensor_sym).
145  *
146  * Revision 1.34 2003/12/27 14:58:01 e_gourgoulhon
147  * Improved documentation. In particular, better description of methods
148  * derive_cov(), derive_con() and divergence(), taking into account the
149  * new index convention for covariant derivatives.
150  *
151  * Revision 1.33 2003/12/05 16:41:05 f_limousin
152  * Added method operator*
153  *
154  * Revision 1.32 2003/11/06 14:43:37 e_gourgoulhon
155  * Gave a name to const arguments in certain method prototypes (e.g.
156  * constructors) to correct a bug of DOC++.
157  *
158  * Revision 1.31 2003/11/05 15:25:57 e_gourgoulhon
159  * Added declaration of external functions:
160  * max, min, maxabs, diffrel and diffrelmax.
161  *
162  * Revision 1.30 2003/11/03 10:58:00 j_novak
163  * Suppressed the constructor from a Sym_tensor.
164  *
165  * Revision 1.29 2003/10/29 11:00:42 e_gourgoulhon
166  * Virtual functions dec_dzpuis and inc_dzpuis have now an integer argument to
167  * specify by which amount dzpuis is to be increased.
168  * Accordingly virtual methods dec2_dzpuis and inc2_dzpuis have been suppressed.
169  *
170  * Revision 1.28 2003/10/28 21:21:50 e_gourgoulhon
171  * Member function Tensor::contract(int, int) renamed
172  * Tensor::scontract(int, int) in order not to mask
173  * the non-member function contract.
174  *
175  * Revision 1.27 2003/10/27 10:44:00 e_gourgoulhon
176  * Declaration of class Sym_tensor is now in file sym_tensor.h.
177  *
178  * Revision 1.26 2003/10/24 15:00:19 j_novak
179  * Forgotten Class declaration... thanks IBM aix!
180  *
181  * Revision 1.25 2003/10/20 14:26:02 j_novak
182  * New assignement operators.
183  *
184  * Revision 1.24 2003/10/20 09:32:10 j_novak
185  * Members p_potential and p_div_free of the Helmholtz decomposition
186  * + the method decompose_div(Metric).
187  *
188  * Revision 1.23 2003/10/19 19:47:31 e_gourgoulhon
189  * Introduced new virtual method spectral_display.
190  *
191  * Revision 1.22 2003/10/16 15:24:30 e_gourgoulhon
192  * Name of method annule(int ) changed to annule_domain(int ).
193  *
194  * Revision 1.21 2003/10/16 14:21:33 j_novak
195  * The calculation of the divergence of a Tensor is now possible.
196  *
197  * Revision 1.20 2003/10/13 13:52:39 j_novak
198  * Better managment of derived quantities.
199  *
200  * Revision 1.19 2003/10/08 14:24:08 j_novak
201  * replaced mult_r_zec with mult_r_ced
202  *
203  * Revision 1.18 2003/10/06 20:48:23 e_gourgoulhon
204  * Added methods down and up_down.
205  *
206  * Revision 1.17 2003/10/06 16:17:29 j_novak
207  * Calculation of contravariant derivative and Ricci scalar.
208  *
209  * Revision 1.16 2003/10/06 15:12:56 e_gourgoulhon
210  * Added tensor contraction and raising of index.
211  *
212  * Revision 1.15 2003/10/06 13:58:45 j_novak
213  * The memory management has been improved.
214  * Implementation of the covariant derivative with respect to the exact Tensor
215  * type.
216  *
217  * Revision 1.14 2003/10/05 21:07:27 e_gourgoulhon
218  * Method std_spectral_base() is now virtual.
219  *
220  * Revision 1.13 2003/10/03 11:21:45 j_novak
221  * More methods for the class Metric
222  *
223  * Revision 1.12 2003/10/02 15:45:48 j_novak
224  * New class Metric
225  *
226  * Revision 1.11 2003/10/01 15:41:14 e_gourgoulhon
227  * class name Delta changed to Tensor_delta.
228  *
229  * Revision 1.10 2003/10/01 13:03:52 e_gourgoulhon
230  * The method get_mp() returns now a reference (and not a pointer)
231  * onto a mapping.
232  *
233  * Revision 1.9 2003/09/29 13:48:17 j_novak
234  * New class Delta.
235  *
236  * Revision 1.8 2003/09/26 14:33:51 j_novak
237  * Arithmetic functions for the class Tensor
238  *
239  * Revision 1.7 2003/09/26 08:05:29 j_novak
240  * New class Vector.
241  *
242  * Revision 1.6 2003/09/25 21:01:50 e_gourgoulhon
243  * Improved comments.
244  *
245  * Revision 1.5 2003/09/25 13:37:38 j_novak
246  * Symmetric tensors of valence 2 are now implemented (not tested yet).
247  *
248  * Revision 1.4 2003/09/24 15:10:54 j_novak
249  * Suppression of the etat flag in class Tensor (still present in Scalar)
250  *
251  * Revision 1.3 2003/09/24 08:46:31 j_novak
252  * Added tensor.h and scalar.h to the documentation
253  *
254  * Revision 1.2 2003/09/23 08:53:11 e_gourgoulhon
255  * not ready yet
256  *
257  * Revision 1.1 2003/09/22 12:50:47 e_gourgoulhon
258  * First version: not ready yet!
259  *
260  *
261  * $Header: /cvsroot/Lorene/C++/Include/tensor.h,v 1.65 2025/03/31 08:29:50 j_novak Exp $
262  *
263  */
264 
265 #define COV -1
266 #define CON +1
267 
268 #define N_MET_MAX 5
269 
270 // Headers Lorene
271 #include "itbl.h"
272 #include "base_vect.h"
273 #include "map.h"
274 
275 namespace Lorene {
276 class Scalar ;
277 class Vector ;
278 class Tensor_sym ;
279 class Sym_tensor ;
280 class Metric ;
281 
282  //-------------------------//
283  // class Tensor //
284  //-------------------------//
285 
286 
300 class Tensor {
301 
302  // Data :
303  // -----
304  protected:
305 
307  const Map* const mp ;
308 
310  int valence ;
311 
315  const Base_vect* triad ;
316 
323 
324  int n_comp ;
325 
327  Scalar** cmp ;
328 
329 
330  // Derived data :
331  // ------------
332  protected:
339  mutable const Metric* met_depend[N_MET_MAX] ;
340 
347  mutable Tensor* p_derive_cov[N_MET_MAX];
348 
355  mutable Tensor* p_derive_con[N_MET_MAX];
356 
363  mutable Tensor* p_divergence[N_MET_MAX];
364 
365 
366  // Constructors - Destructor :
367  // -------------------------
368 
369  public:
370 
386  Tensor(const Map& map, int val, const Itbl& tipe,
387  const Base_vect& triad_i) ;
388 
405  Tensor(const Map& map, int val, const Itbl& tipe,
406  const Base_vect* triad_i) ;
407 
417  Tensor(const Map& map, int val, int tipe,
418  const Base_vect& triad_i) ;
419 
420  Tensor(const Tensor&) ;
421 
432  Tensor(const Map& map, const Base_vect& triad_i, FILE* fich) ;
433 
434  protected:
440  explicit Tensor(const Map& map) ;
441 
463  Tensor(const Map& map, int val, const Itbl& tipe, int n_comp_i,
464  const Base_vect& triad_i) ;
465 
480  Tensor(const Map& map, int val, int tipe, int n_comp_i,
481  const Base_vect& triad_i) ;
482 
483 
484  public:
485 
486  virtual ~Tensor() ;
487 
488  // Memory management
489  // -----------------
490  protected:
491  virtual void del_deriv() const ;
492 
494  void set_der_0x0() const ;
495 
500  virtual void del_derive_met(int) const ;
501 
506  void set_der_met_0x0(int) const ;
507 
517  void set_dependance (const Metric&) const ;
518 
524  int get_place_met(const Metric&) const ;
525 
526  // Mutators / assignment
527  // ---------------------
528  public:
533  virtual void set_etat_nondef() ;
534 
539  virtual void set_etat_zero() ;
540 
545  virtual void set_etat_qcq() ;
546 
555  virtual void allocate_all() ;
556 
560  virtual void change_triad(const Base_vect& new_triad) ;
561 
568  void set_triad(const Base_vect& new_triad) ;
569 
570 
571  virtual void operator=(const Tensor&) ;
572 
584  Scalar& set(const Itbl& ind) ;
585 
595  Scalar& set(int i1, int i2) ;
596 
597 
608  Scalar& set(int i1, int i2, int i3) ;
609 
622  Scalar& set(int i1, int i2, int i3, int i4) ;
623 
629  void annule_domain(int l) ;
630 
642  virtual void annule(int l_min, int l_max) ;
643 
655  void annule_extern_cn(int l_0, int deg) ;
656 
661  virtual void std_spectral_base() ;
662 
667  virtual void std_spectral_base_odd() ;
668 
673  virtual void dec_dzpuis(int dec = 1) ;
674 
679  virtual void inc_dzpuis(int inc = 1) ;
680 
685  virtual void exponential_filter_r(int lzmin, int lzmax, int p,
686  double alpha= -16.) ;
687 
692  virtual void exponential_filter_ylm(int lzmin, int lzmax, int p,
693  double alpha= -16.) ;
694 
699  virtual void exponential_filter_ylm_phi(int lzmin, int lzmax, int p_r, int p_tet, int p_phi,
700  double alpha= -16.) ;
701 
710  void copy_coefs_from_smaller_grid(const Tensor& tens_small_grid) ;
711 
720  void copy_coefs_from_larger_grid(const Tensor& tens_large_grid) ;
721 
722 
723 
724  // Computational methods
725  // ---------------------
726 
727  protected:
732  void compute_derive_lie(const Vector& v, Tensor& resu) const ;
733 
734 
735  public:
758  const Tensor& derive_cov(const Metric& gam) const ;
759 
765  const Tensor& derive_con(const Metric& gam) const ;
766 
784  const Tensor& divergence(const Metric& gam) const ;
785 
786 
790  Tensor derive_lie(const Vector& v) const ;
791 
804  Tensor up(int ind, const Metric& gam) const ;
805 
818  Tensor down(int ind, const Metric& gam) const ;
819 
827  Tensor up_down(const Metric& gam) const ;
828 
837  Tensor trace(int ind1, int ind2) const ;
838 
849  Tensor trace(int ind1, int ind2, const Metric& gam) const ;
850 
853  Scalar trace() const ;
854 
859  Scalar trace(const Metric& gam) const ;
860 
861 
862  // Accessors
863  // ---------
864  public:
880  virtual int position(const Itbl& ind) const ;
881 
898  virtual Itbl indices(int pos) const ;
899 
900  public:
902  const Map& get_mp() const {return *mp ;} ;
903 
907  const Base_vect* get_triad() const {return triad;} ;
908 
910  int get_valence() const {return valence ; } ;
911 
913  int get_n_comp() const {return n_comp ;} ;
914 
927  int get_index_type(int i) const {return type_indice(i) ;};
928 
937  Itbl get_index_type() const {return type_indice ; } ;
938 
950  int& set_index_type(int i) {return type_indice.set(i) ;};
951 
959  Itbl& set_index_type() {return type_indice ; } ;
960 
961 
973  const Scalar& operator()(const Itbl& ind) const ;
974 
984  const Scalar& operator()(int i1, int i2) const ;
985 
996  const Scalar& operator()(int i1, int i2, int i3) const ;
997 
1009  const Scalar& operator()(int i1, int i2, int i3, int i4) const ;
1010 
1011  // Member arithmetics
1012  // ------------------
1013  public:
1014  void operator+=(const Tensor &) ;
1015  void operator-=(const Tensor &) ;
1016 
1017  // Outputs
1018  // -------
1019  public:
1020  virtual void sauve(FILE *) const ;
1021 
1032  virtual void spectral_display(const char* comment = 0x0,
1033  double threshold = 1.e-7, int precision = 4,
1034  ostream& ostr = cout) const ;
1035 
1036  friend ostream& operator<<(ostream& , const Tensor & ) ;
1037 
1038 
1039  // Friend classes
1040  // ---------------
1041  friend class Scalar ;
1042  friend class Vector ;
1043  friend class Sym_tensor ;
1044  friend class Tensor_sym ;
1045  friend class Metric ;
1046 
1047  // Mathematical operators
1048  // ----------------------
1049 
1050  friend Scalar operator+(const Tensor&, const Scalar&) ;
1051  friend Scalar operator+(const Scalar&, const Tensor&) ;
1052  friend Scalar operator-(const Tensor&, const Scalar&) ;
1053  friend Scalar operator-(const Scalar&, const Tensor&) ;
1054  friend Tensor operator*(const Tensor&, const Tensor&) ;
1055  friend Tensor_sym operator*(const Tensor&, const Tensor_sym&) ;
1056  friend Tensor_sym operator*(const Tensor_sym&, const Tensor&) ;
1057  friend Tensor_sym operator*(const Tensor_sym&, const Tensor_sym&) ;
1058 
1059 };
1060 
1061 
1062 
1063  //-------------------------//
1064  // class Tensor_sym //
1065  //-------------------------//
1066 
1078 class Tensor_sym : public Tensor {
1079 
1080  // Data :
1081  // -----
1082  protected:
1083 
1085  int id_sym1 ;
1086 
1090  int id_sym2 ;
1091 
1092 
1093  // Constructors - Destructor :
1094  // -------------------------
1095 
1096  public:
1097 
1117  Tensor_sym(const Map& map, int val, const Itbl& tipe,
1118  const Base_vect& triad_i, int index_sym1,
1119  int index_sym2) ;
1120 
1134  Tensor_sym(const Map& map, int val, int tipe, const Base_vect& triad_i,
1135  int index_sym1, int index_sym2) ;
1136 
1150  Tensor_sym(const Map& map, int tipe0, int tipe1, int tipe2,
1151  const Base_vect& triad_i,
1152  int index_sym1, int index_sym2) ;
1153 
1154  Tensor_sym(const Tensor_sym& a) ;
1155 
1166  Tensor_sym(const Map& map, const Base_vect& triad_i, FILE* fich) ;
1167 
1168  public:
1169 
1170  virtual ~Tensor_sym() ;
1171 
1172  // Mutators / assignment
1173  // ---------------------
1174  public:
1175 
1177  virtual void operator=(const Tensor_sym& a) ;
1178 
1183  virtual void operator=(const Tensor& a) ;
1184 
1185 
1186  // Accessors
1187  // ---------
1188  public:
1190  int sym_index1() const {return id_sym1;} ;
1191 
1195  int sym_index2() const {return id_sym2;} ;
1196 
1212  virtual int position(const Itbl& ind) const ;
1213 
1230  virtual Itbl indices(int pos) const ;
1231 
1232 
1233  // Outputs
1234  // -------
1235  public:
1236  virtual void sauve(FILE *) const ;
1237 
1238 
1239  // Tensor calculus
1240  // ---------------
1241  public:
1242 
1257  const Tensor_sym& derive_cov(const Metric& gam) const ;
1258 
1264  const Tensor_sym& derive_con(const Metric& gam) const ;
1265 
1269  Tensor_sym derive_lie(const Vector& v) const ;
1270 
1271 
1272  // Mathematical operators
1273  // ----------------------
1274 
1275  friend Tensor_sym operator*(const Tensor&, const Tensor_sym&) ;
1276  friend Tensor_sym operator*(const Tensor_sym&, const Tensor&) ;
1277 
1278 };
1279 
1280 
1281 
1288 Tensor operator*(const Tensor& a, const Tensor& b) ;
1290 
1292 Tensor_sym operator*(const Tensor& a, const Tensor_sym& b) ;
1293 
1295 Tensor_sym operator*(const Tensor_sym& a, const Tensor& b) ;
1296 
1305 Tensor_sym operator*(const Tensor_sym& a, const Tensor_sym& b) ;
1306 
1307 
1327 Tensor contract(const Tensor& t1, int ind1, const Tensor& t2, int ind2,
1328  bool desaliasing = false) ;
1329 
1356 Tensor contract(const Tensor& t1, int ind_i1, int ind_j1,
1357  const Tensor& t2, int ind_i2, int ind_j2,
1358  bool desaliasing = false) ;
1359 
1360 
1376 Tensor contract(const Tensor& t1, int ind1, int ind2) ;
1377 
1378 
1390 Tbl max(const Tensor& aa, const char* comment = 0x0, ostream& ost = cout) ;
1391 
1392 
1404 Tbl min(const Tensor& aa, const char* comment = 0x0, ostream& ost = cout) ;
1405 
1417 Tbl maxabs(const Tensor& aa, const char* comment = 0x0, ostream& ost = cout,
1418  bool verb = true) ;
1419 
1420 
1435 Tbl diffrel(const Tensor& aa, const Tensor& bb, const char* comment = 0x0,
1436  ostream& ost = cout) ;
1437 
1452 Tbl diffrelmax(const Tensor& aa, const Tensor& bb, const char* comment = 0x0,
1453  ostream& ost = cout) ;
1454 
1465 Tbl central_value(const Tensor& aa, const char* comment = 0x0, ostream& ost = cout) ;
1466 
1479 Tbl max_all_domains(const Tensor& aa, int l_excluded = -1, const char* comment = 0x0,
1480  ostream& ost = cout) ;
1481 
1482 
1495 Tbl min_all_domains(const Tensor& aa, int l_excluded = -1, const char* comment = 0x0,
1496  ostream& ost = cout) ;
1497 
1510 Tbl maxabs_all_domains(const Tensor& aa, int l_excluded = -1, const char* comment = 0x0,
1511  ostream& ost = cout, bool verb = true) ;
1512 
1513 
1514 
1524 Tensor operator+(const Tensor& ) ;
1525 Tensor operator-(const Tensor& ) ;
1526 Tensor operator+(const Tensor& a, const Tensor& b) ;
1527 
1529 Scalar operator+(const Tensor& a, const Scalar& b) ;
1530 
1532 Scalar operator+(const Scalar& a, const Tensor& b) ;
1533 
1534 Tensor operator-(const Tensor& a, const Tensor& b) ;
1535 
1537 Scalar operator-(const Tensor& a, const Scalar& b) ;
1538 
1540 Scalar operator-(const Scalar& a, const Tensor& b) ;
1541 
1542 Tensor operator*(const Scalar& a , const Tensor& b) ;
1543 Tensor operator*(const Tensor& a, const Scalar& b) ;
1544 Tensor operator*(double , const Tensor&) ;
1545 Tensor operator* (const Tensor&, double) ;
1546 Tensor operator*(int, const Tensor &) ;
1547 Tensor operator*(const Tensor&, int) ;
1548 Tensor operator/(const Tensor&, const Scalar&) ;
1549 Tensor operator/(const Tensor&, double) ;
1550 Tensor operator/(const Tensor&, int) ;
1551 
1553 
1561 Tensor_sym operator+(const Tensor_sym&) ;
1562 
1566 Tensor_sym operator-(const Tensor_sym&) ;
1567 
1572 Tensor_sym operator+(const Tensor_sym&, const Tensor_sym&) ;
1573 
1578 Tensor_sym operator-(const Tensor_sym&, const Tensor_sym&) ;
1579 
1583 Tensor_sym operator*(const Scalar& a, const Tensor_sym& b) ;
1584 
1588 Tensor_sym operator*(const Tensor_sym& a, const Scalar& b) ;
1589 
1593 Tensor_sym operator*(double, const Tensor_sym&) ;
1594 
1598 Tensor_sym operator*(const Tensor_sym&, double) ;
1599 
1603 Tensor_sym operator*(int, const Tensor_sym&) ;
1604 
1608 Tensor_sym operator*(const Tensor_sym&, int) ;
1609 
1613 Tensor_sym operator/(const Tensor_sym&, const Scalar&) ;
1614 
1618 Tensor_sym operator/(const Tensor_sym&, double) ;
1619 
1623 Tensor_sym operator/(const Tensor_sym&, int) ;
1624 
1627 }
1628 #include "scalar.h"
1629 
1630 #include "vector.h"
1631 
1632 #include "sym_tensor.h"
1633 
1634 
1635 #endif
friend Tensor_sym operator*(const Tensor &, const Tensor_sym &)
Tensorial product with symmetries.
void annule_domain(int l)
Sets the Tensor to zero in a given domain.
Definition: tensor.C:676
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.
Metric for tensor calculation.
Definition: metric.h:90
virtual void set_etat_qcq()
Sets the logical state of all components to ETATQCQ (ordinary state).
Definition: tensor.C:491
virtual void sauve(FILE *) const
Save in a binary file.
Definition: tensor_sym.C:375
Tbl min_all_domains(const Tensor &aa, int l_excluded=-1, const char *comment=0x0, ostream &ost=cout)
Minimum value of each component of a tensor over all the domains.
virtual void operator=(const Tensor &)
Assignment to a Tensor.
Definition: tensor.C:563
int & set(int i)
Read/write of a particular element (index i ) (1D case)
Definition: itbl.h:247
int n_comp
Number of stored components, depending on the symmetry.
Definition: tensor.h:324
virtual void operator=(const Tensor_sym &a)
Assignment to another Tensor_sym.
Definition: tensor_sym.C:201
int sym_index1() const
Number of the first symmetric index (0<= id_sym1 < valence )
Definition: tensor.h:1190
Tbl central_value(const Tensor &aa, const char *comment=0x0, ostream &ost=cout)
Central value of each component of a tensor.
virtual void del_derive_met(int) const
Logical destructor of the derivatives depending on the i-th element of met_depend ...
Definition: tensor.C:424
Lorene prototypes.
Definition: app_hor.h:67
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:463
Tensor up(int ind, const Metric &gam) const
Computes a new tensor by raising an index of *this.
Itbl & set_index_type()
Sets the types of all the indices.
Definition: tensor.h:959
Tensor derive_lie(const Vector &v) const
Computes the Lie derivative of this with respect to some vector field v.
friend Tensor operator*(const Tensor &, const Tensor &)
Tensorial product.
Tensor field of valence 0 (or component of a tensorial field).
Definition: scalar.h:399
virtual void set_etat_nondef()
Sets the logical state of all components to ETATNONDEF (undefined state).
Definition: tensor.C:499
Base_val operator*(const Base_val &, const Base_val &)
This operator is used when calling multiplication or division of Valeur .
int id_sym2
Number of the second symmetric index (id_sym1 < id_sym2 < valence )
Definition: tensor.h:1090
Base class for coordinate mappings.
Definition: map.h:697
void copy_coefs_from_smaller_grid(const Tensor &tens_small_grid)
Copies the content of the argument Tensor to this defined on a larger grid, with similar mappings...
Definition: tensor.C:1116
int get_n_comp() const
Returns the number of stored components.
Definition: tensor.h:913
virtual Itbl indices(int pos) const
Returns the indices of a component given by its position in the array cmp .
Definition: tensor_sym.C:313
Tensor up_down(const Metric &gam) const
Computes a new tensor by raising or lowering all the indices of *this .
const Tensor_sym & derive_con(const Metric &gam) const
Returns the "contravariant" derivative of this with respect to some metric , by raising the last inde...
int sym_index2() const
Number of the second symmetric index (id_sym1 < id_sym2 < valence )
Definition: tensor.h:1195
Basic integer array class.
Definition: itbl.h:122
const Base_vect * triad
Vectorial basis (triad) with respect to which the tensor components are defined.
Definition: tensor.h:315
virtual void sauve(FILE *) const
Save in a binary file.
Definition: tensor.C:916
virtual void std_spectral_base_odd()
Sets the standard odd spectal bases of decomposition for each component.
Definition: tensor.C:992
Cmp operator/(const Cmp &, const Cmp &)
Cmp / Cmp.
Definition: cmp_arithm.C:460
Tbl min(const Cmp &)
Minimum values of a Cmp in each domain.
Definition: cmp_math.C:461
Tensor_sym(const Map &map, int val, const Itbl &tipe, const Base_vect &triad_i, int index_sym1, int index_sym2)
Standard constructor.
Definition: tensor_sym.C:72
int get_place_met(const Metric &) const
Returns the position of the pointer on metre in the array met_depend .
Definition: tensor.C:453
Tensor field of valence 1.
Definition: vector.h:188
const Tensor_sym & derive_cov(const Metric &gam) const
Returns the covariant derivative of this with respect to some metric .
Vectorial bases (triads) with respect to which the tensorial components are defined.
Definition: base_vect.h:105
Tbl diffrel(const Cmp &a, const Cmp &b)
Relative difference between two Cmp (norme version).
Definition: cmp_math.C:507
virtual void exponential_filter_ylm_phi(int lzmin, int lzmax, int p_r, int p_tet, int p_phi, double alpha=-16.)
Applies exponential filters to all components (see Scalar::exponential_filter_ylm_phi )...
Definition: tensor.C:1102
void copy_coefs_from_larger_grid(const Tensor &tens_large_grid)
Copies the content of the argument Tensor to this defined on a smaller grid, with similar mappings...
Definition: tensor.C:1123
Tensor * p_derive_cov[N_MET_MAX]
Array of pointers on the covariant derivatives of this with respect to various metrics.
Definition: tensor.h:347
Scalar trace() const
Trace on two different type indices for a valence 2 tensor.
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:818
virtual void exponential_filter_r(int lzmin, int lzmax, int p, double alpha=-16.)
Applies exponential filters to all components (see Scalar::exponential_filter_r ).
Definition: tensor.C:1076
void operator-=(const Tensor &)
-= Tensor
Definition: tensor.C:597
Itbl type_indice
1D array of integers (class Itbl ) of size valence containing the type of each index: COV for a cova...
Definition: tensor.h:322
const Base_vect * get_triad() const
Returns the vectorial basis (triad) on which the components are defined.
Definition: tensor.h:907
virtual int position(const Itbl &ind) const
Returns the position in the array cmp of a component given by its indices.
Definition: tensor.C:535
void compute_derive_lie(const Vector &v, Tensor &resu) const
Computes the Lie derivative of this with respect to some vector field v (protected method; the public...
Tbl maxabs_all_domains(const Tensor &aa, int l_excluded=-1, const char *comment=0x0, ostream &ost=cout, bool verb=true)
Maximum of the absolute value of each component of a tensor over all the domains. ...
Cmp operator+(const Cmp &)
Definition: cmp_arithm.C:107
Tbl max_all_domains(const Tensor &aa, int l_excluded=-1, const char *comment=0x0, ostream &ost=cout)
Maximum value of each component of a tensor over all the domains.
int get_index_type(int i) const
Gives the type (covariant or contravariant) of the index number i .
Definition: tensor.h:927
Itbl get_index_type() const
Returns the types of all the indices.
Definition: tensor.h:937
virtual void allocate_all()
Performs the memory allocation of all the elements, down to the double arrays of the Tbl s...
Definition: tensor.C:518
Scalar ** cmp
Array of size n_comp of pointers onto the components.
Definition: tensor.h:327
Tbl max(const Cmp &)
Maximum values of a Cmp in each domain.
Definition: cmp_math.C:438
virtual ~Tensor_sym()
Destructor.
Definition: tensor_sym.C:192
Tensor * p_derive_con[N_MET_MAX]
Array of pointers on the contravariant derivatives of this with respect to various metrics...
Definition: tensor.h:355
int id_sym1
Number of the first symmetric index (0<= id_sym1 < valence )
Definition: tensor.h:1085
Tensor handling.
Definition: tensor.h:300
Tenseur contract(const Tenseur &, int id1, int id2)
Self contraction of two indices of a Tenseur .
const Tensor & derive_cov(const Metric &gam) const
Returns the covariant derivative of this with respect to some metric .
Definition: tensor.C:1012
int get_valence() const
Returns the valence.
Definition: tensor.h:910
int & set_index_type(int i)
Sets the type of the index number i .
Definition: tensor.h:950
const Tensor & divergence(const Metric &gam) const
Computes the divergence of this with respect to some metric .
Definition: tensor.C:1065
virtual void del_deriv() const
Deletes the derived quantities.
Definition: tensor.C:408
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:826
virtual void spectral_display(const char *comment=0x0, double threshold=1.e-7, int precision=4, ostream &ostr=cout) const
Displays the spectral coefficients and the associated basis functions of each component.
Definition: tensor.C:884
virtual ~Tensor()
Destructor.
Definition: tensor.C:395
int valence
Valence of the tensor (0 = scalar, 1 = vector, etc...)
Definition: tensor.h:310
Tensor * p_divergence[N_MET_MAX]
Array of pointers on the divergence of this with respect to various metrics.
Definition: tensor.h:363
void operator+=(const Tensor &)
+= Tensor
Definition: tensor.C:581
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:1024
virtual void exponential_filter_ylm(int lzmin, int lzmax, int p, double alpha=-16.)
Applies exponential filters to all components (see Scalar::exponential_filter_ylm )...
Definition: tensor.C:1089
void set_der_met_0x0(int) const
Sets all the i-th components of met_depend , p_derive_cov , etc...
Definition: tensor.C:443
const Metric * met_depend[N_MET_MAX]
Array on the Metric &#39;s which were used to compute derived quantities, like p_derive_cov ...
Definition: tensor.h:339
void annule_extern_cn(int l_0, int deg)
Performs a smooth (C^n) transition in a given domain to zero.
Definition: tensor.C:700
friend Scalar operator-(const Tensor &, const Scalar &)
Tensor - Scalar. The Tensor must be of valence 0.
friend Scalar operator+(const Tensor &, const Scalar &)
Tensor + Scalar. The Tensor must be of valence 0.
virtual int position(const Itbl &ind) const
Returns the position in the array cmp of a component given by its indices.
Definition: tensor_sym.C:248
const Scalar & operator()(const Itbl &ind) const
Returns the value of a component (read-only version).
Definition: tensor.C:808
virtual void change_triad(const Base_vect &new_triad)
Sets a new vectorial basis (triad) of decomposition and modifies the components accordingly.
void set_triad(const Base_vect &new_triad)
Assigns a new vectorial basis (triad) of decomposition.
Definition: tensor.C:529
Cmp operator-(const Cmp &)
- Cmp
Definition: cmp_arithm.C:111
virtual void set_etat_zero()
Sets the logical state of all components to ETATZERO (zero state).
Definition: tensor.C:507
Symmetric tensors (with respect to two of their arguments).
Definition: tensor.h:1078
void set_der_0x0() const
Sets the pointers on derived quantities to 0x0.
Definition: tensor.C:417
Tensor_sym derive_lie(const Vector &v) const
Computes the Lie derivative of this with respect to some vector field v.
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
virtual void annule(int l_min, int l_max)
Sets the Tensor to zero in several domains.
Definition: tensor.C:681
virtual void std_spectral_base()
Sets the standard spectal bases of decomposition for each component.
Definition: tensor.C:936
Class intended to describe valence-2 symmetric tensors.
Definition: sym_tensor.h:226
Tbl diffrelmax(const Cmp &a, const Cmp &b)
Relative difference between two Cmp (max version).
Definition: cmp_math.C:542
virtual Itbl indices(int pos) const
Returns the indices of a component given by its position in the array cmp .
Definition: tensor.C:549
Tensor(const Map &map, int val, const Itbl &tipe, const Base_vect &triad_i)
Standard constructor.
Definition: tensor.C:212
Tensor down(int ind, const Metric &gam) const
Computes a new tensor by lowering an index of *this.