LORENE
valeur_sx2.C
1/*
2 * Computation of 1/x^2
3 *
4 * for:
5 * - Valeur
6 * - Mtbl_cf
7 */
8
9/*
10 * Copyright (c) 1999-2000 Jean-Alain Marck
11 * Copyright (c) 1999-2001 Eric Gourgoulhon
12 * Copyright (c) 1999-2001 Philippe Grandclement
13 *
14 * This file is part of LORENE.
15 *
16 * LORENE is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
20 *
21 * LORENE is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with LORENE; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 *
30 */
31
32
33
34
35/*
36 * $Id: valeur_sx2.C,v 1.6 2016/12/05 16:18:21 j_novak Exp $
37 * $Log: valeur_sx2.C,v $
38 * Revision 1.6 2016/12/05 16:18:21 j_novak
39 * Suppression of some global variables (file names, loch, ...) to prevent redefinitions
40 *
41 * Revision 1.5 2015/03/05 08:49:33 j_novak
42 * Implemented operators with Legendre bases.
43 *
44 * Revision 1.4 2014/10/13 08:53:51 j_novak
45 * Lorene classes and functions now belong to the namespace Lorene.
46 *
47 * Revision 1.3 2014/10/06 15:13:24 j_novak
48 * Modified #include directives to use c++ syntax.
49 *
50 * Revision 1.2 2004/11/23 15:17:20 m_forot
51 * Added the bases for the cases without any equatorial symmetry
52 * (T_COSSIN_C, T_COSSIN_S, T_LEG, R_CHEBPI_P, R_CHEBPI_I).
53 *
54 * Revision 1.1.1.1 2001/11/20 15:19:27 e_gourgoulhon
55 * LORENE
56 *
57 * Revision 2.8 1999/11/30 12:46:01 eric
58 * Valeur::base est desormais du type Base_val et non plus Base_val*.
59 *
60 * Revision 2.7 1999/11/23 16:19:22 eric
61 * Reorganisation du calcul dans le cas ETATZERO.
62 *
63 * Revision 2.6 1999/11/19 09:32:02 eric
64 * La valeur de retour est desormais const Valeur &.
65 *
66 * Revision 2.5 1999/10/28 08:00:57 eric
67 * Modif commentaires.
68 *
69 * Revision 2.4 1999/10/18 13:43:07 eric
70 * Suppression de l'argument base dans les routines de derivation des mtbl_cf.
71 *
72 * Revision 2.3 1999/04/28 10:10:59 phil
73 * *** empty log message ***
74 *
75 * Revision 2.2 1999/04/26 17:15:57 phil
76 * *** empty log message ***
77 *
78 * Revision 2.1 1999/04/26 17:14:20 phil
79 * *** empty log message ***
80 *
81 * Revision 2.0 1999/04/26 17:13:09 phil
82 * *** empty log message ***
83 *
84 * Revision 2.0 1999/04/26 14:59:31 phil
85 * *** empty log message ***
86 *
87 *
88 * $Header: /cvsroot/Lorene/C++/Source/Valeur/valeur_sx2.C,v 1.6 2016/12/05 16:18:21 j_novak Exp $
89 *
90 */
91
92
93// Headers C
94#include <cassert>
95
96// Headers Lorene
97#include "mtbl_cf.h"
98#include "valeur.h"
99
100// Local prototypes:
101namespace Lorene {
102void _sx2_pas_prevu(Tbl *, int &) ;
103void _sx2_r_chebu(Tbl *, int &) ;
104void _sx2_r_chebp(Tbl *, int &) ;
105void _sx2_r_chebi(Tbl *, int &) ;
106void _sx2_r_chebpim_p(Tbl *, int &) ;
107void _sx2_r_chebpim_i(Tbl *, int &) ;
108void _sx2_identite (Tbl *, int &) ;
109void _sx2_r_chebpi_p(Tbl *, int &) ;
110void _sx2_r_chebpi_i(Tbl *, int &) ;
111void _sx2_r_legp(Tbl *, int &) ;
112void _sx2_r_legi(Tbl *, int &) ;
113
114// Version membre d'un Valeur
115// --------------------------
116
117const Valeur& Valeur::sx2() const {
118
119 // Protection
120 assert(etat != ETATNONDEF) ;
121
122 // Peut-etre rien a faire ?
123 if (p_sx2 != 0x0) {
124 return *p_sx2 ;
125 }
126
127 // ... si, il faut bosser
128
129 p_sx2 = new Valeur(mg) ;
130
131 if (etat == ETATZERO) {
132 p_sx2->set_etat_zero() ;
133 }
134 else {
135 assert(etat == ETATQCQ) ;
136 p_sx2->set_etat_cf_qcq() ;
137 Mtbl_cf* cfp = p_sx2->c_cf ; // Pointeur sur le Mtbl_cf qui vient d'etre
138 // cree par le set_etat_cf_qcq()
139
140 // Initialisation de *cfp : recopie des coef. de la fonction
141 if (c_cf == 0x0) {
142 coef() ;
143 }
144 *cfp = *c_cf ;
145
146 cfp->sx2() ; // calcul
147
148 p_sx2->base = cfp->base ; // On remonte la base de sortie au niveau Valeur
149 }
150
151 // Termine
152 return *p_sx2 ;
153}
154
155
156
157// Version membre d'un Mtbl_cf
158// ---------------------------
159\
161
162// Routines de derivation
163static void (*_sx2[MAX_BASE])(Tbl *, int &) ;
164static int nap = 0 ;
165
166 // Premier appel
167 if (nap==0) {
168 nap = 1 ;
169 for (int i=0 ; i<MAX_BASE ; i++) {
170 _sx2[i] = _sx2_pas_prevu ;
171 }
172 // Les routines existantes
173 _sx2[R_CHEB >> TRA_R] = _sx2_identite ;
174 _sx2[R_CHEBU >> TRA_R] = _sx2_r_chebu ;
175 _sx2[R_CHEBP >> TRA_R] = _sx2_r_chebp ;
176 _sx2[R_CHEBI >> TRA_R] = _sx2_r_chebi ;
177 _sx2[R_CHEBPIM_P >> TRA_R] = _sx2_r_chebpim_p ;
178 _sx2[R_CHEBPIM_I >> TRA_R] = _sx2_r_chebpim_i ;
179 _sx2[R_CHEBPI_P >> TRA_R] = _sx2_r_chebpi_p ;
180 _sx2[R_CHEBPI_I >> TRA_R] = _sx2_r_chebpi_i ;
181 _sx2[R_LEG >> TRA_R] = _sx2_identite ;
182 _sx2[R_LEGP >> TRA_R] = _sx2_r_legp ;
183 _sx2[R_LEGI >> TRA_R] = _sx2_r_legi ;
184 }
185
186 //- Debut de la routine -
187
188 // Protection
189 assert(etat == ETATQCQ) ;
190
191 // Boucle sur les zones
192 for (int l=0 ; l<nzone ; l++) {
193 int base_r = (base.b[l] & MSQ_R) >> TRA_R ;
194 assert(t[l] != 0x0) ;
195 _sx2[base_r](t[l], base.b[l]) ;
196 }
197}
198}
Coefficients storage for the multi-domain spectral method.
Definition mtbl_cf.h:196
Base_val base
Bases of the spectral expansions.
Definition mtbl_cf.h:210
void sx2()
(r -sampling = RARE ) \ Id (r sampling = FIN ) \ (r -sampling = UNSURR )
Definition valeur_sx2.C:160
int etat
Logical state (ETATNONDEF , ETATQCQ or ETATZERO ).
Definition mtbl_cf.h:206
Tbl ** t
Array (size nzone ) of pointers on the Tbl 's which contain the spectral coefficients in each domain.
Definition mtbl_cf.h:215
int nzone
Number of domains (zones).
Definition mtbl_cf.h:204
Basic array class.
Definition tbl.h:161
const Valeur & sx2() const
Returns (r -sampling = RARE ) \ Id (r sampling = FIN ) \ (r -sampling = UNSURR ).
Definition valeur_sx2.C:117
Valeur * p_sx2
Pointer on .
Definition valeur.h:323
Valeur(const Mg3d &mgrid)
Constructor.
Definition valeur.C:203
const Mg3d * mg
Multi-grid Mgd3 on which this is defined.
Definition valeur.h:302
Mtbl_cf * c_cf
Coefficients of the spectral expansion of the function.
Definition valeur.h:312
void coef() const
Computes the coeffcients of *this.
int etat
Logical state (ETATNONDEF , ETATQCQ or ETATZERO ).
Definition valeur.h:305
#define R_LEGP
base de Legendre paire (rare) seulement
#define MAX_BASE
Nombre max. de bases differentes.
#define R_CHEBU
base de Chebychev ordinaire (fin), dev. en 1/r
#define R_LEGI
base de Legendre impaire (rare) seulement
#define R_CHEBI
base de Cheb. impaire (rare) seulement
#define MSQ_R
Extraction de l'info sur R.
#define R_CHEBPIM_I
Cheb. pair-impair suivant m, impair pour m=0.
#define R_CHEBPI_I
Cheb. pair-impair suivant l impair pour l=0.
#define R_LEG
base de Legendre ordinaire (fin)
#define R_CHEBPIM_P
Cheb. pair-impair suivant m, pair pour m=0.
#define TRA_R
Translation en R, used for a bitwise shift (in hex).
#define R_CHEB
base de Chebychev ordinaire (fin)
#define R_CHEBP
base de Cheb. paire (rare) seulement
#define R_CHEBPI_P
Cheb. pair-impair suivant l pair pour l=0.
Lorene prototypes.
Definition app_hor.h:67