LORENE
ope_poisson_2d.C
1 /*
2  * Copyright (c) 2004 Philippe Grandclement
3  *
4  * This file is part of LORENE.
5  *
6  * LORENE is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2
8  * as published by the Free Software Foundation.
9  *
10  * LORENE is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with LORENE; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  */
20 
21 
22 
23 /*
24  * $Id: ope_poisson_2d.C,v 1.3 2016/12/05 16:18:12 j_novak Exp $
25  * $Log: ope_poisson_2d.C,v $
26  * Revision 1.3 2016/12/05 16:18:12 j_novak
27  * Suppression of some global variables (file names, loch, ...) to prevent redefinitions
28  *
29  * Revision 1.2 2014/10/13 08:53:34 j_novak
30  * Lorene classes and functions now belong to the namespace Lorene.
31  *
32  * Revision 1.1 2004/08/24 09:14:47 p_grandclement
33  * Addition of some new operators, like Poisson in 2d... It now requieres the
34  * GSL library to work.
35  *
36  * Also, the way a variable change is stored by a Param_elliptic is changed and
37  * no longer uses Change_var but rather 2 Scalars. The codes using that feature
38  * will requiere some modification. (It should concern only the ones about monopoles)
39  *
40  *
41  * $Header: /cvsroot/Lorene/C++/Source/Ope_elementary/Ope_poisson_2d/ope_poisson_2d.C,v 1.3 2016/12/05 16:18:12 j_novak Exp $
42  *
43  */
44 
45 #include "proto.h"
46 #include "ope_elementary.h"
47 
48 // Standard constructor :
49 namespace Lorene {
50 Ope_poisson_2d::Ope_poisson_2d (int nbr, int baser, double alf, double bet, int lq, int dz):
51  Ope_elementary(nbr, baser, alf, bet), l_quant (lq),
52  dzpuis (dz) {
53 
54  assert ((dzpuis==2) || (dzpuis==3) || (dzpuis==4)) ;
55 }
56 
57 // Constructor by copy :
59  Ope_elementary(so),
60  l_quant (so.l_quant), dzpuis (so.dzpuis) {
61 
62  assert ((dzpuis==2) || (dzpuis==3) || (dzpuis==4)) ;
63 }
64 
65 // Destructor :
67 
69 
70  cout << "inc_l_quant not implemented for this operator." << endl ;
71  abort() ;
72 }
73 
75 
76  cout << "dec_l_quant not implemented for this operator." << endl ;
77  abort() ;
78 }
79 }
int dzpuis
the associated dzpuis, if in the compactified domain.
Lorene prototypes.
Definition: app_hor.h:67
virtual void dec_l_quant()
Decreases the quatum number l by one unit.
virtual ~Ope_poisson_2d()
Destructor.
virtual void inc_l_quant()
Increases the quatum number l by one unit.
Class for the operator of the Poisson equation in 2D.
Ope_poisson_2d(int nbr, int baser, double alf, double bet, int lq, int dz)
Standard constructor.
Basic class for elementary elliptic operators.