ParMooN
 All Classes Functions Variables Friends Pages
FE_C_H_Q00_3D.h
1 // ***********************************************************************
2 // Q00 element, discontinuous, 3D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int C_H_Q00_3D_NDOF = 1;
7 
8 // number of dofs on the closure of the joints
9 static int C_H_Q00_3D_JointDOF = 0;
10 
11 // which local dofs are on the joints
12 static int *C_H_Q00_3D_J0 = NULL;
13 static int *C_H_Q00_3D_J1 = NULL;
14 static int *C_H_Q00_3D_J2 = NULL;
15 static int *C_H_Q00_3D_J3 = NULL;
16 static int *C_H_Q00_3D_J4 = NULL;
17 static int *C_H_Q00_3D_J5 = NULL;
18 
19 static int *C_H_Q00_3D_J[6] = { C_H_Q00_3D_J0, C_H_Q00_3D_J1,
20  C_H_Q00_3D_J2, C_H_Q00_3D_J3,
21  C_H_Q00_3D_J4, C_H_Q00_3D_J5};
22 
23 // number of inner dofs
24 static int C_H_Q00_3D_NInner = 1;
25 
26 // array containing the numbers for the inner dofs
27 static int C_H_Q00_3D_Inner[1] = { 0 };
28 
29 static char C_H_Q00_3D_String[] = "C_H_Q00_3D";
30 
31 TFEDesc3D *FE_C_H_Q00_3D_Obj=new TFEDesc3D(C_H_Q00_3D_String, C_H_Q00_3D_NDOF,
32  C_H_Q00_3D_JointDOF,
33  C_H_Q00_3D_J, C_H_Q00_3D_NInner, C_H_Q00_3D_Inner);
Definition: FEDesc3D.h:19