ParMooN
 All Classes Functions Variables Friends Pages
FE_D_H_Q1_3D.h
1 // ***********************************************************************
2 // Q1 element, discontinuous, 3D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int D_H_Q1_3D_NDOF = 8;
7 
8 // number of dofs on the closure of the joints
9 static int D_H_Q1_3D_JointDOF = 0;
10 
11 // which local dofs are on the joints
12 static int *D_H_Q1_3D_J0 = NULL;
13 static int *D_H_Q1_3D_J1 = NULL;
14 static int *D_H_Q1_3D_J2 = NULL;
15 static int *D_H_Q1_3D_J3 = NULL;
16 static int *D_H_Q1_3D_J4 = NULL;
17 static int *D_H_Q1_3D_J5 = NULL;
18 
19 static int *D_H_Q1_3D_J[6] = { D_H_Q1_3D_J0, D_H_Q1_3D_J1,
20  D_H_Q1_3D_J2, D_H_Q1_3D_J3,
21  D_H_Q1_3D_J4, D_H_Q1_3D_J5};
22 
23 // number of inner dofs
24 static int D_H_Q1_3D_NInner = 8;
25 
26 // array containing the numbers for the inner dofs
27 static int D_H_Q1_3D_Inner[] = { 0, 1, 2, 3, 4, 5, 6, 7 };
28 
29 static char D_H_Q1_3D_String[] = "D_H_Q1_3D";
30 
31 TFEDesc3D *FE_D_H_Q1_3D_Obj=new TFEDesc3D(D_H_Q1_3D_String, D_H_Q1_3D_NDOF,
32  D_H_Q1_3D_JointDOF,
33  D_H_Q1_3D_J, D_H_Q1_3D_NInner,
34  D_H_Q1_3D_Inner);
Definition: FEDesc3D.h:19