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
|
/*
* Method of regularization of the source of Poisson equation
*
* (see file scalar.h for documentation).
*
*/
/*
* Copyright (c) 2003 Eric Gourgoulhon & Jerome Novak
*
* Copyright (c) 2000-2001 Keisuke Taniguchi (for preceding Cmp version)
*
* 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 scalar_poisson_regu_C[] = "$Header: /cvsroot/Lorene/C++/Source/Tensor/Scalar/scalar_poisson_regu.C,v 1.3 2014/10/13 08:53:47 j_novak Exp $" ;
/*
* $Id: scalar_poisson_regu.C,v 1.3 2014/10/13 08:53:47 j_novak Exp $
* $Log: scalar_poisson_regu.C,v $
* Revision 1.3 2014/10/13 08:53:47 j_novak
* Lorene classes and functions now belong to the namespace Lorene.
*
* Revision 1.2 2003/10/11 14:46:00 e_gourgoulhon
* Line 65-67: changed the name of local variable "triad" to "triad0"
* in order not to shadow the class member triad.
*
* Revision 1.1 2003/09/25 08:56:28 e_gourgoulhon
* First version (uses Cmp and Tenseur as intermediate quantities).
*
*
* $Header: /cvsroot/Lorene/C++/Source/Tensor/Scalar/scalar_poisson_regu.C,v 1.3 2014/10/13 08:53:47 j_novak Exp $
*
*/
// Header Lorene
#include "tensor.h"
#include "cmp.h"
#include "tenseur.h"
#include "param.h"
//******************************************************************
namespace Lorene {
void Scalar::poisson_regular(int k_div, int nzet, double unsgam1, Param& par,
Scalar& uu, Scalar& uu_regu, Scalar& uu_div,
Tensor& duu_div,
Scalar& source_regu, Scalar& source_div) const {
Cmp csource(*this) ;
Cmp cuu(uu) ;
Cmp cuu_regu(uu_regu) ;
Cmp cuu_div(uu_div) ;
Cmp csource_regu(source_regu) ;
Cmp csource_div(source_div) ;
const Base_vect* triad0 = duu_div.get_triad() ;
Tenseur cduu_div(*mp, 1, COV, *triad0) ;
cduu_div.set_etat_qcq() ;
Itbl ind(1) ;
ind.set_etat_qcq() ;
for (int i=0; i<3; i++) {
ind.set(0) = i+1 ;
Cmp tmp( duu_div(ind) ) ;
cduu_div.set(i) = tmp ;
}
mp->poisson_regular(csource, k_div, nzet, unsgam1, par,
cuu, cuu_regu, cuu_div, cduu_div,
csource_regu, csource_div) ;
uu = cuu ;
uu_regu = uu ;
for (int i=1; i<=3; i++) {
ind.set(0) = i ;
duu_div.set(ind) = cduu_div(i-1) ;
}
source_regu = csource_regu ;
source_div = csource_div ;
}
}
|