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
|
/*
* Methods of the class tenseur for solving vectorial Poisson equations
* with a multipole falloff condition at the outer boundary
*
* (see file tenseur.h for documentation).
*
*/
/*
* Copyright (c) 2004 Joshua A. Faber
*
* 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 tenseur_pde_ylm_C[] = "$Header: /cvsroot/Lorene/C++/Source/Tenseur/tenseur_pde_ylm.C,v 1.2 2014/10/13 08:53:42 j_novak Exp $" ;
/*
* $Id: tenseur_pde_ylm.C,v 1.2 2014/10/13 08:53:42 j_novak Exp $
* $Log: tenseur_pde_ylm.C,v $
* Revision 1.2 2014/10/13 08:53:42 j_novak
* Lorene classes and functions now belong to the namespace Lorene.
*
* Revision 1.1 2004/12/29 16:32:33 k_taniguchi
* *** empty log message ***
*
*
* $Header: /cvsroot/Lorene/C++/Source/Tenseur/tenseur_pde_ylm.C,v 1.2 2014/10/13 08:53:42 j_novak Exp $
*
*/
// Lorene headers
#include "map.h"
#include "cmp.h"
#include "param.h"
#include "tenseur.h"
//-----------------------------------//
// Vectorial Poisson equation //
//-----------------------------------//
// Version avec parametres
// -----------------------
namespace Lorene {
void Tenseur::poisson_vect_ylm(double lambda, Param& para, Tenseur& shift,
Tenseur& vecteur, Tenseur& scalaire, int nylm,
double* intvec) const {
assert (lambda != -1) ;
// Verifications d'usage ...
assert (valence == 1) ;
assert (shift.get_valence() == 1) ;
assert (shift.get_type_indice(0) == type_indice(0)) ;
assert (vecteur.get_valence() == 1) ;
assert (vecteur.get_type_indice(0) == type_indice(0)) ;
assert (scalaire.get_valence() == 0) ;
assert (etat != ETATNONDEF) ;
Map_af mapping (*mp);
// Nothing to do if the source is zero
if (etat == ETATZERO) {
shift.set_etat_zero() ;
vecteur.set_etat_qcq() ;
for (int i=0; i<3; i++) {
vecteur.set(i) = 0 ;
}
scalaire.set_etat_qcq() ;
scalaire.set() = 0 ;
return ;
}
// On construit le tableau contenant le terme P_i ...
for (int i=0 ; i<3 ; i++) {
Param* par = mp->donne_para_poisson_vect(para, i) ;
double* intvec2=new double [nylm];
for (int j=0; j<nylm; j++) {
intvec2[j]=intvec[i*nylm+j];
}
(*this)(i).poisson_ylm(*par, vecteur.set(i),nylm,intvec2) ;
delete [] intvec2;
if (par != 0x0)
delete par ;
}
vecteur.set_triad( *triad ) ;
// Equation de Poisson scalaire :
Tenseur source_scal (-skxk(*this)) ;
Param* par = mp->donne_para_poisson_vect(para, 3) ;
double* intvec2=new double[nylm];
for (int j=0; j<nylm; j++) {
intvec2[j]=intvec[3*nylm+j];
}
source_scal().poisson_ylm(*par, scalaire.set(), nylm, intvec2) ;
delete [] intvec2;
if (par !=0x0)
delete par ;
// On construit le tableau contenant le terme d xsi / d x_i ...
Tenseur auxiliaire(scalaire) ;
Tenseur dxsi (auxiliaire.gradient()) ;
// On construit le tableau contenant le terme x_k d P_k / d x_i
Tenseur dp (skxk(vecteur.gradient())) ;
// Il ne reste plus qu'a tout ranger dans P :
// The final computation is done component by component because
// d_khi and x_d_w are covariant comp. whereas w_shift is
// contravariant
shift.set_etat_qcq() ;
for (int i=0 ; i<3 ; i++)
shift.set(i) = (lambda+2)/2/(lambda+1) * vecteur(i)
- (lambda/2/(lambda+1)) * (dxsi(i) + dp(i)) ;
shift.set_triad( *(vecteur.triad) ) ;
}
// Version sans parametres
// -----------------------
Tenseur Tenseur::poisson_vect_ylm(double lambda, Tenseur& vecteur,
Tenseur& scalaire, int nylm, double* intvec) const {
Param bidon ;
Tenseur resu(*mp, valence, type_indice, triad, metric, poids) ;
resu.set_etat_qcq() ;
poisson_vect_ylm(lambda, bidon, resu, vecteur, scalaire, nylm, intvec) ;
return resu ;
}
}
|