ParMooN
 All Classes Functions Variables Friends Pages
FE_C_Q_Q5_2D.h
1 //************************************************************
2 // Q5 element, conforming, 2D
3 //************************************************************
4 
5 // number of degrees of freedom
6 static int C_Q_Q5_2D_NDOF = 36;
7 
8 // number of dofs on the closure of the joints
9 static int C_Q_Q5_2D_JointDOF = 6;
10 
11 // which local dofs are on the joints
12 static int C_Q_Q5_2D_J0[6] = { 0, 1, 2, 3, 4, 5 };
13 static int C_Q_Q5_2D_J1[6] = { 5, 11, 17, 23, 29, 35 };
14 static int C_Q_Q5_2D_J2[6] = { 35, 34, 33, 32, 31, 30 };
15 static int C_Q_Q5_2D_J3[6] = { 30, 24, 18, 12, 6, 0 };
16 
17 static int *C_Q_Q5_2D_J[6] = { C_Q_Q5_2D_J0, C_Q_Q5_2D_J1,
18  C_Q_Q5_2D_J2, C_Q_Q5_2D_J3 };
19 
20 // number of inner dofs
21 static int C_Q_Q5_2D_NInner = 16;
22 
23 // array containing the numbers for the inner dofs
24 static int C_Q_Q5_2D_Inner[16] = { 7, 8, 9, 10, 13, 14, 15, 16, 19, 20,
25  21, 22, 25, 26, 27, 28 };
26 
27 // number of outer dofs
28 static int C_Q_Q5_2D_NOuter = 20;
29 
30 // array containing the numbers for the inner dofs
31 static int C_Q_Q5_2D_Outer[20] = { 0, 1, 2, 3, 4, 5, 6, 11, 12, 17, 18,
32  23, 24, 29, 30, 31, 32, 33, 34, 35 };
33 
34 
35 static char C_Q_Q5_2D_String[] = "C_Q_Q5_2D";
36 
37 TFEDesc2D *FE_C_Q_Q5_2D_Obj=new TFEDesc2D(C_Q_Q5_2D_String, C_Q_Q5_2D_NDOF,
38  C_Q_Q5_2D_JointDOF, C_Q_Q5_2D_J,
39  C_Q_Q5_2D_NInner, C_Q_Q5_2D_Inner,
40  C_Q_Q5_2D_NOuter, C_Q_Q5_2D_Outer);
Definition: FEDesc2D.h:15