ParMooN
 All Classes Functions Variables Friends Pages
FE_C_Q_Q7_2D.h
1 //************************************************************
2 // Q7 element, conforming, 2D
3 //************************************************************
4 
5 // number of degrees of freedom
6 static int C_Q_Q7_2D_NDOF = 64;
7 
8 // number of dofs on the closure of the joints
9 static int C_Q_Q7_2D_JointDOF = 8;
10 
11 // which local dofs are on the joints
12 static int C_Q_Q7_2D_J0[8] = { 0, 1, 2, 3, 4, 5, 6, 7 };
13 static int C_Q_Q7_2D_J1[8] = { 7, 15, 23, 31, 39, 47, 55, 63 };
14 static int C_Q_Q7_2D_J2[8] = { 63, 62, 61, 60, 59, 58, 57, 56 };
15 static int C_Q_Q7_2D_J3[8] = { 56, 48, 40, 32, 24, 16, 8, 0 };
16 
17 static int *C_Q_Q7_2D_J[8] = { C_Q_Q7_2D_J0, C_Q_Q7_2D_J1,
18  C_Q_Q7_2D_J2, C_Q_Q7_2D_J3 };
19 
20 // number of inner dofs
21 static int C_Q_Q7_2D_NInner = 36;
22 
23 // array containing the numbers for the inner dofs
24 static int C_Q_Q7_2D_Inner[36] = { 9, 10, 11, 12, 13, 14, 17, 18, 19, 20,
25  21, 22, 25, 26, 27, 28, 29, 30, 33, 34,
26  35, 36, 37, 38, 41, 42, 43, 44, 45, 46,
27  49, 50, 51, 52, 53, 54 };
28 
29 // number of outer dofs
30 static int C_Q_Q7_2D_NOuter = 28;
31 
32 // array containing the numbers for the outer dofs
33 static int C_Q_Q7_2D_Outer[28] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 15, 16, 23,
34  24, 31, 32, 39, 40, 47, 48, 55, 56,
35  57, 58, 59, 60, 61, 62, 63 };
36 
37 static char C_Q_Q7_2D_String[] = "C_Q_Q7_2D";
38 
39 TFEDesc2D *FE_C_Q_Q7_2D_Obj=new TFEDesc2D(C_Q_Q7_2D_String, C_Q_Q7_2D_NDOF,
40  C_Q_Q7_2D_JointDOF, C_Q_Q7_2D_J,
41  C_Q_Q7_2D_NInner, C_Q_Q7_2D_Inner,
42  C_Q_Q7_2D_NOuter, C_Q_Q7_2D_Outer);
Definition: FEDesc2D.h:15