ParMooN
 All Classes Functions Variables Friends Pages
FE_N_H_Q1_3D.h
1 // ***********************************************************************
2 // Q1Rot element, nonconforming, 3D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int N_H_Q1_3D_NDOF = 6;
7 
8 // number of dofs on the closure of the joints
9 static int N_H_Q1_3D_JointDOF = 1;
10 
11 // which local dofs are on the joints
12 static int N_H_Q1_3D_J0[1] = { 0 };
13 static int N_H_Q1_3D_J1[1] = { 1 };
14 static int N_H_Q1_3D_J2[1] = { 2 };
15 static int N_H_Q1_3D_J3[1] = { 3 };
16 static int N_H_Q1_3D_J4[1] = { 4 };
17 static int N_H_Q1_3D_J5[1] = { 5 };
18 
19 static int *N_H_Q1_3D_J[6] = { N_H_Q1_3D_J0, N_H_Q1_3D_J1,
20  N_H_Q1_3D_J2, N_H_Q1_3D_J3,
21  N_H_Q1_3D_J4, N_H_Q1_3D_J5};
22 
23 // number of inner dofs
24 static int N_H_Q1_3D_NInner = 0;
25 
26 // array containing the numbers for the inner dofs (here is no inner dof)
27 static int *N_H_Q1_3D_Inner = NULL;
28 
29 #ifdef _MPI
30 // number of dofs on the closure of the edges
31 static int C_N_Q1_3D_EdgeDOF = 0;
32 
33 // which local dofs are on the joints
34 static int *C_N_Q1_3D_E0 = NULL;
35 static int *C_N_Q1_3D_E1 = NULL;
36 static int *C_N_Q1_3D_E2 = NULL;
37 static int *C_N_Q1_3D_E3 = NULL;
38 
39 static int *C_N_Q1_3D_E4 = NULL;
40 static int *C_N_Q1_3D_E5 = NULL;
41 static int *C_N_Q1_3D_E6 = NULL;
42 static int *C_N_Q1_3D_E7 = NULL;
43 
44 static int *C_N_Q1_3D_E8 = NULL;
45 static int *C_N_Q1_3D_E9 = NULL;
46 static int *C_N_Q1_3D_E10 = NULL;
47 static int *C_N_Q1_3D_E11 = NULL;
48 
49 static int *C_N_Q1_3D_E[12] = { C_N_Q1_3D_E0, C_N_Q1_3D_E1, C_N_Q1_3D_E2, C_N_Q1_3D_E3,
50  C_N_Q1_3D_E4, C_N_Q1_3D_E5, C_N_Q1_3D_E6, C_N_Q1_3D_E7,
51  C_N_Q1_3D_E8, C_N_Q1_3D_E9, C_N_Q1_3D_E10, C_N_Q1_3D_E11};
52 
53 // number of dofs on the closure of the vertices
54 static int C_N_Q1_3D_VertDOF = 0;
55 
56 // array containing the numbers for the vertices dofs
57 static int *C_N_Q1_3D_Vert = NULL;
58 
59 #endif
60 
61 static char N_H_Q1_3D_String[] = "N_H_Q1_3D";
62 
63 TFEDesc3D *FE_N_H_Q1_3D_Obj=new TFEDesc3D(N_H_Q1_3D_String, N_H_Q1_3D_NDOF,
64  N_H_Q1_3D_JointDOF,
65  N_H_Q1_3D_J, N_H_Q1_3D_NInner, N_H_Q1_3D_Inner
66 #ifdef _MPI
67  ,C_N_Q1_3D_EdgeDOF, C_N_Q1_3D_E, C_N_Q1_3D_VertDOF,
68  C_N_Q1_3D_Vert
69 #endif
70 
71 );
Definition: FEDesc3D.h:19