ParMooN
 All Classes Functions Variables Friends Pages
FE_C_H_Q0_3D.h
1 // ***********************************************************************
2 // Q0 element, discontinuous, 3D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int C_H_Q0_3D_NDOF = 1;
7 
8 // number of dofs on the closure of the joints
9 static int C_H_Q0_3D_JointDOF = 0;
10 
11 // which local dofs are on the joints
12 static int *C_H_Q0_3D_J0 = NULL;
13 static int *C_H_Q0_3D_J1 = NULL;
14 static int *C_H_Q0_3D_J2 = NULL;
15 static int *C_H_Q0_3D_J3 = NULL;
16 static int *C_H_Q0_3D_J4 = NULL;
17 static int *C_H_Q0_3D_J5 = NULL;
18 
19 static int *C_H_Q0_3D_J[6] = { C_H_Q0_3D_J0, C_H_Q0_3D_J1,
20  C_H_Q0_3D_J2, C_H_Q0_3D_J3,
21  C_H_Q0_3D_J4, C_H_Q0_3D_J5};
22 
23 // number of inner dofs
24 static int C_H_Q0_3D_NInner = 1;
25 
26 // array containing the numbers for the inner dofs
27 static int C_H_Q0_3D_Inner[1] = { 0 };
28 
29 #ifdef _MPI
30 // number of dofs on the closure of the edges
31 static int C_H_Q0_3D_EdgeDOF = 0;
32 
33 // which local dofs are on the joints
34 static int *C_H_Q0_3D_E0 = NULL;
35 static int *C_H_Q0_3D_E1 = NULL;
36 static int *C_H_Q0_3D_E2 = NULL;
37 static int *C_H_Q0_3D_E3 = NULL;
38 
39 static int *C_H_Q0_3D_E4 = NULL;
40 static int *C_H_Q0_3D_E5 = NULL;
41 static int *C_H_Q0_3D_E6 = NULL;
42 static int *C_H_Q0_3D_E7 = NULL;
43 
44 static int *C_H_Q0_3D_E8 = NULL;
45 static int *C_H_Q0_3D_E9 = NULL;
46 static int *C_H_Q0_3D_E10 = NULL;
47 static int *C_H_Q0_3D_E11 = NULL;
48 
49 static int *C_H_Q0_3D_E[12] = { C_H_Q0_3D_E0, C_H_Q0_3D_E1, C_H_Q0_3D_E2, C_H_Q0_3D_E3,
50  C_H_Q0_3D_E4, C_H_Q0_3D_E5, C_H_Q0_3D_E6, C_H_Q0_3D_E7,
51  C_H_Q0_3D_E8, C_H_Q0_3D_E9, C_H_Q0_3D_E10, C_H_Q0_3D_E11};
52 
53 // number of dofs on the closure of the vertices
54 static int C_H_Q0_3D_VertDOF = 0;
55 
56 // array containing the numbers for the vertices dofs
57 static int *C_H_Q0_3D_Vert = NULL;
58 
59 #endif
60 
61 
62 static char C_H_Q0_3D_String[] = "C_H_Q0_3D";
63 
64 TFEDesc3D *FE_C_H_Q0_3D_Obj=new TFEDesc3D(C_H_Q0_3D_String, C_H_Q0_3D_NDOF,
65  C_H_Q0_3D_JointDOF,
66  C_H_Q0_3D_J, C_H_Q0_3D_NInner, C_H_Q0_3D_Inner
67 #ifdef _MPI
68  ,C_H_Q0_3D_EdgeDOF, C_H_Q0_3D_E, C_H_Q0_3D_VertDOF,
69  C_H_Q0_3D_Vert
70 #endif
71  );
72 
Definition: FEDesc3D.h:19