ParMooN
 All Classes Functions Variables Friends Pages
FE_D_H_Q2_3D.h
1 // ***********************************************************************
2 // Q2 element, discontinuous, 3D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int D_H_Q2_3D_NDOF = 27;
7 
8 // number of dofs on the closure of the joints
9 static int D_H_Q2_3D_JointDOF = 0;
10 
11 // which local dofs are on the joints
12 static int *D_H_Q2_3D_J0 = NULL;
13 static int *D_H_Q2_3D_J1 = NULL;
14 static int *D_H_Q2_3D_J2 = NULL;
15 static int *D_H_Q2_3D_J3 = NULL;
16 static int *D_H_Q2_3D_J4 = NULL;
17 static int *D_H_Q2_3D_J5 = NULL;
18 
19 static int *D_H_Q2_3D_J[6] = { D_H_Q2_3D_J0, D_H_Q2_3D_J1,
20  D_H_Q2_3D_J2, D_H_Q2_3D_J3,
21  D_H_Q2_3D_J4, D_H_Q2_3D_J5};
22 
23 // number of inner dofs
24 static int D_H_Q2_3D_NInner = 27;
25 
26 // array containing the numbers for the inner dofs (here is no inner dof)
27 static int D_H_Q2_3D_Inner[] = { 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,
28  18,19,20,21,22,23,24,25,26};
29 
30 static char D_H_Q2_3D_String[] = "D_H_Q2_3D";
31 
32 TFEDesc3D *FE_D_H_Q2_3D_Obj=new TFEDesc3D(D_H_Q2_3D_String, D_H_Q2_3D_NDOF,
33  D_H_Q2_3D_JointDOF,
34  D_H_Q2_3D_J, D_H_Q2_3D_NInner,
35  D_H_Q2_3D_Inner);
Definition: FEDesc3D.h:19