ParMooN
 All Classes Functions Variables Friends Pages
FE_C_T_P6_2D.h
1 // ***********************************************************************
2 // conforming P6 element
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int C_T_P6_2D_NDOF = 28;
7 
8 // number of dofs on the closure of the joints
9 static int C_T_P6_2D_JointDOF = 7;
10 
11 // which local dofs are on the joints
12 static int C_T_P6_2D_J0[7] = { 0, 1, 2, 3, 4, 5, 6 };
13 static int C_T_P6_2D_J1[7] = { 6, 12, 17, 21, 24, 26, 27 };
14 static int C_T_P6_2D_J2[7] = { 27, 25, 22, 18, 13, 7, 0 };
15 
16 static int *C_T_P6_2D_J[3] = { C_T_P6_2D_J0, C_T_P6_2D_J1,
17  C_T_P6_2D_J2 };
18 
19 // number of inner dofs
20 static int C_T_P6_2D_NInner = 10;
21 
22 // array containing the numbers for the inner dofs
23 static int C_T_P6_2D_Inner[10] = { 8, 9, 10, 11, 14, 15, 16, 19, 20, 23 };
24 
25 // number of outer dofs
26 static int C_T_P6_2D_NOuter = 18;
27 
28 // array containing the numbers for the outer dofs
29 static int C_T_P6_2D_Outer[18] = { 0, 1, 2, 3, 4, 5,
30  6, 12, 17, 21, 24, 26,
31  27, 25, 18, 13, 7, 0 };
32 
33 static char C_T_P6_2D_String[] = "C_T_P6_2D";
34 
35 TFEDesc2D *FE_C_T_P6_2D_Obj=new TFEDesc2D(C_T_P6_2D_String, C_T_P6_2D_NDOF,
36  C_T_P6_2D_JointDOF, C_T_P6_2D_J,
37  C_T_P6_2D_NInner, C_T_P6_2D_Inner,
38  C_T_P6_2D_NOuter, C_T_P6_2D_Outer);
Definition: FEDesc2D.h:15