ParMooN
 All Classes Functions Variables Friends Pages
FE_C_T_P3_3D.h
1 // ***********************************************************************
2 // P3 element, conforming, 3D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int C_T_P3_3D_NDOF = 20;
7 
8 // number of dofs on the closure of the joints
9 static int C_T_P3_3D_JointDOF = 10;
10 
11 // which local dofs are on the joints
12 static int C_T_P3_3D_J0[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
13 static int C_T_P3_3D_J1[10] = { 0, 10, 16, 19, 1, 11, 17, 2, 12, 3 };
14 static int C_T_P3_3D_J2[10] = { 9, 8, 6, 3, 15, 14, 12, 18, 17, 19 };
15 static int C_T_P3_3D_J3[10] = { 0, 4, 7, 9, 10, 13, 15, 16, 18, 19 };
16 
17 static int *C_T_P3_3D_J[4] = { C_T_P3_3D_J0, C_T_P3_3D_J1,
18  C_T_P3_3D_J2, C_T_P3_3D_J3 };
19 
20 // number of inner dofs
21 static int C_T_P3_3D_NInner = 0;
22 
23 // array containing the numbers for the inner dofs (here is no inner dof)
24 static int *C_T_P3_3D_Inner = NULL;
25 
26 static char C_T_P3_3D_String[] = "C_T_P3_3D";
27 
28 TFEDesc3D *FE_C_T_P3_3D_Obj=new TFEDesc3D(C_T_P3_3D_String, C_T_P3_3D_NDOF,
29  C_T_P3_3D_JointDOF,
30  C_T_P3_3D_J, C_T_P3_3D_NInner, C_T_P3_3D_Inner);
Definition: FEDesc3D.h:19