ParMooN
 All Classes Functions Variables Friends Pages
FE_C_Q_Q9_2D.h
1 //************************************************************
2 // Q9 element, conforming, 2D
3 //************************************************************
4 
5 // number of degrees of freedom
6 static int C_Q_Q9_2D_NDOF = 100;
7 
8 // number of dofs on the closure of the joints
9 static int C_Q_Q9_2D_JointDOF = 10;
10 
11 // which local dofs are on the joints
12 static int C_Q_Q9_2D_J0[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
13 static int C_Q_Q9_2D_J1[10] = { 9, 19, 29, 39, 49, 59, 69, 79, 89, 99 };
14 static int C_Q_Q9_2D_J2[10] = { 99, 98, 97, 96, 95, 94, 93, 92, 92, 90 };
15 static int C_Q_Q9_2D_J3[10] = { 90, 80, 70, 60, 50, 40, 30, 20, 10, 0 };
16 
17 static int *C_Q_Q9_2D_J[10] = { C_Q_Q9_2D_J0, C_Q_Q9_2D_J1,
18  C_Q_Q9_2D_J2, C_Q_Q9_2D_J3 };
19 
20 // number of inner dofs
21 static int C_Q_Q9_2D_NInner = 64;
22 
23 // array containing the numbers for the inner dofs
24 static int C_Q_Q9_2D_Inner[64] = { 11, 12, 13, 14, 15, 16, 17, 18, 21, 22,
25  23, 24, 25, 26, 27, 28, 31, 32, 33, 34,
26  35, 36, 37, 38, 41, 42, 43, 44, 45, 46,
27  47, 48, 51, 52, 53, 54, 55, 56, 57, 58,
28  61, 62, 63, 64, 65, 66, 67, 68, 71, 72,
29  73, 74, 75, 76 ,77, 78, 81, 82, 83, 84,
30  85, 86, 87, 88 };
31 
32 // number of outer dofs
33 static int C_Q_Q9_2D_NOuter = 36;
34 
35 // array containing the numbers for the outer dofs
36 static int C_Q_Q9_2D_Outer[36] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
37  19, 20, 29, 30, 39, 40, 49, 50, 59, 60,
38  69, 70, 79, 80, 89, 90, 91, 92, 93, 94,
39  95, 96, 97, 98, 99 };
40 
41 
42 
43 static char C_Q_Q9_2D_String[] = "C_Q_Q9_2D";
44 
45 TFEDesc2D *FE_C_Q_Q9_2D_Obj=new TFEDesc2D(C_Q_Q9_2D_String, C_Q_Q9_2D_NDOF,
46  C_Q_Q9_2D_JointDOF, C_Q_Q9_2D_J,
47  C_Q_Q9_2D_NInner, C_Q_Q9_2D_Inner,
48  C_Q_Q9_2D_NOuter, C_Q_Q9_2D_Outer);
Definition: FEDesc2D.h:15