LORENE
map_et_poisson.C
1 /*
2  * Method of the class Map_et for the (iterative) resolution of the scalar
3  * Poisson equation.
4  *
5  * (see file map.h for the documentation).
6  *
7  */
8 
9 /*
10  * Copyright (c) 2004 Francois Limousin
11  * Copyright (c) 1999-2003 Eric Gourgoulhon
12  * Copyright (c) 2000-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 /*
37  * $Id: map_et_poisson.C,v 1.11 2025/03/04 13:16:50 j_novak Exp $
38  * $Log: map_et_poisson.C,v $
39  * Revision 1.11 2025/03/04 13:16:50 j_novak
40  * New complete versions of Map_af::poisson() and Map_et::poisson() for Scalar, not using Cmp.
41  *
42  * Revision 1.10 2024/06/24 14:10:51 j_novak
43  * Back to previous version.
44  *
45  * Revision 1.9 2023/05/26 15:42:30 g_servignat
46  * Added c_est_pas_fait() to poisson_angu(Cmp)
47  *
48  * Revision 1.8 2016/12/05 16:17:58 j_novak
49  * Suppression of some global variables (file names, loch, ...) to prevent redefinitions
50  *
51  * Revision 1.7 2014/10/13 08:53:05 j_novak
52  * Lorene classes and functions now belong to the namespace Lorene.
53  *
54  * Revision 1.6 2005/08/25 12:14:09 p_grandclement
55  * Addition of a new method to solve the scalar Poisson equation, based on a multi-domain Tau-method
56  *
57  * Revision 1.5 2005/04/04 21:31:31 e_gourgoulhon
58  * Added argument lambda to method poisson_angu
59  * to deal with the generalized angular Poisson equation:
60  * Lap_ang u + lambda u = source.
61  *
62  * Revision 1.4 2004/06/22 12:20:17 j_novak
63  * *** empty log message ***
64  *
65  * Revision 1.3 2004/05/25 14:28:01 f_limousin
66  * First version of method Map_et::poisson_angu().
67  *
68  * Revision 1.2 2003/10/15 21:11:26 e_gourgoulhon
69  * Added method poisson_angu.
70  *
71  * Revision 1.1.1.1 2001/11/20 15:19:27 e_gourgoulhon
72  * LORENE
73  *
74  * Revision 1.7 2000/05/22 14:55:30 phil
75  * ajout du cas dzpuis = 3
76  *
77  * Revision 1.6 2000/03/30 09:18:37 eric
78  * Modifs affichage.
79  *
80  * Revision 1.5 2000/03/29 12:01:38 eric
81  * *** empty log message ***
82  *
83  * Revision 1.4 2000/03/29 11:48:09 eric
84  * Modifs affichage.
85  *
86  * Revision 1.3 2000/03/10 15:48:25 eric
87  * MODIFS IMPORTANTES:
88  * ssj est desormais traitee comme un Cmp (et non plus une Valeur) ce qui
89  * permet un traitement automatique du dzpuis associe.
90  * Traitement de dzpuis.
91  *
92  * Revision 1.2 2000/03/07 16:50:57 eric
93  * Possibilite d'avoir une source avec dzpuis = 2.
94  *
95  * Revision 1.1 1999/12/22 17:11:24 eric
96  * Initial revision
97  *
98  *
99  * $Header: /cvsroot/Lorene/C++/Source/Map/map_et_poisson.C,v 1.11 2025/03/04 13:16:50 j_novak Exp $
100  *
101  */
102 
103 // Header Lorene:
104 #include "cmp.h"
105 #include "scalar.h"
106 #include "param.h"
107 
108 //*****************************************************************************
109 
110 namespace Lorene {
111  void Map_et::poisson(const Scalar& source, Param& par, Scalar& uu) const {
112 
113  assert(source.get_etat() != ETATNONDEF) ;
114  assert(&source.get_mp() == this) ;
115 
116  assert( source.check_dzpuis(2) || source.check_dzpuis(4)
117  || source.check_dzpuis(3)) ;
118 
119  assert(&uu.get_mp() == this) ;
120  assert(uu.check_dzpuis(0)) ;
121 
122  int nz = mg->get_nzone() ;
123  int nzm1 = nz - 1 ;
124 
125  // Indicator of existence of a compactified external domain
126  bool zec = false ;
127  if (mg->get_type_r(nzm1) == UNSURR) {
128  zec = true ;
129  }
130 
131  //-------------------------------
132  // Computation of the prefactor a ---> Scalar apre
133  //-------------------------------
134 
135  Mtbl unjj = 1 + srdrdt*srdrdt + srstdrdp*srstdrdp ;
136 
137  Mtbl apre1(*mg) ;
138  apre1.set_etat_qcq() ;
139  for (int l=0; l<nz; l++) {
140  *(apre1.t[l]) = alpha[l]*alpha[l] ;
141  }
142 
143  apre1 = apre1 * dxdr * dxdr * unjj ;
144 
145  Scalar apre(*this) ;
146  apre = apre1 ;
147 
148  Tbl amax0 = max(apre1) ; // maximum values in each domain
149 
150  // The maximum values of a in each domain are put in a Mtbl
151  Mtbl amax1(*mg) ;
152  amax1.set_etat_qcq() ;
153  for (int l=0; l<nz; l++) {
154  *(amax1.t[l]) = amax0(l) ;
155  }
156 
157  Scalar amax(*this) ;
158  amax = amax1 ;
159 
160 
161  //-------------------
162  // Initializations
163  //-------------------
164 
165  int nitermax = par.get_int() ;
166  int& niter = par.get_int_mod() ;
167  double lambda = par.get_double() ;
168  double unmlambda = 1. - lambda ;
169  double precis = par.get_double(1) ;
170 
171  Scalar& ssj = par.get_scalar_mod() ;
172 
173  Scalar ssjm1 = ssj ;
174  Scalar ssjm2 = ssjm1 ;
175 
176  Valeur& vuu = uu.set_spectral_va() ;
177 
178  Valeur vuujm1(*mg) ;
179  if (uu.get_etat() == ETATZERO) {
180  vuujm1 = 1 ; // to take relative differences
181  vuujm1.set_base( vuu.base ) ;
182  }
183  else{
184  vuujm1 = vuu ;
185  }
186 
187  // Affine mapping for the Laplacian-tilde
188 
189  Map_af mpaff(*this) ;
190  Param par_nul ;
191 
192  cout << "Map_et::poisson : relat. diff. u^J <-> u^{J-1} : " << endl ;
193 
194 //==========================================================================
195 //==========================================================================
196 // Start of iteration
197 //==========================================================================
198 //==========================================================================
199 
200  Tbl tdiff(nz) ;
201  double diff ;
202  niter = 0 ;
203 
204  do {
205 
206  //====================================================================
207  // Computation of R(u) (the result is put in uu)
208  //====================================================================
209 
210 
211  //-----------------------
212  // First operations on uu
213  //-----------------------
214 
215  Valeur duudx = vuu.dsdx() ; // d/dx
216 
217  const Valeur& d2uudtdx = duudx.dsdt() ; // d^2/dxdtheta
218 
219  const Valeur& std2uudpdx = duudx.stdsdp() ; // 1/sin(theta) d^2/dxdphi
220 
221  //------------------
222  // Angular Laplacian
223  //------------------
224 
225  Valeur sxlapang = vuu ;
226 
227  sxlapang.ylm() ;
228 
229  sxlapang = sxlapang.lapang() ;
230 
231  sxlapang = sxlapang.sx() ; // Lap_ang(uu) /x in the nucleus
232  // Lap_ang(uu) in the shells
233  // Lap_ang(uu) /(x-1) in the ZEC
234 
235  //---------------------------------------------------------------
236  // Computation of
237  // [ 2 /(dRdx) ( A - 1 ) duu/dx + 1/R (B - 1) Lap_ang(uu) ] / x
238  //
239  // with A = 1/(dRdx) R/(x+beta_l/alpha_l) unjj
240  // B = [1/(dRdx) R/(x+beta_l/alpha_l)]^2 unjj
241  //
242  // The result is put in uu (via vuu)
243  //---------------------------------------------------------------
244 
245  Valeur varduudx = duudx ;
246 
247  if (zec) {
248  varduudx.annule(nzm1) ; // term in d/dx set to zero in the ZEC
249  }
250 
251  uu.set_etat_qcq() ;
252 
253  Base_val sauve_base = varduudx.base ;
254 
255  vuu = 2. * dxdr * ( rsxdxdr * unjj - 1.) * varduudx
256  + ( rsxdxdr*rsxdxdr * unjj - 1.) * xsr * sxlapang ;
257 
258  vuu.set_base(sauve_base) ;
259 
260  vuu = vuu.sx() ;
261 
262  //---------------------------------------
263  // Computation of R(u)
264  //
265  // The result is put in uu (via vuu)
266  //---------------------------------------
267 
268 
269  sauve_base = vuu.base ;
270 
271  vuu = xsr * vuu
272  + 2. * dxdr * ( sr2drdt * d2uudtdx
273  + sr2stdrdp * std2uudpdx ) ;
274 
275  vuu += dxdr * ( lapr_tp + dxdr * (
276  dxdr* unjj * d2rdx2
277  - 2. * ( sr2drdt * d2rdtdx + sr2stdrdp * sstd2rdpdx ) )
278  ) * duudx ;
279 
280  vuu.set_base(sauve_base) ;
281 
282  // Since the assignment is performed on vuu (uu.va), the treatment
283  // of uu.dzpuis must be performed by hand:
284 
285  uu.set_dzpuis(4) ;
286 
287  if (source.get_dzpuis() == 2) {
288  uu.dec_dzpuis(2) ; // uu.dzpuis: 4 -> 2
289  }
290 
291  if (source.get_dzpuis() == 3) {
292  uu.dec_dzpuis() ; //uu.dzpuis 4 -> 3
293  }
294 
295  //====================================================================
296  // Computation of the effective source s^J of the ``affine''
297  // Poisson equation
298  //====================================================================
299 
300  ssj = lambda * ssjm1 + unmlambda * ssjm2 ;
301 
302  ssj = ( source + uu + (amax - apre) * ssj ) / amax ;
303 
304  ssj.set_spectral_base(source.get_spectral_base()) ;
305 
306  //====================================================================
307  // Resolution of the ``affine'' Poisson equation
308  //====================================================================
309 
310  if ( source.get_dzpuis() == 0 ){
311  ssj.set_dzpuis( 4 ) ;
312  }
313  else {
314  ssj.set_dzpuis( source.get_dzpuis() ) ; // Choice of the resolution
315  // dzpuis = 2, 3 or 4
316  }
317 
318  assert( uu.check_dzpuis( ssj.get_dzpuis() ) ) ;
319 
320  mpaff.poisson(ssj, par_nul, uu) ;
321 
322  tdiff = diffrel(vuu, vuujm1) ;
323 
324  diff = max(tdiff) ;
325 
326 
327  cout << " step " << niter << " : " ;
328  for (int l=0; l<nz; l++) {
329  cout << tdiff(l) << " " ;
330  }
331  cout << endl ;
332 
333  //=================================
334  // Updates for the next iteration
335  //=================================
336 
337  ssjm2 = ssjm1 ;
338  ssjm1 = ssj ;
339  vuujm1 = vuu ;
340 
341  niter++ ;
342 
343  } // End of iteration
344  while ( (diff > precis) && (niter < nitermax) ) ;
345 
346 //==========================================================================
347 //==========================================================================
348 // End of iteration
349 //==========================================================================
350 //==========================================================================
351 
352 }
353 
354 
355 
356 //*****************************************************************************
357 // VERSION WITH A TAU METHOD
358 //*****************************************************************************
359 
360 void Map_et::poisson_tau(const Scalar& source, Param& par, Scalar& uu) const {
361 
362  assert(source.get_etat() != ETATNONDEF) ;
363  assert(&source.get_mp() == this) ;
364 
365  assert( source.check_dzpuis(2) || source.check_dzpuis(4)
366  || source.check_dzpuis(3)) ;
367 
368  assert(&uu.get_mp() == this) ;
369  assert(uu.check_dzpuis(0)) ;
370 
371  int nz = mg->get_nzone() ;
372  int nzm1 = nz - 1 ;
373 
374  // Indicator of existence of a compactified external domain
375  bool zec = false ;
376  if (mg->get_type_r(nzm1) == UNSURR) {
377  zec = true ;
378  }
379 
380  //-------------------------------
381  // Computation of the prefactor a ---> Cmp apre
382  //-------------------------------
383 
384  Mtbl unjj = 1 + srdrdt*srdrdt + srstdrdp*srstdrdp ;
385 
386  Mtbl apre1(*mg) ;
387  apre1.set_etat_qcq() ;
388  for (int l=0; l<nz; l++) {
389  *(apre1.t[l]) = alpha[l]*alpha[l] ;
390  }
391 
392  apre1 = apre1 * dxdr * dxdr * unjj ;
393 
394  Scalar apre(*this) ;
395  apre = apre1 ;
396 
397  Tbl amax0 = max(apre1) ; // maximum values in each domain
398 
399  // The maximum values of a in each domain are put in a Mtbl
400  Mtbl amax1(*mg) ;
401  amax1.set_etat_qcq() ;
402  for (int l=0; l<nz; l++) {
403  *(amax1.t[l]) = amax0(l) ;
404  }
405 
406  Scalar amax(*this) ;
407  amax = amax1 ;
408 
409 
410  //-------------------
411  // Initializations
412  //-------------------
413 
414  int nitermax = par.get_int() ;
415  int& niter = par.get_int_mod() ;
416  double lambda = par.get_double() ;
417  double unmlambda = 1. - lambda ;
418  double precis = par.get_double(1) ;
419 
420  Scalar& ssj = par.get_scalar_mod() ;
421 
422  Scalar ssjm1 = ssj ;
423  Scalar ssjm2 = ssjm1 ;
424 
425  Valeur& vuu = uu.set_spectral_va() ;
426 
427  Valeur vuujm1(*mg) ;
428  if (uu.get_etat() == ETATZERO) {
429  vuujm1 = 1 ; // to take relative differences
430  vuujm1.set_base( vuu.base ) ;
431  }
432  else{
433  vuujm1 = vuu ;
434  }
435 
436  // Affine mapping for the Laplacian-tilde
437 
438  Map_af mpaff(*this) ;
439  Param par_nul ;
440 
441  cout << "Map_et::poisson_tau : relat. diff. u^J <-> u^{J-1} : " << endl ;
442 
443 //==========================================================================
444 //==========================================================================
445 // Start of iteration
446 //==========================================================================
447 //==========================================================================
448 
449  Tbl tdiff(nz) ;
450  double diff ;
451  niter = 0 ;
452 
453  do {
454 
455  //====================================================================
456  // Computation of R(u) (the result is put in uu)
457  //====================================================================
458 
459 
460  //-----------------------
461  // First operations on uu
462  //-----------------------
463 
464  Valeur duudx = vuu.dsdx() ; // d/dx
465 
466  const Valeur& d2uudtdx = duudx.dsdt() ; // d^2/dxdtheta
467 
468  const Valeur& std2uudpdx = duudx.stdsdp() ; // 1/sin(theta) d^2/dxdphi
469 
470  //------------------
471  // Angular Laplacian
472  //------------------
473 
474  Valeur sxlapang = vuu ;
475 
476  sxlapang.ylm() ;
477 
478  sxlapang = sxlapang.lapang() ;
479 
480  sxlapang = sxlapang.sx() ; // Lap_ang(uu) /x in the nucleus
481  // Lap_ang(uu) in the shells
482  // Lap_ang(uu) /(x-1) in the ZEC
483 
484  //---------------------------------------------------------------
485  // Computation of
486  // [ 2 /(dRdx) ( A - 1 ) duu/dx + 1/R (B - 1) Lap_ang(uu) ] / x
487  //
488  // with A = 1/(dRdx) R/(x+beta_l/alpha_l) unjj
489  // B = [1/(dRdx) R/(x+beta_l/alpha_l)]^2 unjj
490  //
491  // The result is put in uu (via vuu)
492  //---------------------------------------------------------------
493 
494  Valeur varduudx = duudx ;
495 
496  if (zec) {
497  varduudx.annule(nzm1) ; // term in d/dx set to zero in the ZEC
498  }
499 
500  uu.set_etat_qcq() ;
501 
502  Base_val sauve_base = varduudx.base ;
503 
504  vuu = 2. * dxdr * ( rsxdxdr * unjj - 1.) * varduudx
505  + ( rsxdxdr*rsxdxdr * unjj - 1.) * xsr * sxlapang ;
506 
507  vuu.set_base(sauve_base) ;
508 
509  vuu = vuu.sx() ;
510 
511  //---------------------------------------
512  // Computation of R(u)
513  //
514  // The result is put in uu (via vuu)
515  //---------------------------------------
516 
517 
518  sauve_base = vuu.base ;
519 
520  vuu = xsr * vuu
521  + 2. * dxdr * ( sr2drdt * d2uudtdx
522  + sr2stdrdp * std2uudpdx ) ;
523 
524  vuu += dxdr * ( lapr_tp + dxdr * (
525  dxdr* unjj * d2rdx2
526  - 2. * ( sr2drdt * d2rdtdx + sr2stdrdp * sstd2rdpdx ) )
527  ) * duudx ;
528 
529  vuu.set_base(sauve_base) ;
530 
531  // Since the assignment is performed on vuu (uu.va), the treatment
532  // of uu.dzpuis must be performed by hand:
533 
534  uu.set_dzpuis(4) ;
535 
536  if (source.get_dzpuis() == 2) {
537  uu.dec_dzpuis(2) ; // uu.dzpuis: 4 -> 2
538  }
539 
540  if (source.get_dzpuis() == 3) {
541  uu.dec_dzpuis() ; //uu.dzpuis 4 -> 3
542  }
543 
544  //====================================================================
545  // Computation of the effective source s^J of the ``affine''
546  // Poisson equation
547  //====================================================================
548 
549  ssj = lambda * ssjm1 + unmlambda * ssjm2 ;
550 
551  ssj = ( source + uu + (amax - apre) * ssj ) / amax ;
552 
553  ssj.set_spectral_base(source.get_spectral_base()) ;
554 
555  //====================================================================
556  // Resolution of the ``affine'' Poisson equation
557  //====================================================================
558 
559  if ( source.get_dzpuis() == 0 ){
560  ssj.set_dzpuis( 4 ) ;
561  }
562  else {
563  ssj.set_dzpuis( source.get_dzpuis() ) ; // Choice of the resolution
564  // dzpuis = 2, 3 or 4
565  }
566 
567  assert( uu.check_dzpuis( ssj.get_dzpuis() ) ) ;
568 
569  mpaff.poisson_tau(ssj, par_nul, uu) ;
570 
571  tdiff = diffrel(vuu, vuujm1) ;
572 
573  diff = max(tdiff) ;
574 
575 
576  cout << " step " << niter << " : " ;
577  for (int l=0; l<nz; l++) {
578  cout << tdiff(l) << " " ;
579  }
580  cout << endl ;
581 
582  //=================================
583  // Updates for the next iteration
584  //=================================
585 
586  ssjm2 = ssjm1 ;
587  ssjm1 = ssj ;
588  vuujm1 = vuu ;
589 
590  niter++ ;
591 
592  } // End of iteration
593  while ( (diff > precis) && (niter < nitermax) ) ;
594 
595 //==========================================================================
596 //==========================================================================
597 // End of iteration
598 //==========================================================================
599 //==========================================================================
600 }
601 
602 //=============================================================================
603 
604  // ---------------------------
605  // Cmp versions
606  // ---------------------------
607 
608 //=============================================================================
609 
610  void Map_et::poisson(const Cmp& source, Param& par, Cmp& uu) const {
611 
612  assert(source.get_etat() != ETATNONDEF) ;
613  assert(source.get_mp() == this) ;
614 
615  assert( source.check_dzpuis(2) || source.check_dzpuis(4)
616  || source.check_dzpuis(3)) ;
617 
618  assert(uu.get_mp() == this) ;
619  assert(uu.check_dzpuis(0)) ;
620 
621  int nz = mg->get_nzone() ;
622  int nzm1 = nz - 1 ;
623 
624  // Indicator of existence of a compactified external domain
625  bool zec = false ;
626  if (mg->get_type_r(nzm1) == UNSURR) {
627  zec = true ;
628  }
629 
630  //-------------------------------
631  // Computation of the prefactor a ---> Cmp apre
632  //-------------------------------
633 
634  Mtbl unjj = 1 + srdrdt*srdrdt + srstdrdp*srstdrdp ;
635 
636  Mtbl apre1(*mg) ;
637  apre1.set_etat_qcq() ;
638  for (int l=0; l<nz; l++) {
639  *(apre1.t[l]) = alpha[l]*alpha[l] ;
640  }
641 
642  apre1 = apre1 * dxdr * dxdr * unjj ;
643 
644  Cmp apre(*this) ;
645  apre = apre1 ;
646 
647  Tbl amax0 = max(apre1) ; // maximum values in each domain
648 
649  // The maximum values of a in each domain are put in a Mtbl
650  Mtbl amax1(*mg) ;
651  amax1.set_etat_qcq() ;
652  for (int l=0; l<nz; l++) {
653  *(amax1.t[l]) = amax0(l) ;
654  }
655 
656  Cmp amax(*this) ;
657  amax = amax1 ;
658 
659 
660  //-------------------
661  // Initializations
662  //-------------------
663 
664  int nitermax = par.get_int() ;
665  int& niter = par.get_int_mod() ;
666  double lambda = par.get_double() ;
667  double unmlambda = 1. - lambda ;
668  double precis = par.get_double(1) ;
669 
670  Cmp& ssj = par.get_cmp_mod() ;
671 
672  Cmp ssjm1 = ssj ;
673  Cmp ssjm2 = ssjm1 ;
674 
675  Valeur& vuu = uu.va ;
676 
677  Valeur vuujm1(*mg) ;
678  if (uu.get_etat() == ETATZERO) {
679  vuujm1 = 1 ; // to take relative differences
680  vuujm1.set_base( vuu.base ) ;
681  }
682  else{
683  vuujm1 = vuu ;
684  }
685 
686  // Affine mapping for the Laplacian-tilde
687 
688  Map_af mpaff(*this) ;
689  Param par_nul ;
690 
691  cout << "Map_et::poisson : relat. diff. u^J <-> u^{J-1} : " << endl ;
692 
693 //==========================================================================
694 //==========================================================================
695 // Start of iteration
696 //==========================================================================
697 //==========================================================================
698 
699  Tbl tdiff(nz) ;
700  double diff ;
701  niter = 0 ;
702 
703  do {
704 
705  //====================================================================
706  // Computation of R(u) (the result is put in uu)
707  //====================================================================
708 
709 
710  //-----------------------
711  // First operations on uu
712  //-----------------------
713 
714  Valeur duudx = (uu.va).dsdx() ; // d/dx
715 
716  const Valeur& d2uudtdx = duudx.dsdt() ; // d^2/dxdtheta
717 
718  const Valeur& std2uudpdx = duudx.stdsdp() ; // 1/sin(theta) d^2/dxdphi
719 
720  //------------------
721  // Angular Laplacian
722  //------------------
723 
724  Valeur sxlapang = uu.va ;
725 
726  sxlapang.ylm() ;
727 
728  sxlapang = sxlapang.lapang() ;
729 
730  sxlapang = sxlapang.sx() ; // Lap_ang(uu) /x in the nucleus
731  // Lap_ang(uu) in the shells
732  // Lap_ang(uu) /(x-1) in the ZEC
733 
734  //---------------------------------------------------------------
735  // Computation of
736  // [ 2 /(dRdx) ( A - 1 ) duu/dx + 1/R (B - 1) Lap_ang(uu) ] / x
737  //
738  // with A = 1/(dRdx) R/(x+beta_l/alpha_l) unjj
739  // B = [1/(dRdx) R/(x+beta_l/alpha_l)]^2 unjj
740  //
741  // The result is put in uu (via vuu)
742  //---------------------------------------------------------------
743 
744  Valeur varduudx = duudx ;
745 
746  if (zec) {
747  varduudx.annule(nzm1) ; // term in d/dx set to zero in the ZEC
748  }
749 
750  uu.set_etat_qcq() ;
751 
752  Base_val sauve_base = varduudx.base ;
753 
754  vuu = 2. * dxdr * ( rsxdxdr * unjj - 1.) * varduudx
755  + ( rsxdxdr*rsxdxdr * unjj - 1.) * xsr * sxlapang ;
756 
757  vuu.set_base(sauve_base) ;
758 
759  vuu = vuu.sx() ;
760 
761  //---------------------------------------
762  // Computation of R(u)
763  //
764  // The result is put in uu (via vuu)
765  //---------------------------------------
766 
767 
768  sauve_base = vuu.base ;
769 
770  vuu = xsr * vuu
771  + 2. * dxdr * ( sr2drdt * d2uudtdx
772  + sr2stdrdp * std2uudpdx ) ;
773 
774  vuu += dxdr * ( lapr_tp + dxdr * (
775  dxdr* unjj * d2rdx2
776  - 2. * ( sr2drdt * d2rdtdx + sr2stdrdp * sstd2rdpdx ) )
777  ) * duudx ;
778 
779  vuu.set_base(sauve_base) ;
780 
781  // Since the assignment is performed on vuu (uu.va), the treatment
782  // of uu.dzpuis must be performed by hand:
783 
784  uu.set_dzpuis(4) ;
785 
786  if (source.get_dzpuis() == 2) {
787  uu.dec2_dzpuis() ; // uu.dzpuis: 4 -> 2
788  }
789 
790  if (source.get_dzpuis() == 3) {
791  uu.dec_dzpuis() ; //uu.dzpuis 4 -> 3
792  }
793 
794  //====================================================================
795  // Computation of the effective source s^J of the ``affine''
796  // Poisson equation
797  //====================================================================
798 
799  ssj = lambda * ssjm1 + unmlambda * ssjm2 ;
800 
801  ssj = ( source + uu + (amax - apre) * ssj ) / amax ;
802 
803  (ssj.va).set_base((source.va).base) ;
804 
805  //====================================================================
806  // Resolution of the ``affine'' Poisson equation
807  //====================================================================
808 
809  if ( source.get_dzpuis() == 0 ){
810  ssj.set_dzpuis( 4 ) ;
811  }
812  else {
813  ssj.set_dzpuis( source.get_dzpuis() ) ; // Choice of the resolution
814  // dzpuis = 2, 3 or 4
815  }
816 
817  assert( uu.check_dzpuis( ssj.get_dzpuis() ) ) ;
818 
819  mpaff.poisson(ssj, par_nul, uu) ;
820 
821  tdiff = diffrel(vuu, vuujm1) ;
822 
823  diff = max(tdiff) ;
824 
825 
826  cout << " step " << niter << " : " ;
827  for (int l=0; l<nz; l++) {
828  cout << tdiff(l) << " " ;
829  }
830  cout << endl ;
831 
832  //=================================
833  // Updates for the next iteration
834  //=================================
835 
836  ssjm2 = ssjm1 ;
837  ssjm1 = ssj ;
838  vuujm1 = vuu ;
839 
840  niter++ ;
841 
842  } // End of iteration
843  while ( (diff > precis) && (niter < nitermax) ) ;
844 
845 //==========================================================================
846 //==========================================================================
847 // End of iteration
848 //==========================================================================
849 //==========================================================================
850 
851 }
852 
853 
854 
855 //*****************************************************************************
856 // VERSION WITH A TAU METHOD
857 //*****************************************************************************
858 
859 void Map_et::poisson_tau(const Cmp& source, Param& par, Cmp& uu) const {
860 
861  assert(source.get_etat() != ETATNONDEF) ;
862  assert(source.get_mp() == this) ;
863 
864  assert( source.check_dzpuis(2) || source.check_dzpuis(4)
865  || source.check_dzpuis(3)) ;
866 
867  assert(uu.get_mp() == this) ;
868  assert(uu.check_dzpuis(0)) ;
869 
870  int nz = mg->get_nzone() ;
871  int nzm1 = nz - 1 ;
872 
873  // Indicator of existence of a compactified external domain
874  bool zec = false ;
875  if (mg->get_type_r(nzm1) == UNSURR) {
876  zec = true ;
877  }
878 
879  //-------------------------------
880  // Computation of the prefactor a ---> Cmp apre
881  //-------------------------------
882 
883  Mtbl unjj = 1 + srdrdt*srdrdt + srstdrdp*srstdrdp ;
884 
885  Mtbl apre1(*mg) ;
886  apre1.set_etat_qcq() ;
887  for (int l=0; l<nz; l++) {
888  *(apre1.t[l]) = alpha[l]*alpha[l] ;
889  }
890 
891  apre1 = apre1 * dxdr * dxdr * unjj ;
892 
893  Cmp apre(*this) ;
894  apre = apre1 ;
895 
896  Tbl amax0 = max(apre1) ; // maximum values in each domain
897 
898  // The maximum values of a in each domain are put in a Mtbl
899  Mtbl amax1(*mg) ;
900  amax1.set_etat_qcq() ;
901  for (int l=0; l<nz; l++) {
902  *(amax1.t[l]) = amax0(l) ;
903  }
904 
905  Cmp amax(*this) ;
906  amax = amax1 ;
907 
908 
909  //-------------------
910  // Initializations
911  //-------------------
912 
913  int nitermax = par.get_int() ;
914  int& niter = par.get_int_mod() ;
915  double lambda = par.get_double() ;
916  double unmlambda = 1. - lambda ;
917  double precis = par.get_double(1) ;
918 
919  Cmp& ssj = par.get_cmp_mod() ;
920 
921  Cmp ssjm1 = ssj ;
922  Cmp ssjm2 = ssjm1 ;
923 
924  Valeur& vuu = uu.va ;
925 
926  Valeur vuujm1(*mg) ;
927  if (uu.get_etat() == ETATZERO) {
928  vuujm1 = 1 ; // to take relative differences
929  vuujm1.set_base( vuu.base ) ;
930  }
931  else{
932  vuujm1 = vuu ;
933  }
934 
935  // Affine mapping for the Laplacian-tilde
936 
937  Map_af mpaff(*this) ;
938  Param par_nul ;
939 
940  cout << "Map_et::poisson_tau : relat. diff. u^J <-> u^{J-1} : " << endl ;
941 
942 //==========================================================================
943 //==========================================================================
944 // Start of iteration
945 //==========================================================================
946 //==========================================================================
947 
948  Tbl tdiff(nz) ;
949  double diff ;
950  niter = 0 ;
951 
952  do {
953 
954  //====================================================================
955  // Computation of R(u) (the result is put in uu)
956  //====================================================================
957 
958 
959  //-----------------------
960  // First operations on uu
961  //-----------------------
962 
963  Valeur duudx = (uu.va).dsdx() ; // d/dx
964 
965  const Valeur& d2uudtdx = duudx.dsdt() ; // d^2/dxdtheta
966 
967  const Valeur& std2uudpdx = duudx.stdsdp() ; // 1/sin(theta) d^2/dxdphi
968 
969  //------------------
970  // Angular Laplacian
971  //------------------
972 
973  Valeur sxlapang = uu.va ;
974 
975  sxlapang.ylm() ;
976 
977  sxlapang = sxlapang.lapang() ;
978 
979  sxlapang = sxlapang.sx() ; // Lap_ang(uu) /x in the nucleus
980  // Lap_ang(uu) in the shells
981  // Lap_ang(uu) /(x-1) in the ZEC
982 
983  //---------------------------------------------------------------
984  // Computation of
985  // [ 2 /(dRdx) ( A - 1 ) duu/dx + 1/R (B - 1) Lap_ang(uu) ] / x
986  //
987  // with A = 1/(dRdx) R/(x+beta_l/alpha_l) unjj
988  // B = [1/(dRdx) R/(x+beta_l/alpha_l)]^2 unjj
989  //
990  // The result is put in uu (via vuu)
991  //---------------------------------------------------------------
992 
993  Valeur varduudx = duudx ;
994 
995  if (zec) {
996  varduudx.annule(nzm1) ; // term in d/dx set to zero in the ZEC
997  }
998 
999  uu.set_etat_qcq() ;
1000 
1001  Base_val sauve_base = varduudx.base ;
1002 
1003  vuu = 2. * dxdr * ( rsxdxdr * unjj - 1.) * varduudx
1004  + ( rsxdxdr*rsxdxdr * unjj - 1.) * xsr * sxlapang ;
1005 
1006  vuu.set_base(sauve_base) ;
1007 
1008  vuu = vuu.sx() ;
1009 
1010  //---------------------------------------
1011  // Computation of R(u)
1012  //
1013  // The result is put in uu (via vuu)
1014  //---------------------------------------
1015 
1016 
1017  sauve_base = vuu.base ;
1018 
1019  vuu = xsr * vuu
1020  + 2. * dxdr * ( sr2drdt * d2uudtdx
1021  + sr2stdrdp * std2uudpdx ) ;
1022 
1023  vuu += dxdr * ( lapr_tp + dxdr * (
1024  dxdr* unjj * d2rdx2
1025  - 2. * ( sr2drdt * d2rdtdx + sr2stdrdp * sstd2rdpdx ) )
1026  ) * duudx ;
1027 
1028  vuu.set_base(sauve_base) ;
1029 
1030  // Since the assignment is performed on vuu (uu.va), the treatment
1031  // of uu.dzpuis must be performed by hand:
1032 
1033  uu.set_dzpuis(4) ;
1034 
1035  if (source.get_dzpuis() == 2) {
1036  uu.dec2_dzpuis() ; // uu.dzpuis: 4 -> 2
1037  }
1038 
1039  if (source.get_dzpuis() == 3) {
1040  uu.dec_dzpuis() ; //uu.dzpuis 4 -> 3
1041  }
1042 
1043  //====================================================================
1044  // Computation of the effective source s^J of the ``affine''
1045  // Poisson equation
1046  //====================================================================
1047 
1048  ssj = lambda * ssjm1 + unmlambda * ssjm2 ;
1049 
1050  ssj = ( source + uu + (amax - apre) * ssj ) / amax ;
1051 
1052  (ssj.va).set_base((source.va).base) ;
1053 
1054  //====================================================================
1055  // Resolution of the ``affine'' Poisson equation
1056  //====================================================================
1057 
1058  if ( source.get_dzpuis() == 0 ){
1059  ssj.set_dzpuis( 4 ) ;
1060  }
1061  else {
1062  ssj.set_dzpuis( source.get_dzpuis() ) ; // Choice of the resolution
1063  // dzpuis = 2, 3 or 4
1064  }
1065 
1066  assert( uu.check_dzpuis( ssj.get_dzpuis() ) ) ;
1067 
1068  mpaff.poisson_tau(ssj, par_nul, uu) ;
1069 
1070  tdiff = diffrel(vuu, vuujm1) ;
1071 
1072  diff = max(tdiff) ;
1073 
1074 
1075  cout << " step " << niter << " : " ;
1076  for (int l=0; l<nz; l++) {
1077  cout << tdiff(l) << " " ;
1078  }
1079  cout << endl ;
1080 
1081  //=================================
1082  // Updates for the next iteration
1083  //=================================
1084 
1085  ssjm2 = ssjm1 ;
1086  ssjm1 = ssj ;
1087  vuujm1 = vuu ;
1088 
1089  niter++ ;
1090 
1091  } // End of iteration
1092  while ( (diff > precis) && (niter < nitermax) ) ;
1093 
1094 //==========================================================================
1095 //==========================================================================
1096 // End of iteration
1097 //==========================================================================
1098 //==========================================================================
1099 }
1100 
1101 void Map_et::poisson_angu(const Scalar& source, Param& par, Scalar& uu,
1102  double lambda) const {
1103 
1104  if (lambda != double(0)) {
1105  cout <<
1106  "Map_et::poisson_angu : the case lambda != 0 is not treated yet !"
1107  << endl ;
1108  abort() ;
1109  }
1110 
1111  assert(source.get_mp() == *this) ;
1112  assert(uu.get_mp() == *this) ;
1113 
1114  int nz = mg->get_nzone() ;
1115  int nzm1 = nz - 1 ;
1116 
1117  int* nrm6 = new int[nz];
1118  for (int l=0; l<=nzm1; l++)
1119  nrm6[l] = mg->get_nr(l) - 6 ;
1120 
1121 //## // Indicator of existence of a compactified external domain
1122 // bool zec = false ;
1123 // if (mg->get_type_r(nzm1) == UNSURR) {
1124 // zec = true ;
1125 // }
1126 
1127  //-------------------
1128  // Initializations
1129  //-------------------
1130 
1131  int nitermax = par.get_int() ;
1132  int& niter = par.get_int_mod() ;
1133  double relax = par.get_double() ;
1134  double precis = par.get_double(1) ;
1135 
1136  Cmp& ssjcmp = par.get_cmp_mod() ;
1137 
1138  Scalar ssj (ssjcmp) ;
1139  Scalar ssjm1 (ssj) ;
1140 
1141  int dzpuis = source.get_dzpuis() ;
1142  ssj.set_dzpuis(dzpuis) ;
1143  uu.set_dzpuis(dzpuis) ;
1144  ssjm1.set_dzpuis(dzpuis) ;
1145 
1146  Valeur& vuu = uu.set_spectral_va() ;
1147 
1148  Valeur vuujm1(*mg) ;
1149  if (uu.get_etat() == ETATZERO) {
1150  vuujm1 = 1 ; // to take relative differences
1151  vuujm1.set_base( vuu.base ) ;
1152  }
1153  else{
1154  vuujm1 = vuu ;
1155  }
1156 
1157  // Affine mapping for the Laplacian-tilde
1158 
1159  Map_af mpaff(*this) ;
1160  Param par_nul ;
1161 
1162  cout << "Map_et::poisson angu : relat. diff. u^J <-> u^{J-1} : " << endl ;
1163 
1164 //==========================================================================
1165 //==========================================================================
1166 // Start of iteration
1167 //==========================================================================
1168 //==========================================================================
1169 
1170 
1171  Tbl tdiff(nz) ;
1172  double diff ;
1173  niter = 0 ;
1174 
1175  do {
1176 
1177  //====================================================================
1178  // Computation of R(u) (the result is put in uu)
1179  //====================================================================
1180 
1181  //-----------------------
1182  // First operations on uu
1183  //-----------------------
1184 
1185  Valeur duudx = (uu.set_spectral_va()).dsdx() ; // d/dx
1186 
1187  const Valeur& d2uudxdx = duudx.dsdx() ; // d^2/dxdx
1188 
1189 
1190  const Valeur& d2uudtdx = duudx.dsdt() ; // d^2/dxdtheta
1191 
1192  const Valeur& std2uudpdx = duudx.stdsdp() ; // 1/sin(theta) d^2/dxdphi
1193 
1194  //---------------------------------------
1195  // Computation of R(u)
1196  //
1197  // The result is put in uu (via vuu)
1198  //---------------------------------------
1199 
1200  Mtbl unjj = srdrdt*srdrdt + srstdrdp*srstdrdp ;
1201 
1202  Base_val sauve_base = vuu.base ;
1203 
1204  vuu = - d2uudxdx * dxdr * dxdr * unjj
1205  + 2. * dxdr * ( sr2drdt * d2uudtdx
1206  + sr2stdrdp * std2uudpdx ) ;
1207 
1208  vuu.set_base(sauve_base) ;
1209 
1210  vuu += dxdr * ( lapr_tp + dxdr * (
1211  dxdr * unjj * d2rdx2
1212  - 2. * ( sr2drdt * d2rdtdx + sr2stdrdp * sstd2rdpdx ) )
1213  ) * duudx ;
1214 
1215  vuu.set_base(sauve_base) ;
1216 
1217  uu.mult_r() ;
1218  uu.mult_r() ;
1219 
1220  //====================================================================
1221  // Computation of the effective source s^J of the ``affine''
1222  // Poisson equation
1223  //====================================================================
1224 
1225  uu.filtre_r(nrm6) ;
1226 // uu.filtre_phi(1) ;
1227 // uu.filtre_theta(1) ;
1228 
1229  ssj = source + uu ;
1230 
1231  ssj = (1-relax) * ssj + relax * ssjm1 ;
1232 
1233  (ssj.set_spectral_va()).set_base((source.get_spectral_va()).base) ;
1234 
1235 
1236  //====================================================================
1237  // Resolution of the ``affine'' Poisson equation
1238  //====================================================================
1239 
1240  mpaff.poisson_angu(ssj, par_nul, uu) ;
1241 
1242  tdiff = diffrel(vuu, vuujm1) ;
1243 
1244  diff = max(tdiff) ;
1245 
1246 
1247  cout << " step " << niter << " : " ;
1248  for (int l=0; l<nz; l++) {
1249  cout << tdiff(l) << " " ;
1250  }
1251  cout << endl ;
1252 
1253  //=================================
1254  // Updates for the next iteration
1255  //=================================
1256 
1257  vuujm1 = vuu ;
1258  ssjm1 = ssj ;
1259 
1260  niter++ ;
1261 
1262  } // End of iteration
1263  while ( (diff > precis) && (niter < nitermax) ) ;
1264 
1265 //==========================================================================
1266 //==========================================================================
1267 // End of iteration
1268 //==========================================================================
1269 //==========================================================================
1270 
1271  uu.set_dzpuis( source.get_dzpuis() ) ; // dzpuis unchanged
1272 
1273 }
1274 
1275 void Map_et::poisson_angu(const Cmp& , Param&, Cmp&, double) const {
1276  cout << "Map_et::poisson_angu(const Cmp&, Param&, Cmp&, double) pas fait" << endl; abort() ;
1277  }
1278 
1279 
1280 }
const Map * get_mp() const
Returns the mapping.
Definition: cmp.h:901
const Base_val & get_spectral_base() const
Returns the spectral bases of the Valeur va.
Definition: scalar.h:1356
Coord d2rdx2
in the nucleus and in the non-compactified shells; \ in the compactified outer domain.
Definition: map.h:1689
const Valeur & dsdt() const
Returns of *this.
Definition: valeur_dsdt.C:115
Coord sr2stdrdp
in the nucleus and in the non-compactified shells; \ in the compactified outer domain.
Definition: map.h:1678
const Valeur & dsdx() const
Returns of *this.
Definition: valeur_dsdx.C:114
Component of a tensorial field *** DEPRECATED : use class Scalar instead ***.
Definition: cmp.h:446
void filtre_r(int *nn)
Sets the n lasts coefficients in r to 0 in all domains.
Definition: scalar_manip.C:192
void mult_r()
Multiplication by r everywhere; dzpuis is not changed.
const Valeur & lapang() const
Returns the angular Laplacian of *this.
Definition: valeur_lapang.C:75
void dec_dzpuis()
Decreases by 1 the value of dzpuis and changes accordingly the values of the Cmp in the external comp...
Definition: cmp_r_manip.C:157
Multi-domain array.
Definition: mtbl.h:118
double * alpha
Array (size: mg->nzone ) of the values of in each domain.
Definition: map.h:2865
Lorene prototypes.
Definition: app_hor.h:67
void ylm()
Computes the coefficients of *this.
Definition: valeur_ylm.C:141
int get_etat() const
Returns the logical state.
Definition: cmp.h:899
Coord sr2drdt
in the nucleus and in the non-compactified shells; \ in the compactified outer domain.
Definition: map.h:1670
Tensor field of valence 0 (or component of a tensorial field).
Definition: scalar.h:399
const Valeur & sx() const
Returns (r -sampling = RARE ) \ Id (r sampling = FIN ) \ (r -sampling = UNSURR ) ...
Definition: valeur_sx.C:113
Values and coefficients of a (real-value) function.
Definition: valeur.h:297
int get_etat() const
Returns the logical state ETATNONDEF (undefined), ETATZERO (null) or ETATQCQ (ordinary).
Definition: scalar.h:566
void annule(int l)
Sets the Valeur to zero in a given domain.
Definition: valeur.C:747
virtual void set_etat_qcq()
Sets the logical state to ETATQCQ (ordinary state).
Definition: scalar.C:359
void set_base(const Base_val &)
Sets the bases for spectral expansions (member base )
Definition: valeur.C:813
Tbl diffrel(const Cmp &a, const Cmp &b)
Relative difference between two Cmp (norme version).
Definition: cmp_math.C:507
Coord srstdrdp
in the nucleus and in the non-compactified shells; \ in the compactified outer domain.
Definition: map.h:1662
void set_dzpuis(int)
Modifies the dzpuis flag.
Definition: scalar.C:814
Cmp & get_cmp_mod(int position=0) const
Returns the reference of a modifiable Cmp stored in the list.
Definition: param.C:1052
virtual void poisson(const Cmp &source, Param &par, Cmp &uu) const
Computes the solution of a scalar Poisson equation (Cmp version).
const int & get_int(int position=0) const
Returns the reference of a int stored in the list.
Definition: param.C:295
virtual void poisson(const Cmp &source, Param &par, Cmp &uu) const
Computes the solution of a scalar Poisson equation (Cmp version).
Coord dxdr
in the nucleus and in the non-compactified shells; \ in the compactified outer domain.
Definition: map.h:1630
Base_val base
Bases on which the spectral expansion is performed.
Definition: valeur.h:315
int get_dzpuis() const
Returns dzpuis.
Definition: scalar.h:569
Parameter storage.
Definition: param.h:125
const Valeur & stdsdp() const
Returns of *this.
Definition: valeur_stdsdp.C:63
int get_nzone() const
Returns the number of domains.
Definition: grilles.h:467
int & get_int_mod(int position=0) const
Returns the reference of a modifiable int stored in the list.
Definition: param.C:433
Tbl max(const Cmp &)
Maximum values of a Cmp in each domain.
Definition: cmp_math.C:438
Coord sstd2rdpdx
in the nucleus and in the non-compactified shells; \ in the compactified outer domain.
Definition: map.h:1718
void dec2_dzpuis()
Decreases by 2 the value of dzpuis and changes accordingly the values of the Cmp in the external comp...
Definition: cmp_r_manip.C:183
Coord xsr
in the nucleus; \ 1/R in the non-compactified shells; \ in the compactified outer domain...
Definition: map.h:1619
void set_etat_qcq()
Sets the logical state to ETATQCQ (ordinary state).
Definition: cmp.C:307
void set_etat_qcq()
Sets the logical state to ETATQCQ (ordinary state).
Definition: mtbl.C:302
Coord rsxdxdr
in the nucleus; \ in the shells; \ in the outermost compactified domain.
Definition: map.h:2941
void set_spectral_base(const Base_val &)
Sets the spectral bases of the Valeur va
Definition: scalar.C:803
virtual void poisson_tau(const Cmp &source, Param &par, Cmp &uu) const
Computes the solution of a scalar Poisson equation using a Tau method (Cmp version).
int get_nr(int l) const
Returns the number of points in the radial direction ( ) in domain no. l.
Definition: grilles.h:471
virtual void poisson_angu(const Scalar &source, Param &par, Scalar &uu, double lambda=0) const
Computes the solution of the generalized angular Poisson equation.
const Mg3d * mg
Pointer on the multi-grid Mgd3 on which this is defined.
Definition: map.h:703
Bases of the spectral expansions.
Definition: base_val.h:325
Affine radial mapping.
Definition: map.h:2097
virtual void poisson_angu(const Scalar &source, Param &par, Scalar &uu, double lambda=0) const
Computes the solution of the generalized angular Poisson equation.
int get_dzpuis() const
Returns dzpuis.
Definition: cmp.h:903
Coord lapr_tp
in the nucleus and in the non-compactified shells; \ in the compactified outer domain.
Definition: map.h:1701
Scalar & get_scalar_mod(int position=0) const
Returns the reference of a modifiable Scalar stored in the list.
Definition: param.C:1465
bool check_dzpuis(int dzi) const
Returns false if the last domain is compactified and *this is not zero in this domain and dzpuis is n...
Definition: cmp.C:718
void set_dzpuis(int)
Set a value to dzpuis.
Definition: cmp.C:657
const double & get_double(int position=0) const
Returns the reference of a double stored in the list.
Definition: param.C:364
Basic array class.
Definition: tbl.h:164
Valeur & set_spectral_va()
Returns va (read/write version)
Definition: scalar.h:616
int get_type_r(int l) const
Returns the type of sampling in the radial direction in domain no.
Definition: grilles.h:493
bool check_dzpuis(int dzi) const
Returns false if the last domain is compactified and *this is not zero in this domain and dzpuis is n...
Definition: scalar.C:879
Tbl ** t
Array (size nzone ) of pointers on the Tbl &#39;s.
Definition: mtbl.h:132
Coord srdrdt
in the nucleus and in the non-compactified shells; \ in the compactified outer domain.
Definition: map.h:1654
const Map & get_mp() const
Returns the mapping.
Definition: tensor.h:902
virtual void dec_dzpuis(int dec=1)
Decreases by dec units the value of dzpuis and changes accordingly the values of the Scalar in the co...
Valeur va
The numerical value of the Cmp.
Definition: cmp.h:464
const Valeur & get_spectral_va() const
Returns va (read only version)
Definition: scalar.h:613
Coord d2rdtdx
in the nucleus and in the non-compactified shells; \ in the compactified outer domain.
Definition: map.h:1710
virtual void poisson_tau(const Cmp &source, Param &par, Cmp &uu) const
Computes the solution of a scalar Poisson equation with a Tau method (Cmp version).