LORENE
valeur_mult_ct.C
1/*
2 * Multiplication by cos(theta)
3 *
4 * for:
5 * - Valeur
6 * - Mtbl_cf
7 */
8
9/*
10 * Copyright (c) 1999-2001 Jerome Novak
11 * Copyright (c) 1999-2001 Eric Gourgoulhon
12 *
13 * This file is part of LORENE.
14 *
15 * LORENE is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * LORENE is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with LORENE; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 *
29 */
30
31
32
33
34/*
35 * $Id: valeur_mult_ct.C,v 1.6 2016/12/05 16:18:21 j_novak Exp $
36 * $Log: valeur_mult_ct.C,v $
37 * Revision 1.6 2016/12/05 16:18:21 j_novak
38 * Suppression of some global variables (file names, loch, ...) to prevent redefinitions
39 *
40 * Revision 1.5 2014/10/13 08:53:50 j_novak
41 * Lorene classes and functions now belong to the namespace Lorene.
42 *
43 * Revision 1.4 2014/10/06 15:13:23 j_novak
44 * Modified #include directives to use c++ syntax.
45 *
46 * Revision 1.3 2009/10/09 14:01:06 j_novak
47 * New bases T_cos and T_SIN.
48 *
49 * Revision 1.2 2004/11/23 15:17:19 m_forot
50 * Added the bases for the cases without any equatorial symmetry
51 * (T_COSSIN_C, T_COSSIN_S, T_LEG, R_CHEBPI_P, R_CHEBPI_I).
52 *
53 * Revision 1.1.1.1 2001/11/20 15:19:27 e_gourgoulhon
54 * LORENE
55 *
56 * Revision 1.4 1999/11/30 12:44:45 eric
57 * Valeur::base est desormais du type Base_val et non plus Base_val*.
58 *
59 * Revision 1.3 1999/11/24 09:33:02 eric
60 * Modif commentaires.
61 *
62 * Revision 1.2 1999/11/23 16:17:47 eric
63 * Reorganisation du calcul dans le cas ETATZERO.
64 *
65 * Revision 1.1 1999/11/23 14:31:28 novak
66 * Initial revision
67 *
68 *
69 * $Header: /cvsroot/Lorene/C++/Source/Valeur/valeur_mult_ct.C,v 1.6 2016/12/05 16:18:21 j_novak Exp $
70 *
71 */
72
73
74
75// Headers C
76#include <cassert>
77
78// Headers Lorene
79#include "mtbl_cf.h"
80#include "valeur.h"
81
82// Local prototypes
83namespace Lorene {
84void _mult_ct_pas_prevu (Tbl*, int&) ;
85void _mult_ct_t_cos (Tbl*, int&) ;
86void _mult_ct_t_sin (Tbl*, int&) ;
87void _mult_ct_t_sin_p (Tbl*, int&) ;
88void _mult_ct_t_sin_i (Tbl*, int&) ;
89void _mult_ct_t_cos_i (Tbl*, int&) ;
90void _mult_ct_t_cos_p (Tbl*, int&) ;
91void _mult_ct_t_cossin_si (Tbl*, int&) ;
92void _mult_ct_t_cossin_ci (Tbl*, int&) ;
93void _mult_ct_t_cossin_cp (Tbl*, int&) ;
94void _mult_ct_t_cossin_sp (Tbl*, int&) ;
95void _mult_ct_t_cossin_c (Tbl*, int&) ;
96void _mult_ct_t_cossin_s (Tbl*, int&) ;
97
98// Version membre d'un Valeur
99// --------------------------
100
101const Valeur& Valeur::mult_ct() const {
102
103 // Protection
104 assert(etat != ETATNONDEF) ;
105
106 // Peut-etre rien a faire ?
107 if (p_mult_ct != 0x0) {
108 return *p_mult_ct ;
109 }
110
111 // ... si, il faut bosser
112
113 p_mult_ct = new Valeur(mg) ;
114
115 if (etat == ETATZERO) {
116 p_mult_ct->set_etat_zero() ;
117 }
118 else {
119 assert(etat == ETATQCQ) ;
120 p_mult_ct->set_etat_cf_qcq() ;
121 Mtbl_cf* cfp = p_mult_ct->c_cf ; // Pointeur sur le Mtbl_cf qui vient d'etre
122 // cree par le set_etat_cf_qcq()
123
124 // Initialisation de *cfp : recopie des coef. de la fonction
125 if (c_cf == 0x0) {
126 coef() ;
127 }
128 *cfp = *c_cf ;
129
130 cfp->mult_ct() ; // calcul
131
132 p_mult_ct->base = cfp->base ; // On remonte la base de sortie au niveau Valeur
133 }
134
135 // Termine
136 return *p_mult_ct ;
137}
138
139
140
141// Version membre d'un Mtbl_cf
142// ---------------------------
143
145
146// Routines de derivation
147static void (*_mult_ct[MAX_BASE])(Tbl *, int &) ;
148static int nap = 0 ;
149
150 // Premier appel
151 if (nap==0) {
152 nap = 1 ;
153 for (int i=0 ; i<MAX_BASE ; i++) {
154 _mult_ct[i] = _mult_ct_pas_prevu ;
155 }
156 // Les routines existantes
157 _mult_ct[T_COS >> TRA_T] = _mult_ct_t_cos ;
158 _mult_ct[T_SIN >> TRA_T] = _mult_ct_t_sin ;
159 _mult_ct[T_COS_P >> TRA_T] = _mult_ct_t_cos_p ;
160 _mult_ct[T_COS_I >> TRA_T] = _mult_ct_t_cos_i ;
161 _mult_ct[T_SIN_P >> TRA_T] = _mult_ct_t_sin_p ;
162 _mult_ct[T_SIN_I >> TRA_T] = _mult_ct_t_sin_i ;
163 _mult_ct[T_COSSIN_SI >> TRA_T] = _mult_ct_t_cossin_si ;
164 _mult_ct[T_COSSIN_CI >> TRA_T] = _mult_ct_t_cossin_ci ;
165 _mult_ct[T_COSSIN_CP >> TRA_T] = _mult_ct_t_cossin_cp ;
166 _mult_ct[T_COSSIN_SP >> TRA_T] = _mult_ct_t_cossin_sp ;
167 _mult_ct[T_COSSIN_C >> TRA_T] = _mult_ct_t_cossin_c ;
168 _mult_ct[T_COSSIN_S >> TRA_T] = _mult_ct_t_cossin_s ;
169 }
170
171 // Debut de la routine
172
173 // Protection
174 assert(etat == ETATQCQ) ;
175
176 // Boucle sur les zones
177 int base_t ;
178 for (int l=0 ; l<nzone ; l++) {
179 base_t = (base.b[l] & MSQ_T) >> TRA_T ;
180 assert(t[l] != 0x0) ;
181 _mult_ct[base_t](t[l], base.b[l]) ;
182 }
183}
184}
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
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 & mult_ct() const
Returns applied to *this.
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.
Valeur * p_mult_ct
Pointer on .
Definition valeur.h:330
int etat
Logical state (ETATNONDEF , ETATQCQ or ETATZERO ).
Definition valeur.h:305
#define TRA_T
Translation en Theta, used for a bitwise shift (in hex).
#define MAX_BASE
Nombre max. de bases differentes.
#define T_COSSIN_SP
sin pair-cos impair alternes, sin pour m=0
#define T_SIN_P
dev. sin seulement, harmoniques paires
#define T_COSSIN_S
dev. cos-sin alternes, sin pour m=0
#define T_COSSIN_SI
sin impair-cos pair alternes, sin pour m=0
#define T_COS_P
dev. cos seulement, harmoniques paires
#define T_COSSIN_CI
cos impair-sin pair alternes, cos pour m=0
#define MSQ_T
Extraction de l'info sur Theta.
#define T_COSSIN_CP
cos pair-sin impair alternes, cos pour m=0
#define T_SIN_I
dev. sin seulement, harmoniques impaires
#define T_COS
dev. cos seulement
#define T_SIN
dev. sin seulement
#define T_COS_I
dev. cos seulement, harmoniques impaires
#define T_COSSIN_C
dev. cos-sin alternes, cos pour m=0
Lorene prototypes.
Definition app_hor.h:67