ParMooN
 All Classes Functions Variables Friends Pages
Example_Darcy2D.h
1 
16 #ifndef __EXAMPLE_DARCY2D__
17 #define __EXAMPLE_DARCY2D__
18 
19 #include<Example2D.h>
20 
21 
22 class Example_Darcy2D : public Example2D
23 {
24  public:
31 
36  Example_Darcy2D(std::vector <DoubleFunct2D*> exact,
37  std::vector <BoundCondFunct2D*> bc,
38  std::vector <BoundValueFunct2D*> bd, CoeffFct2D *coeffs)
39  : Example2D(exact, bc, bd, coeffs) {};
40 
41  ~Example_Darcy2D(){};
42 };
43 
44 
45 #endif // __EXAMPLE_DARCY2D__
store all functions needed to describe a Darcy example using vector valued basis functions.
Definition: Example_Darcy2D.h:22
Example_Darcy2D(std::vector< DoubleFunct2D * > exact, std::vector< BoundCondFunct2D * > bc, std::vector< BoundValueFunct2D * > bd, CoeffFct2D *coeffs)
initialize your own example
Definition: Example_Darcy2D.h:36
Example_Darcy2D()
default constructor
Definition: Example_Darcy2D.C:33
store all functions needed to describe an example
Definition: Example2D.h:26