ParMooN
 All Classes Functions Variables Friends Pages
StructureNSE3D.h
1 // =======================================================================
2 // @(#)StructureNSE3D.h 1.6 09/14/99
3 //
4 // Class: TStructureStokes3D
5 //
6 // Purpose: build and store matrix for (Navier-)Stokes equations in 3D
7 //
8 // Author: Gunar Matthies
9 //
10 // History: 29.07.2005 start implementation
11 //
12 // =======================================================================
13 
14 #ifndef __STRUCTURENSE3D__
15 #define __STRUCTURENSE3D__
16 
17 #include <SquareStructure3D.h>
18 
20 {
21  protected:
23  int *BeginJb;
24 
26  int *jb;
27 
30 
32  double *Alpha;
33 
34  void GenerateAlpha();
35 
36  public:
39 
42 
43  int *GetBeginJb()
44  { return BeginJb; }
45 
46  int *GetJb()
47  { return jb; }
48 
49  int GetN_DOFperJoint()
50  { return N_DOFperJoint; }
51 
52  double *GetAlpha()
53  { return Alpha; }
54 
55 };
56 
57 #endif
double * Alpha
Definition: StructureNSE3D.h:32
Definition: FESpace3D.h:22
int * BeginJb
Definition: StructureNSE3D.h:23
Definition: StructureNSE3D.h:19
int * jb
Definition: StructureNSE3D.h:26
int N_DOFperJoint
Definition: StructureNSE3D.h:29
Definition: SquareStructure3D.h:20
TStructureNSE3D(TFESpace3D *space)