ParMooN
 All Classes Functions Variables Friends Pages
FE_C_T_UL5_2D.h
1 //************************************************************
2 // P5 element with bubbles, conforming, 2D
3 //************************************************************
4 
5 // number of degrees of freedom
6 static int C_T_UL5_2D_NDOF = 30;
7 
8 // number of dofs on the closure of the joints
9 static int C_T_UL5_2D_JointDOF = 6;
10 
11 // which local dofs are on the joints
12 static int C_T_UL5_2D_J0[6] = { 0, 1, 2, 3, 4, 5 };
13 static int C_T_UL5_2D_J1[6] = { 5, 6, 7, 8, 9, 10 };
14 static int C_T_UL5_2D_J2[6] = { 10, 11, 12, 13, 14, 0 };
15 
16 static int *C_T_UL5_2D_J[3] = { C_T_UL5_2D_J0, C_T_UL5_2D_J1,
17  C_T_UL5_2D_J2 };
18 
19 // number of inner dofs
20 static int C_T_UL5_2D_NInner = 15;
21 
22 // array containing the numbers for the inner dofs
23 static int C_T_UL5_2D_Inner[15] = { 15, 16, 17, 18, 19, 20, 21, 22, 23,
24  24, 25, 26, 27, 28, 29 };
25 
26 // number of outer dofs
27 static int C_T_UL5_2D_NOuter = 15;
28 
29 // array containing the numbers for the inner dofs
30 static int C_T_UL5_2D_Outer[15] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
31  12, 13, 14 };
32 
33 static char C_T_UL5_2D_String[] = "C_T_UL5_2D";
34 
35 TFEDesc2D *FE_C_T_UL5_2D_Obj=new TFEDesc2D(C_T_UL5_2D_String, C_T_UL5_2D_NDOF,
36  C_T_UL5_2D_JointDOF, C_T_UL5_2D_J,
37  C_T_UL5_2D_NInner, C_T_UL5_2D_Inner,
38  C_T_UL5_2D_NOuter, C_T_UL5_2D_Outer);
Definition: FEDesc2D.h:15