ParMooN
 All Classes Functions Variables Friends Pages
Example_NSE2D.h
1 
14 #ifndef __EXAMPLE_NSE2D__
15 #define __EXAMPLE_NSE2D__
16 
17 #include<Example2D.h>
18 
19 
20 class Example_NSE2D : public Example2D
21 {
22  public:
28  Example_NSE2D();
33  Example_NSE2D(std::vector <DoubleFunct2D*> exact,
34  std::vector <BoundCondFunct2D*> bc,
35  std::vector <BoundValueFunct2D*> bd, CoeffFct2D *coeffs)
36  : Example2D(exact, bc, bd, coeffs) {};
37 
38  ~Example_NSE2D(){};
39 };
40 
41 
42 #endif // __EXAMPLE_NSE2D__
Example_NSE2D()
default constructor
Definition: Example_NSE2D.C:27
store all functions needed to describe a (Navier-)Stokes example
Definition: Example_NSE2D.h:20
Example_NSE2D(std::vector< DoubleFunct2D * > exact, std::vector< BoundCondFunct2D * > bc, std::vector< BoundValueFunct2D * > bd, CoeffFct2D *coeffs)
initialize your own example
Definition: Example_NSE2D.h:33
store all functions needed to describe an example
Definition: Example2D.h:26