ParMooN
 All Classes Functions Variables Friends Pages
FE_C_H_UL1_3D.h
1 // ***********************************************************************
2 // Q1 element with bubble, conforming, 3D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int C_H_UL1_3D_NDOF = 9;
7 
8 // number of dofs on the closure of the joints
9 static int C_H_UL1_3D_JointDOF = 4;
10 
11 // which local dofs are on the joints
12 static int C_H_UL1_3D_J0[4] = { 0, 1, 2, 3 };
13 static int C_H_UL1_3D_J1[4] = { 0, 4, 1, 5 };
14 static int C_H_UL1_3D_J2[4] = { 1, 5, 3, 7 };
15 static int C_H_UL1_3D_J3[4] = { 3, 7, 2, 6 };
16 static int C_H_UL1_3D_J4[4] = { 0, 2, 4, 6 };
17 static int C_H_UL1_3D_J5[4] = { 4, 6, 5, 7 };
18 
19 static int *C_H_UL1_3D_J[6] = { C_H_UL1_3D_J0, C_H_UL1_3D_J1,
20  C_H_UL1_3D_J2, C_H_UL1_3D_J3,
21  C_H_UL1_3D_J4, C_H_UL1_3D_J5};
22 
23 // number of inner dofs
24 static int C_H_UL1_3D_NInner = 1;
25 
26 // array containing the numbers for the inner dofs
27 static int C_H_UL1_3D_Inner[1] = { 8};
28 
29 // number of outer dof
30 static int C_H_UL1_3D_NOuter = 8;
31 
32 // array containing the numbers for the outer dofs
33 static int C_H_UL1_3D_Outer[8] = { 0, 1, 2, 3, 4, 5, 6, 7};
34 
35 static char C_H_UL1_3D_String[] = "C_H_UL1_3D";
36 
37 TFEDesc3D *FE_C_H_UL1_3D_Obj=new TFEDesc3D(C_H_UL1_3D_String, C_H_UL1_3D_NDOF,
38  C_H_UL1_3D_JointDOF,
39  C_H_UL1_3D_J,
40  C_H_UL1_3D_NInner, C_H_UL1_3D_Inner,
41  C_H_UL1_3D_NOuter, C_H_UL1_3D_Outer);
Definition: FEDesc3D.h:19