ParMooN
 All Classes Functions Variables Friends Pages
FE_N_T_P1_3D.h
1 // ***********************************************************************
2 // P1 element, nonconforming, 3D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int N_T_P1_3D_NDOF = 4;
7 
8 // number of dofs on the closure of the joints
9 static int N_T_P1_3D_JointDOF = 1;
10 
11 // which local dofs are on the joints
12 static int N_T_P1_3D_J0[1] = { 0 };
13 static int N_T_P1_3D_J1[1] = { 1 };
14 static int N_T_P1_3D_J2[1] = { 2 };
15 static int N_T_P1_3D_J3[1] = { 3 };
16 
17 static int *N_T_P1_3D_J[4] = { N_T_P1_3D_J0, N_T_P1_3D_J1,
18  N_T_P1_3D_J2, N_T_P1_3D_J3 };
19 
20 // number of inner dofs
21 static int N_T_P1_3D_NInner = 0;
22 
23 // array containing the numbers for the inner dofs (here is no inner dof)
24 static int *N_T_P1_3D_Inner = NULL;
25 
26 #ifdef _MPI
27 // number of dofs on the closure of the edges
28 static int N_T_P1_3D_EdgeDOF = 0;
29 
30 // which local dofs are on the joints
31 static int *N_T_P1_3D_E0 = NULL;
32 static int *N_T_P1_3D_E1 = NULL;
33 static int *N_T_P1_3D_E2 = NULL;
34 static int *N_T_P1_3D_E3 = NULL;
35 static int *N_T_P1_3D_E4 = NULL;
36 static int *N_T_P1_3D_E5 = NULL;
37 
38 
39 static int *N_T_P1_3D_E[6] = { N_T_P1_3D_E0, N_T_P1_3D_E1, N_T_P1_3D_E2, N_T_P1_3D_E3,
40  N_T_P1_3D_E4, N_T_P1_3D_E5};
41 
42 // number of dofs on the closure of the vertices
43 static int N_T_P1_3D_VertDOF = 0;
44 
45 // array containing the numbers for the vertices dofs
46 static int *N_T_P1_3D_Vert = NULL;
47 
48 #endif
49 
50 static char N_T_P1_3D_String[] = "N_T_P1_3D";
51 
52 TFEDesc3D *FE_N_T_P1_3D_Obj=new TFEDesc3D(N_T_P1_3D_String, N_T_P1_3D_NDOF,
53  N_T_P1_3D_JointDOF,
54  N_T_P1_3D_J, N_T_P1_3D_NInner, N_T_P1_3D_Inner
55 #ifdef _MPI
56  ,N_T_P1_3D_EdgeDOF, N_T_P1_3D_E, N_T_P1_3D_VertDOF,
57  N_T_P1_3D_Vert
58 #endif
59 );
Definition: FEDesc3D.h:19