ParMooN
 All Classes Functions Variables Friends Pages
Example_CD2D.h
1 
15 #ifndef __EXAMPLE_CD2D__
16 #define __EXAMPLE_CD2D__
17 
18 #include<Example2D.h>
19 
20 
21 class Example_CD2D : public Example2D
22 {
23  public:
29  Example_CD2D();
30 
35  Example_CD2D(std::vector <DoubleFunct2D*> exact,
36  std::vector <BoundCondFunct2D*> bc,
37  std::vector <BoundValueFunct2D*> bd, CoeffFct2D *coeffs)
38  : Example2D(exact, bc, bd, coeffs) {};
39 
40  ~Example_CD2D(){};
41 };
42 
43 
44 #endif // __EXAMPLE_CD2D__
store all functions needed to describe a convection–diffusion example
Definition: Example_CD2D.h:21
Example_CD2D(std::vector< DoubleFunct2D * > exact, std::vector< BoundCondFunct2D * > bc, std::vector< BoundValueFunct2D * > bd, CoeffFct2D *coeffs)
initialize your own example
Definition: Example_CD2D.h:35
Example_CD2D()
default constructor
Definition: Example_CD2D.C:26
store all functions needed to describe an example
Definition: Example2D.h:26