ParMooN
 All Classes Functions Variables Friends Pages
FE_D_Q_P7_2D.h
1 // ***********************************************************************
2 // P7 element, discontinous, 2D, quadrilateral
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int D_Q_P7_2D_NDOF = 36;
7 
8 // number of dofs on the closure of the joints
9 static int D_Q_P7_2D_JointDOF = 0;
10 
11 // which local dofs are on the joints
12 static int *D_Q_P7_2D_J0 = NULL;
13 static int *D_Q_P7_2D_J1 = NULL;
14 static int *D_Q_P7_2D_J2 = NULL;
15 static int *D_Q_P7_2D_J3 = NULL;
16 
17 static int *D_Q_P7_2D_J[4] = { D_Q_P7_2D_J0, D_Q_P7_2D_J1,
18  D_Q_P7_2D_J2, D_Q_P7_2D_J3 };
19 
20 // number of inner dofs
21 static int D_Q_P7_2D_NInner = 36;
22 
23 // array containing the numbers for the inner dofs (here is no inner dof)
24 static int D_Q_P7_2D_Inner[36] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
25  10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
26  20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
27  30, 31, 32, 33, 34, 35 };
28 
29 static char D_Q_P7_2D_String[] = "D_Q_P7_2D";
30 
31 TFEDesc2D *FE_D_Q_P7_2D_Obj=new TFEDesc2D(D_Q_P7_2D_String, D_Q_P7_2D_NDOF,
32  D_Q_P7_2D_JointDOF,
33  D_Q_P7_2D_J, D_Q_P7_2D_NInner, D_Q_P7_2D_Inner);
Definition: FEDesc2D.h:15