ParMooN
 All Classes Functions Variables Friends Pages
FE_D_T_P4_2D.h
1 // ***********************************************************************
2 // P4 element, discontinous, 2D, triangle
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int D_T_P4_2D_NDOF = 15;
7 
8 // number of dofs on the closure of the joints
9 static int D_T_P4_2D_JointDOF = 0;
10 
11 // which local dofs are on the joints
12 static int *D_T_P4_2D_J0 = NULL;
13 static int *D_T_P4_2D_J1 = NULL;
14 static int *D_T_P4_2D_J2 = NULL;
15 
16 static int *D_T_P4_2D_J[3] = { D_T_P4_2D_J0, D_T_P4_2D_J1, D_T_P4_2D_J2 };
17 
18 // number of inner dofs
19 static int D_T_P4_2D_NInner = 15;
20 
21 // array containing the numbers for the inner dofs (here is no inner dof)
22 static int D_T_P4_2D_Inner[15] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
23  10, 11, 12, 13, 14 };
24 
25 static char D_T_P4_2D_String[] = "D_T_P4_2D";
26 
27 TFEDesc2D *FE_D_T_P4_2D_Obj=new TFEDesc2D(D_T_P4_2D_String, D_T_P4_2D_NDOF,
28  D_T_P4_2D_JointDOF, D_T_P4_2D_J,
29  D_T_P4_2D_NInner, D_T_P4_2D_Inner);
Definition: FEDesc2D.h:15