ParMooN
 All Classes Functions Variables Friends Pages
FE_C_Q_Q8_2D.h
1 //************************************************************
2 // Q8 element, conforming, 2D
3 //************************************************************
4 
5 // number of degrees of freedom
6 static int C_Q_Q8_2D_NDOF = 81;
7 
8 // number of dofs on the closure of the joints
9 static int C_Q_Q8_2D_JointDOF = 9;
10 
11 // which local dofs are on the joints
12 static int C_Q_Q8_2D_J0[9] = { 0, 1, 2, 3, 4, 5, 6, 7, 8 };
13 static int C_Q_Q8_2D_J1[9] = { 8, 17, 26, 35, 44, 53, 62, 71, 80 };
14 static int C_Q_Q8_2D_J2[9] = { 80, 79, 78, 77, 76, 75, 74, 73, 72 };
15 static int C_Q_Q8_2D_J3[9] = { 72, 63, 54, 45, 36, 27, 18, 9, 0 };
16 
17 static int *C_Q_Q8_2D_J[9] = { C_Q_Q8_2D_J0, C_Q_Q8_2D_J1,
18  C_Q_Q8_2D_J2, C_Q_Q8_2D_J3 };
19 
20 // number of inner dofs
21 static int C_Q_Q8_2D_NInner = 49;
22 
23 // array containing the numbers for the inner dofs
24 static int C_Q_Q8_2D_Inner[49] = { 10, 11, 12, 13, 14, 15, 16, 19, 20, 21,
25  22, 23, 24, 25, 28, 29, 30, 31, 32, 33,
26  34, 37, 38, 39, 40, 41, 42, 43, 46, 47,
27  48, 49, 50, 51, 52, 55, 56, 57, 58, 59,
28  60, 61, 64, 65, 66, 67, 68, 69, 70 };
29 
30 // number of outer dofs
31 static int C_Q_Q8_2D_NOuter = 32;
32 
33 // array containing the numbers for the outer dofs
34 static int C_Q_Q8_2D_Outer[32] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 17, 18,
35  26, 27, 35, 36, 44, 45, 53, 54, 62, 63,
36  71, 72, 73, 74, 75, 76, 77, 78, 79, 80 };
37 
38 static char C_Q_Q8_2D_String[] = "C_Q_Q8_2D";
39 
40 TFEDesc2D *FE_C_Q_Q8_2D_Obj=new TFEDesc2D(C_Q_Q8_2D_String, C_Q_Q8_2D_NDOF,
41  C_Q_Q8_2D_JointDOF, C_Q_Q8_2D_J,
42  C_Q_Q8_2D_NInner, C_Q_Q8_2D_Inner,
43  C_Q_Q8_2D_NOuter, C_Q_Q8_2D_Outer);
Definition: FEDesc2D.h:15