73 #include "type_parite.h" 97 Mtbl_cf sol_poisson_tau(
const Map_af& mapping,
const Mtbl_cf& source,
int dzpuis)
103 assert ((source.get_mg()->get_type_r(0) == RARE) || (source.get_mg()->get_type_r(0) == FIN)) ;
104 assert (source.get_mg()->get_type_r(nz-1) == UNSURR) ;
105 for (
int l=1 ; l<nz-1 ; l++)
106 assert(source.get_mg()->get_type_r(l) == FIN) ;
108 assert ((dzpuis==4) || (dzpuis==2) || (dzpuis==3)) ;
111 const Base_val& base = source.base ;
114 Mtbl_cf resultat(source.get_mg(), base) ;
115 resultat.annule_hard() ;
120 double alpha, beta, echelle ;
121 int l_quant, m_quant;
126 for (
int l=0 ; l<nz ; l++) {
127 nr = mapping.get_mg()->get_nr(l) ;
133 Matrice systeme (size, size) ;
134 systeme.set_etat_qcq() ;
135 Tbl sec_membre (size) ;
137 np = mapping.get_mg()->get_np(0) ;
138 nt = mapping.get_mg()->get_nt(0) ;
142 for (
int k=0 ; k<np+1 ; k++)
143 for (
int j=0 ; j<nt ; j++)
144 if (nullite_plm(j, nt, k, np, base) == 1) {
149 systeme.annule_hard() ;
150 sec_membre.annule_hard() ;
152 int column_courant = 0 ;
153 int ligne_courant = 0 ;
159 nr = mapping.get_mg()->get_nr(0) ;
160 alpha = mapping.get_alpha()[0] ;
161 base.give_quant_numbers (0, k, j, m_quant, l_quant, base_r) ;
162 work =
new Matrice (laplacien_mat(nr, l_quant, 0., 0, base_r)) ;
166 if (source.get_mg()->get_type_r(0) == RARE) {
172 for (
int col=0 ; col<nr ; col++)
174 systeme.set(ligne_courant, col+column_courant) = 1 ;
176 systeme.set(ligne_courant, col+column_courant) = -1 ;
180 for (
int col=0 ; col<nr ; col++)
182 systeme.set(ligne_courant, col+column_courant) = 2*col+1 ;
184 systeme.set(ligne_courant, col+column_courant) = -(2*col+1) ;
195 for (
int col=0 ; col<nr ; col++) {
196 systeme.set(ligne_courant, col+column_courant) = col*(col+1)*(col+2)*(col+3)/
double(12)*(2*(col%2)-1);
199 else if (l_quant == 1) {
201 for (
int col=0 ; col<nr ; col++) {
202 systeme.set(ligne_courant, col+column_courant) = (col+1)*(col+2)/double(2)*(1-2*(col%2)) ;
207 for (
int col=0 ; col<nr ; col++) {
208 systeme.set(ligne_courant, col+column_courant) = (col+1)*(col+2)/double(2)*(1-2*(col%2)) ;
209 systeme.set(ligne_courant+1, col+column_courant) = col*(col+1)*(col+2)*(col+3)/
double(12)*(2*(col%2)-1) ;
213 ligne_courant += nbr_cl ;
216 for (
int lig=0 ; lig<nr-1-nbr_cl ; lig++) {
217 for (
int col=0 ; col<nr ; col++)
218 systeme.set(lig+ligne_courant,col+column_courant) = (*work)(lig,col) ;
219 sec_membre.set(lig+ligne_courant) = alpha*alpha*source(0, k, j, lig) ;
223 ligne_courant += nr-1-nbr_cl ;
226 for (
int col=0 ; col<nr ; col++) {
227 if (source.get_mg()->get_type_r(0) == RARE) {
229 systeme.set(ligne_courant, col+column_courant) = 1 ;
232 systeme.set(ligne_courant+1, col+column_courant) = 4*col*col/alpha ;
235 systeme.set(ligne_courant+1, col+column_courant) = (2*col+1)*(2*col+1)/alpha ;
240 systeme.set(ligne_courant, col+column_courant) = 1 ;
242 systeme.set(ligne_courant+1, col+column_courant) = col*(col+3)/
double(2)/alpha ;
246 column_courant += nr ;
254 for (
int l=1 ; l<nz-1 ; l++) {
256 nr = mapping.get_mg()->get_nr(l) ;
257 alpha = mapping.get_alpha()[l] ;
258 beta = mapping.get_beta()[l] ;
259 echelle = beta/alpha ;
261 base.give_quant_numbers (l, k, j, m_quant, l_quant, base_r) ;
262 work =
new Matrice (laplacien_mat(nr, l_quant, echelle, 0, base_r)) ;
265 for (
int col=0 ; col<nr ; col++) {
268 systeme.set(ligne_courant, col+column_courant) = -1 ;
270 systeme.set(ligne_courant, col+column_courant) = 1 ;
273 systeme.set(ligne_courant+1, col+column_courant) = col*col/alpha ;
275 systeme.set(ligne_courant+1, col+column_courant) = -col*col/alpha ;
283 source_aux.set_etat_qcq() ;
284 for (
int i=0 ; i<nr ; i++)
285 source_aux.set(i) = source(l,k,j,i)*alpha*alpha ;
286 Tbl xso(source_aux) ;
287 Tbl xxso(source_aux) ;
288 multx_1d(nr, &xso.t,
R_CHEB) ;
289 multx_1d(nr, &xxso.t,
R_CHEB) ;
290 multx_1d(nr, &xxso.t,
R_CHEB) ;
291 source_aux = beta*beta/alpha/alpha*source_aux+2*beta/alpha*xso+xxso ;
293 for (
int lig=0 ; lig<nr-2 ; lig++) {
294 for (
int col=0 ; col<nr ; col++)
295 systeme.set(lig+ligne_courant,col+column_courant) = (*work)(lig,col) ;
296 sec_membre.set(lig+ligne_courant) = source_aux(lig) ;
300 ligne_courant += nr-2 ;
302 for (
int col=0 ; col<nr ; col++) {
304 systeme.set(ligne_courant, col+column_courant) = 1 ;
306 systeme.set(ligne_courant+1, col+column_courant) = col*col/alpha ;
309 column_courant += nr ;
316 nr = mapping.get_mg()->get_nr(nz-1) ;
317 alpha = mapping.get_alpha()[nz-1] ;
318 beta = mapping.get_beta()[nz-1] ;
320 base.give_quant_numbers (nz-1, k, j, m_quant, l_quant, base_r) ;
321 work =
new Matrice(laplacien_mat(nr, l_quant, 0., dzpuis, base_r)) ;
324 for (
int col=0 ; col<nr ; col++) {
327 systeme.set(ligne_courant, col+column_courant) = -1 ;
329 systeme.set(ligne_courant, col+column_courant) = 1 ;
332 systeme.set(ligne_courant+1, col+column_courant) = -4*alpha*col*col ;
334 systeme.set(ligne_courant+1, col+column_courant) = 4*alpha*col*col ;
345 for (
int col=0 ; col<nr ; col++)
346 systeme.set(ligne_courant, col+column_courant) = 1 ;
351 for (
int col=0 ; col<nr ; col++)
352 systeme.set(ligne_courant, col+column_courant) = 1 ;
354 for (
int col=0 ; col<nr ; col++)
355 systeme.set(ligne_courant+1, col+column_courant) = -4*alpha*col*col ;
362 for (
int col=0 ; col<nr ; col++)
363 systeme.set(ligne_courant, col+column_courant) = 1 ;
370 for (
int col=0 ; col<nr ; col++)
371 systeme.set(ligne_courant, col+column_courant) = 1 ;
375 cout <<
"Unknown dzpuis in sol_poisson_tau ..." << endl ;
379 ligne_courant += nbr_cl ;
385 indic = alpha*alpha ;
395 for (
int lig=0 ; lig<nr-1-nbr_cl ; lig++) {
396 for (
int col=0 ; col<nr ; col++)
397 systeme.set(lig+ligne_courant,col+column_courant) = (*work)(lig,col) ;
398 sec_membre.set(lig+ligne_courant) = indic*source(nz-1, k, j, lig) ;
403 systeme.set_band (max_nr, max_nr) ;
405 Tbl soluce (systeme.inverse(sec_membre)) ;
409 for (
int l=0 ; l<nz ; l++) {
410 nr = mapping.get_mg()->get_nr(l) ;
411 for (
int i=0 ; i<nr ; i++) {
412 resultat.set(l,k,j,i) = soluce(conte) ;
#define R_JACO02
base de Jacobi(0,2) ordinaire (finjac)
const Mg3d * get_mg() const
Returns the Mg3d on which the Mtbl_cf is defined.
int get_nzone() const
Returns the number of domains.
#define R_CHEB
base de Chebychev ordinaire (fin)