ParMooN
 All Classes Functions Variables Friends Pages
FE_D_Q_P1_2D.h
1 // ***********************************************************************
2 // P1 element, discontinous, 2D, quadrilateral
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int D_Q_P1_2D_NDOF = 3;
7 
8 // number of dofs on the closure of the joints
9 static int D_Q_P1_2D_JointDOF = 0;
10 
11 // which local dofs are on the joints
12 static int *D_Q_P1_2D_J0 = NULL;
13 static int *D_Q_P1_2D_J1 = NULL;
14 static int *D_Q_P1_2D_J2 = NULL;
15 static int *D_Q_P1_2D_J3 = NULL;
16 
17 static int *D_Q_P1_2D_J[4] = { D_Q_P1_2D_J0, D_Q_P1_2D_J1,
18  D_Q_P1_2D_J2, D_Q_P1_2D_J3 };
19 
20 // number of inner dofs
21 static int D_Q_P1_2D_NInner = 3;
22 
23 // array containing the numbers for the inner dofs (here is no inner dof)
24 static int D_Q_P1_2D_Inner[3] = { 0, 1, 2 };
25 
26 static char D_Q_P1_2D_String[] = "D_Q_P1_2D";
27 
28 TFEDesc2D *FE_D_Q_P1_2D_Obj=new TFEDesc2D(D_Q_P1_2D_String, D_Q_P1_2D_NDOF, D_Q_P1_2D_JointDOF,
29  D_Q_P1_2D_J, D_Q_P1_2D_NInner, D_Q_P1_2D_Inner);
Definition: FEDesc2D.h:15