ParMooN
 All Classes Functions Variables Friends Pages
FE_C_H_UL2_3D.h
1 // ***********************************************************************
2 // Q2 element with bubbles, conforming, 3D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int C_H_UL2_3D_NDOF = 30;
7 
8 // number of dofs on the closure of the joints
9 static int C_H_UL2_3D_JointDOF = 9;
10 
11 // which local dofs are on the joints
12 static int C_H_UL2_3D_J0[9] = { 0, 1, 2, 3, 4, 5, 6, 7, 8 };
13 static int C_H_UL2_3D_J1[9] = { 0, 9, 17, 1, 10, 18, 2, 11, 19 };
14 static int C_H_UL2_3D_J2[9] = { 2, 11, 19, 5, 12, 22, 8, 13, 25 };
15 static int C_H_UL2_3D_J3[9] = { 8, 13, 25, 7, 14, 24, 6, 15, 23 };
16 static int C_H_UL2_3D_J4[9] = { 0, 3, 6, 9, 16, 15, 17, 20, 23 };
17 static int C_H_UL2_3D_J5[9] = { 17, 20, 23, 18, 21, 24, 19, 22, 25 };
18 
19 static int *C_H_UL2_3D_J[6] = { C_H_UL2_3D_J0, C_H_UL2_3D_J1,
20  C_H_UL2_3D_J2, C_H_UL2_3D_J3,
21  C_H_UL2_3D_J4, C_H_UL2_3D_J5};
22 
23 // number of inner dofs
24 static int C_H_UL2_3D_NInner = 4;
25 
26 // array containing the numbers for the inner dofs
27 static int C_H_UL2_3D_Inner[4] = { 26, 27, 28, 29 };
28 
29 // number of outer dof
30 static int C_H_UL2_3D_NOuter = 26;
31 
32 // array containing the numbers for the outer dofs
33 static int C_H_UL2_3D_Outer[26] = { 0, 1, 2, 3, 4, 5, 6, 7, 8,
34  9, 10, 11, 12, 13, 14, 15, 16, 17,
35  18, 19, 20, 21, 22, 23, 24, 25 };
36 
37 static char C_H_UL2_3D_String[] = "C_H_UL2_3D";
38 
39 TFEDesc3D *FE_C_H_UL2_3D_Obj=new TFEDesc3D(C_H_UL2_3D_String, C_H_UL2_3D_NDOF,
40  C_H_UL2_3D_JointDOF,
41  C_H_UL2_3D_J,
42  C_H_UL2_3D_NInner, C_H_UL2_3D_Inner,
43  C_H_UL2_3D_NOuter, C_H_UL2_3D_Outer);
Definition: FEDesc3D.h:19