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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
|
/*
* Copyright (c) 1999-2001 Philippe Grandclement
* Copyright (c) 1999-2001 Eric Gourgoulhon
* Copyright (c) 2002 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 as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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 tenseur_sym_operateur_C[] = "$Header: /cvsroot/Lorene/C++/Source/Tenseur/tenseur_sym_operateur.C,v 1.8 2014/10/13 08:53:43 j_novak Exp $" ;
/*
* $Id: tenseur_sym_operateur.C,v 1.8 2014/10/13 08:53:43 j_novak Exp $
* $Log: tenseur_sym_operateur.C,v $
* Revision 1.8 2014/10/13 08:53:43 j_novak
* Lorene classes and functions now belong to the namespace Lorene.
*
* Revision 1.7 2014/10/06 15:13:19 j_novak
* Modified #include directives to use c++ syntax.
*
* Revision 1.6 2003/03/03 19:41:34 f_limousin
* Suppression of an assert on a metric associated with a tensor.
*
* Revision 1.5 2002/10/16 14:37:15 j_novak
* Reorganization of #include instructions of standard C++, in order to
* use experimental version 3 of gcc.
*
* Revision 1.4 2002/09/10 13:44:17 j_novak
* The method "manipule" of one indice has been removed for Tenseur_sym objects
* (the result cannot be a Tenseur_sym).
* The method "sans_trace" now computes the traceless part of a Tenseur (or
* Tenseur_sym) of valence 2.
*
* Revision 1.3 2002/09/06 14:49:26 j_novak
* Added method lie_derive for Tenseur and Tenseur_sym.
* Corrected various errors for derive_cov and arithmetic.
*
* Revision 1.2 2002/08/07 16:14:12 j_novak
* class Tenseur can now also handle tensor densities, this should be transparent to older codes
*
* Revision 1.1.1.1 2001/11/20 15:19:30 e_gourgoulhon
* LORENE
*
* Revision 2.2 2000/02/09 19:32:22 eric
* MODIF IMPORTANTE: la triade de decomposition est desormais passee en
* argument des constructeurs.
*
* Revision 2.1 2000/01/11 11:15:08 eric
* Gestion de la base vectorielle (triad).
*
* Revision 2.0 1999/12/02 17:19:02 phil
* *** empty log message ***
*
*
* $Header: /cvsroot/Lorene/C++/Source/Tenseur/tenseur_sym_operateur.C,v 1.8 2014/10/13 08:53:43 j_novak Exp $
*
*/
// Headers C
#include <cstdlib>
#include <cassert>
#include <cmath>
// Headers Lorene
#include "tenseur.h"
#include "metrique.h"
namespace Lorene {
Tenseur_sym operator*(const Tenseur& t1, const Tenseur_sym& t2) {
assert ((t1.get_etat() != ETATNONDEF) && (t2.etat != ETATNONDEF)) ;
assert (t1.get_mp() == t2.mp) ;
int val_res = t1.get_valence() + t2.valence ;
double poids_res = t1.get_poids() + t2.poids ;
poids_res = (fabs(poids_res) < 1.e-10 ? 0. : poids_res) ;
const Metrique* met_res = 0x0 ;
if (poids_res != 0.) {
// assert((t1.get_metric() != 0x0) || (t2.metric != 0x0)) ;
if (t1.get_metric() != 0x0) met_res = t1.get_metric() ;
else met_res = t2.metric ;
}
Itbl tipe (val_res) ;
tipe.set_etat_qcq() ;
for (int i=0 ; i<t1.get_valence() ; i++)
tipe.set(i) = t1.get_type_indice(i) ;
for (int i=0 ; i<t2.valence ; i++)
tipe.set(i+t1.get_valence()) = t2.type_indice(i) ;
if ( t1.get_valence() != 0 ) {
assert ( *(t1.get_triad()) == *(t2.get_triad()) ) ;
}
Tenseur_sym res(*t1.get_mp(), val_res, tipe, *(t2.get_triad()),
met_res, poids_res) ;
if ((t1.get_etat() == ETATZERO) || (t2.etat == ETATZERO))
res.set_etat_zero() ;
else {
res.set_etat_qcq() ;
Itbl jeux_indice_t1 (t1.get_valence()) ;
jeux_indice_t1.set_etat_qcq() ;
Itbl jeux_indice_t2 (t2.valence) ;
jeux_indice_t2.set_etat_qcq() ;
for (int i=0 ; i<res.n_comp ; i++) {
Itbl jeux_indice_res(res.donne_indices(i)) ;
for (int j=0 ; j<t1.get_valence() ; j++)
jeux_indice_t1.set(j) = jeux_indice_res(j) ;
for (int j=0 ; j<t2.valence ; j++)
jeux_indice_t2.set(j) = jeux_indice_res(j+t1.get_valence()) ;
res.set(jeux_indice_res) = t1(jeux_indice_t1)*t2(jeux_indice_t2) ;
}
}
return res ;
}
Tenseur_sym manipule (const Tenseur_sym& t1, const Metrique& met) {
Tenseur* auxi ;
Tenseur* auxi_old = new Tenseur(t1) ;
for (int i=0 ; i<t1.valence ; i++) {
auxi = new Tenseur(manipule(*auxi_old, met, i)) ;
delete auxi_old ;
auxi_old = new Tenseur(*auxi) ;
delete auxi ;
}
Tenseur_sym result(*auxi_old) ;
delete auxi_old ;
return result ;
}
Tenseur_sym lie_derive (const Tenseur_sym& t, const Tenseur& x,
const Metrique* met)
{
assert ( (t.get_etat() != ETATNONDEF) && (x.get_etat() != ETATNONDEF) ) ;
assert(x.get_valence() == 1) ;
assert(x.get_type_indice(0) == CON) ;
assert(x.get_poids() == 0.) ;
assert(t.get_mp() == x.get_mp()) ;
int val = t.get_valence() ;
double poids = t.get_poids() ;
Itbl tipe (val+1) ;
tipe.set_etat_qcq() ;
tipe.set(0) = COV ;
Itbl tipx(2) ;
tipx.set_etat_qcq() ;
tipx.set(0) = COV ;
tipx.set(1) = CON ;
for (int i=0 ; i<val ; i++)
tipe.set(i+1) = t.get_type_indice(i) ;
Tenseur_sym dt(*t.get_mp(), val+1, tipe, *t.get_triad(), t.get_metric(),
poids) ;
Tenseur dx(*x.get_mp(), 2, tipx, x.get_triad()) ;
if (met == 0x0) {
dx = x.gradient() ;
dt = t.gradient() ;
}
else {
dx = x.derive_cov(*met) ;
dt = t.derive_cov(*met) ;
}
Tenseur_sym resu(contract(x,0,dt,0)) ;
Tenseur* auxi ;
if ((val!=0)&&(t.get_etat()!=ETATZERO)&&(x.get_etat()!=ETATZERO)) {
assert(t.get_triad()->identify() == x.get_triad()->identify()) ;
for (int i=0 ; i<val ; i++) {
if (t.get_type_indice(i) == COV) {
auxi = new Tenseur(contract(t,i,dx,1)) ;
Itbl indices_aux(val) ;
indices_aux.set_etat_qcq() ;
for (int j=0 ; j<resu.get_n_comp() ; j++) {
Itbl indices (resu.donne_indices(j)) ;
indices_aux.set(val-1) = indices(i) ;
for (int idx=0 ; idx<val-1 ; idx++)
if (idx<i)
indices_aux.set(idx) = indices(idx) ;
else
indices_aux.set(idx) = indices(idx+1) ;
resu.set(indices) += (*auxi)(indices_aux) ;
}
}
else {
auxi = new Tenseur(contract(t,i,dx,0)) ;
Itbl indices_aux(val) ;
indices_aux.set_etat_qcq() ;
//On range comme il faut :
for (int j=0 ; j<resu.get_n_comp() ; j++) {
Itbl indices (resu.donne_indices(j)) ;
indices_aux.set(val-1) = indices(i) ;
for (int idx=0 ; idx<val-1 ; idx++)
if (idx<i)
indices_aux.set(idx) = indices(idx) ;
else
indices_aux.set(idx) = indices(idx+1) ;
resu.set(indices) -= (*auxi)(indices_aux) ;
}
}
delete auxi ;
}
}
if ((poids != 0.)&&(t.get_etat()!=ETATZERO)&&(x.get_etat()!=ETATZERO))
resu = resu + poids*contract(dx,0,1)*t ;
return resu ;
}
Tenseur_sym sans_trace(const Tenseur_sym& t, const Metrique& metre)
{
assert(t.get_etat() != ETATNONDEF) ;
assert(metre.get_etat() != ETATNONDEF) ;
assert(t.get_valence() == 2) ;
Tenseur_sym resu(t) ;
if (resu.get_etat() == ETATZERO) return resu ;
assert(resu.get_etat() == ETATQCQ) ;
int t0 = t.get_type_indice(0) ;
int t1 = t.get_type_indice(1) ;
Itbl mix(2) ;
mix.set_etat_qcq() ;
mix.set(0) = (t0 == t1 ? -t0 : t0) ;
mix.set(1) = t1 ;
Tenseur tmp(*t.get_mp(), 2, mix, *t.get_triad(), t.get_metric(),
t.get_poids()) ;
if (t0 == t1)
tmp = manipule(t, metre, 0) ;
else
tmp = t ;
Tenseur trace(contract(tmp, 0, 1)) ;
if (t0 == t1) {
switch (t0) {
case COV : {
resu = resu - 1./3.*trace * metre.cov() ;
break ;
}
case CON : {
resu = resu - 1./3.*trace * metre.con() ;
break ;
}
default :
cout << "Erreur bizarre dans sans_trace!" << endl ;
abort() ;
break ;
}
}
else {
Tenseur_sym delta(*t.get_mp(), 2, mix, *t.get_triad(),
t.get_metric(), t.get_poids()) ;
delta.set_etat_qcq() ;
for (int i=0; i<3; i++)
for (int j=i; j<3; j++)
delta.set(i,j) = (i==j ? 1 : 0) ;
resu = resu - trace/3. * delta ;
}
resu.set_std_base() ;
return resu ;
}
}
|