ParMooN
 All Classes Functions Variables Friends Pages
FE_C_Q_UL6S_2D.h
1 // ***********************************************************************
2 // UL6S element, conforming, 2D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int C_Q_UL6S_2D_NDOF = 42;
7 
8 // number of dofs on the closure of the joints
9 static int C_Q_UL6S_2D_JointDOF = 7;
10 
11 // which local dofs are on the joints
12 static int C_Q_UL6S_2D_J0[7] = { 0, 1, 2, 3, 4, 5, 6 };
13 static int C_Q_UL6S_2D_J1[7] = { 6, 7, 8, 9, 10, 11, 12 };
14 static int C_Q_UL6S_2D_J2[7] = { 12, 13, 14, 15, 16, 17, 18 };
15 static int C_Q_UL6S_2D_J3[7] = { 18, 19, 20, 21, 22, 23, 0 };
16 
17 static int *C_Q_UL6S_2D_J[4] = { C_Q_UL6S_2D_J0, C_Q_UL6S_2D_J1,
18  C_Q_UL6S_2D_J2, C_Q_UL6S_2D_J3 };
19 
20 // number of inner dofs
21 static int C_Q_UL6S_2D_NInner = 18;
22 
23 // array containing the numbers for the inner dofs
24 static int C_Q_UL6S_2D_Inner[18] = { 24, 25, 26, 27, 28, 29, 30, 31,
25  32, 33, 34, 35, 36, 37, 38, 39,
26  40, 41 };
27 
28 // number of outer dofs
29 static int C_Q_UL6S_2D_NOuter = 24;
30 
31 // array containing the numbers for the outer dofs
32 static int C_Q_UL6S_2D_Outer[24] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
33  10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
34  20, 21, 22, 23 };
35 
36 static char C_Q_UL6S_2D_String[] = "C_Q_UL6S_2D";
37 
38 TFEDesc2D *FE_C_Q_UL6S_2D_Obj=new TFEDesc2D(C_Q_UL6S_2D_String, C_Q_UL6S_2D_NDOF,
39  C_Q_UL6S_2D_JointDOF, C_Q_UL6S_2D_J,
40  C_Q_UL6S_2D_NInner, C_Q_UL6S_2D_Inner,
41  C_Q_UL6S_2D_NOuter, C_Q_UL6S_2D_Outer);
Definition: FEDesc2D.h:15