LORENE
map_log_pas_fait.C
1 /*
2  * Methods not yet implemented in class Map_log
3  *
4  * (see file map.h for documentation)
5  *
6  */
7 
8 /*
9  * Copyright (c) 2004 Philippe Grandclement
10  *
11  * This file is part of LORENE.
12  *
13  * LORENE is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * LORENE is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with LORENE; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26  *
27  */
28 
29 
30 
31 
32 /*
33  * $Id: map_log_pas_fait.C,v 1.15 2025/03/06 09:42:41 j_novak Exp $
34  * $Log: map_log_pas_fait.C,v $
35  * Revision 1.15 2025/03/06 09:42:41 j_novak
36  * Definition of Map_XX::integrale(Scalar&).
37  *
38  * Revision 1.14 2025/03/04 13:16:50 j_novak
39  * New complete versions of Map_af::poisson() and Map_et::poisson() for Scalar, not using Cmp.
40  *
41  * Revision 1.13 2023/05/26 15:42:30 g_servignat
42  * Added c_est_pas_fait() to poisson_angu(Cmp)
43  *
44  * Revision 1.12 2016/12/05 16:17:58 j_novak
45  * Suppression of some global variables (file names, loch, ...) to prevent redefinitions
46  *
47  * Revision 1.11 2014/10/13 08:53:06 j_novak
48  * Lorene classes and functions now belong to the namespace Lorene.
49  *
50  * Revision 1.10 2014/10/06 15:13:13 j_novak
51  * Modified #include directives to use c++ syntax.
52  *
53  * Revision 1.9 2014/01/08 09:41:22 b_peres
54  * change map_log_pas_fait
55  *
56  * Revision 1.8 2012/01/17 10:34:56 j_penner
57  * *** empty log message ***
58  *
59  * Revision 1.7 2008/09/29 13:23:51 j_novak
60  * Implementation of the angular mapping associated with an affine
61  * mapping. Things must be improved to take into account the domain index.
62  *
63  * Revision 1.6 2006/04/25 07:21:59 p_grandclement
64  * Various changes for the NS_BH project
65  *
66  * Revision 1.5 2005/11/24 09:25:07 j_novak
67  * Added the Scalar version for the Laplacian
68  *
69  * Revision 1.4 2005/08/25 12:14:09 p_grandclement
70  * Addition of a new method to solve the scalar Poisson equation, based on a multi-domain Tau-method
71  *
72  * Revision 1.3 2005/04/04 21:31:31 e_gourgoulhon
73  * Added argument lambda to method poisson_angu
74  * to deal with the generalized angular Poisson equation:
75  * Lap_ang u + lambda u = source.
76  *
77  * Revision 1.2 2004/11/23 12:54:45 f_limousin
78  * Function poisson_frontiere(...) has two new default arguments,
79  * to deal with the case of a Dirichlet + Neumann boundary condition.
80  *
81  * Revision 1.1 2004/06/22 08:49:58 p_grandclement
82  * Addition of everything needed for using the logarithmic mapping
83  *
84  *
85  * $Header: /cvsroot/Lorene/C++/Source/Map/map_log_pas_fait.C,v 1.15 2025/03/06 09:42:41 j_novak Exp $
86  *
87  */
88 
89 // headers Lorene
90 #include "map.h"
91 
92 namespace Lorene {
93 void pas_fait() {
94  cout << "Function not implemented for Map_log..." << endl ;
95  abort() ;
96 }
97 
98  void Map_log::homothetie (double) {
99  pas_fait() ;
100 }
101 
102  void Map_log::resize (int, double) {
103  pas_fait() ;
104 }
105 
106  void Map_log::adapt (const Cmp&, const Param&, int) {
107  pas_fait();
108 }
109 
110  void Map_log::dsdr (const Cmp&, Cmp&) const {
111  pas_fait() ;
112 }
113 
114  void Map_log::dsdxi (const Cmp&, Cmp&) const {
115  pas_fait() ;
116 }
117 
118  void Map_log::srdsdt (const Cmp&, Cmp&) const {
119  pas_fait() ;
120 }
121 
122  void Map_log::srstdsdp (const Cmp&, Cmp&) const {
123  pas_fait() ;
124 }
125 
126  void Map_log::srdsdt (const Scalar&, Scalar&) const {
127  pas_fait() ;
128 }
129 
130  void Map_log::srstdsdp (const Scalar&, Scalar&) const {
131  pas_fait() ;
132 }
133 
134  void Map_log::dsdt (const Scalar&, Scalar&) const {
135  pas_fait() ;
136 }
137 
138  void Map_log::stdsdp (const Scalar&, Scalar&) const {
139  pas_fait() ;
140 }
141 
142  void Map_log::laplacien (const Cmp&, int, Cmp&) const {
143  pas_fait() ;
144 }
145 
146  void Map_log::laplacien (const Scalar&, int, Scalar&) const {
147  pas_fait() ;
148 }
149 
150  void Map_log::lapang (const Scalar&, Scalar&) const {
151  pas_fait() ;
152 }
153 
154  Tbl* Map_log::integrale (const Scalar&) const {
155  pas_fait() ;
156  return 0x0 ;
157 }
158 
159  Tbl* Map_log::integrale (const Cmp&) const {
160  pas_fait() ;
161  return 0x0 ;
162 }
163 
164  void Map_log::poisson (const Cmp&, Param&, Cmp&) const {
165  pas_fait() ;
166 }
167 
168 void Map_log::poisson_tau (const Cmp&, Param&, Cmp&) const {
169  pas_fait() ;
170 }
171 
172  void Map_log::poisson (const Scalar&, Param&, Scalar&) const {
173  pas_fait() ;
174 }
175 
176 void Map_log::poisson_tau (const Scalar&, Param&, Scalar&) const {
177  pas_fait() ;
178 }
179 
180  void Map_log::poisson_regular (const Cmp&, int, int, double, Param&, Cmp&, Cmp&, Cmp&,
181  Tenseur&, Cmp&, Cmp&) const {
182  pas_fait() ;
183 }
184 
185  void Map_log::poisson_angu (const Scalar&, Param&, Scalar&, double) const {
186  pas_fait() ;
187 }
188 
189  void Map_log::poisson_angu (const Cmp&, Param&, Cmp&, double) const {
190  pas_fait() ;
191 }
192 
194  pas_fait() ;
195  return 0x0 ;
196 }
197 
198  void Map_log::poisson_frontiere (const Cmp&, const Valeur&, int, int, Cmp&, double, double) const {
199  pas_fait() ;
200 }
201 
202  void Map_log::poisson_frontiere_double (const Cmp&, const Valeur&, const Valeur&, int, Cmp&) const {
203  pas_fait() ;
204 }
205 
206  void Map_log::poisson_interne (const Cmp&, const Valeur&, Param&, Cmp&) const {
207  pas_fait() ;
208 }
209 
210  void Map_log::poisson2d (const Cmp&, const Cmp&, Param&, Cmp&) const {
211  pas_fait() ;
212 }
213 
214  void Map_log::dalembert (Param&, Scalar&, const Scalar&, const Scalar&, const Scalar&) const {
215  pas_fait() ;
216 }
217 
218 const Map_af& Map_log::mp_angu(int) const {
219  pas_fait() ;
220  p_mp_angu = new Map_af(*this) ;
221  return *p_mp_angu ;
222 }
223 
224 void Map_log::primr(const Scalar&, Scalar&, bool) const {
225  pas_fait() ;
226 }
227 
228 void Map_log::poisson_falloff(const Cmp&, Param&, Cmp&, int) const {
229  pas_fait() ;
230 }
231 
232 void Map_log::poisson_ylm(const Cmp&, Param&, Cmp&, int, double*) const {
233  pas_fait() ;
234 }
235 }
virtual Tbl * integrale(const Scalar &) const
< Not implemented
Component of a tensorial field *** DEPRECATED : use class Scalar instead ***.
Definition: cmp.h:446
virtual void stdsdp(const Scalar &, Scalar &) const
< Not implemented
Lorene prototypes.
Definition: app_hor.h:67
Tensor field of valence 0 (or component of a tensorial field).
Definition: scalar.h:399
virtual Param * donne_para_poisson_vect(Param &, int) const
< Not implemented
virtual void laplacien(const Scalar &, int, Scalar &) const
< Not implemented
Values and coefficients of a (real-value) function.
Definition: valeur.h:297
Map_af * p_mp_angu
Pointer on the "angular" mapping.
Definition: map.h:742
virtual void srstdsdp(const Cmp &, Cmp &) const
< Not implemented
virtual void dsdt(const Scalar &, Scalar &) const
< Not implemented
virtual void resize(int, double)
< Not implemented
Parameter storage.
Definition: param.h:125
virtual void adapt(const Cmp &, const Param &, int)
< Not implemented
virtual void poisson_interne(const Cmp &, const Valeur &, Param &, Cmp &) const
< Not implemented
virtual void dsdr(const Scalar &ci, Scalar &resu) const
Computes of a Scalar.
virtual void poisson2d(const Cmp &, const Cmp &, Param &, Cmp &) const
< Not implemented
virtual void primr(const Scalar &, Scalar &, bool) const
< Not implemented
virtual void poisson_regular(const Cmp &, int, int, double, Param &, Cmp &, Cmp &, Cmp &, Tenseur &, Cmp &, Cmp &) const
< Not implemented
virtual void poisson_ylm(const Cmp &, Param &, Cmp &, int, double *) const
< Not implemented
virtual void lapang(const Scalar &, Scalar &) const
< Not implemented
virtual void poisson_falloff(const Cmp &, Param &, Cmp &, int) const
< Not implemented
Affine radial mapping.
Definition: map.h:2097
virtual void dalembert(Param &, Scalar &, const Scalar &, const Scalar &, const Scalar &) const
< Not implemented
virtual void homothetie(double)
Sets a new radial scale.
virtual void poisson_angu(const Scalar &, Param &, Scalar &, double=0) const
< Not implemented
virtual void dsdxi(const Scalar &ci, Scalar &resu) const
Computes of a Scalar.
Definition: map_log_deriv.C:57
virtual void poisson(const Cmp &, Param &, Cmp &) const
< Not implemented
Basic array class.
Definition: tbl.h:164
virtual void poisson_frontiere(const Cmp &, const Valeur &, int, int, Cmp &, double=0., double=0.) const
< Not implemented
virtual void poisson_tau(const Cmp &, Param &, Cmp &) const
< Not implemented
virtual void srdsdt(const Cmp &, Cmp &) const
< Not implemented
virtual void poisson_frontiere_double(const Cmp &, const Valeur &, const Valeur &, int, Cmp &) const
< Not implemented
Tensor handling *** DEPRECATED : use class Tensor instead ***.
Definition: tenseur.h:304
virtual const Map_af & mp_angu(int) const
Returns the "angular" mapping for the outside of domain l_zone.