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
|
/*
* Copyright (c) 1999-2000 Jean-Alain Marck
* Copyright (c) 1999-2001 Eric Gourgoulhon
*
* 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 op_d2sdphi2_C[] = "$Header: /cvsroot/Lorene/C++/Source/Non_class_members/Operators/op_d2sdphi2.C,v 1.3 2014/10/13 08:53:24 j_novak Exp $" ;
/*
* Ensemble des routines de base de derivation seconde par rapport a Phi
* (Utilisation interne)
*
* void _d2sdphi2_XXXX(Tbl * t, int & b)
* t pointeur sur le Tbl d'entree-sortie
* b base spectrale
*
*/
/*
* $Id: op_d2sdphi2.C,v 1.3 2014/10/13 08:53:24 j_novak Exp $
* $Log: op_d2sdphi2.C,v $
* Revision 1.3 2014/10/13 08:53:24 j_novak
* Lorene classes and functions now belong to the namespace Lorene.
*
* Revision 1.2 2006/03/10 12:45:38 j_novak
* Use of C++-style cast.
*
* Revision 1.1.1.1 2001/11/20 15:19:29 e_gourgoulhon
* LORENE
*
* Revision 2.4 2000/10/04 10:14:52 eric
* Ajout d' abort() dans le cas non prevu.
* ./
*
* Revision 2.3 2000/02/24 16:40:19 eric
* Initialisation a zero du tableau xo avant le calcul.
*
* Revision 2.2 1999/11/15 16:37:33 eric
* Tbl::dim est desormais un Dim_tbl et non plus un Dim_tbl*.
*
* Revision 2.1 1999/03/01 15:05:37 eric
* *** empty log message ***
*
* Revision 2.0 1999/02/23 11:40:34 hyc
* *** empty log message ***
*
*
*
* $Header: /cvsroot/Lorene/C++/Source/Non_class_members/Operators/op_d2sdphi2.C,v 1.3 2014/10/13 08:53:24 j_novak Exp $
*
*/
// Headers Lorene
#include "tbl.h"
// Routine pour les cas non prevus
//--------------------------------
namespace Lorene {
void _d2sdphi2_pas_prevu(Tbl* , int & b) {
cout << "Unknown phi basis in Mtbl_cf::d2sdp2() !" << endl ;
cout << " basis: " << hex << b << endl ;
abort() ;
}
// cas P_COSSIN
//-------------
void _d2sdphi2_p_cossin(Tbl* tb, int & )
{
// Peut-etre rien a faire ?
if (tb->get_etat() == ETATZERO) {
return ;
}
// Protection
assert(tb->get_etat() == ETATQCQ) ;
// Pour le confort
int nr = (tb->dim).dim[0] ; // Nombre
int nt = (tb->dim).dim[1] ; // de points
int np = (tb->dim).dim[2] ; // physiques REELS
np = np - 2 ; // Nombre de points physiques
// Variables statiques
static double* cx = 0 ;
static int np_pre =0 ;
// Test sur np pour initialisation eventuelle
if (np > np_pre) {
np_pre = np ;
cx = reinterpret_cast<double*>(realloc(cx, (np+2) * sizeof(double))) ;
for (int i=0 ; i<np+2 ; i++) {
cx[i] = - (i/2) * (i/2) ;
}
}
// pt. sur le tableau de double resultat
double* xo = new double[(tb->dim).taille] ;
// Initialisation a zero :
for (int i=0; i<(tb->dim).taille; i++) {
xo[i] = 0 ;
}
// On y va...
double* xi = tb->t ;
double* xci = xi ; // Pointeurs
double* xco = xo ; // courants
// k = 0
for (int j=0 ; j<nt ; j++) {
for (int i=0 ; i<nr ; i++ ) {
*xco = cx[0] * (*xci) ;
xci++ ;
xco++ ;
} // Fin de la boucle sur r
} // Fin de la boucle sur theta
// k = 1
xci += nr*nt ;
xco += nr*nt ;
// k >= 2
for (int k=2 ; k<np+1 ; k++) {
for (int j=0 ; j<nt ; j++) {
for (int i=0 ; i<nr ; i++ ) {
*xco = cx[k] * (*xci) ;
xci++ ;
xco++ ;
} // Fin de la boucle sur r
} // Fin de la boucle sur theta
} // Fin de la boucle sur phi
// On remet les choses la ou il faut
delete [] tb->t ;
tb->t = xo ;
// base de developpement
// inchangee
}
}
|