ParMooN
 All Classes Functions Variables Friends Pages
FE_N_H_BDDF2_3D.h
1 // ***********************************************************************
2 // Brezzi-Douglas-Duran-Fortin element of second order on hexahedra, 3D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int N_H_BDDF2_3D_NDOF = 39;
7 
8 // number of dofs on the closure of each joints
9 static int N_H_BDDF2_3D_JointDOF = 6;
10 
11 // which local dofs are on the joints
12 static int N_H_BDDF2_3D_J0[6] = { 0, 1, 2, 3, 4, 5 };
13 static int N_H_BDDF2_3D_J1[6] = { 6, 7, 8, 9,10,11 };
14 static int N_H_BDDF2_3D_J2[6] = { 12,13,14,15,16,17 };
15 static int N_H_BDDF2_3D_J3[6] = { 18,19,20,21,22,23 };
16 static int N_H_BDDF2_3D_J4[6] = { 24,25,26,27,28,29 };
17 static int N_H_BDDF2_3D_J5[6] = { 30,31,32,33,34,35 };
18 
19 static int *N_H_BDDF2_3D_J[6] = { N_H_BDDF2_3D_J0, N_H_BDDF2_3D_J1,
20  N_H_BDDF2_3D_J2, N_H_BDDF2_3D_J3,
21  N_H_BDDF2_3D_J4, N_H_BDDF2_3D_J5 };
22 
23 // number of inner dofs
24 static int N_H_BDDF2_3D_NInner = 3;
25 
26 // array containing the numbers for the inner dofs
27 static int N_H_BDDF2_3D_Inner[3] = { 36,37,38 };
28 
29 // number of outer dofs
30 static int N_H_BDDF2_3D_NOuter = 36;
31 
32 // array containing the numbers for the outer dofs
33 static int N_H_BDDF2_3D_Outer[36] = { 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 };
34 
35 static char N_H_BDDF2_3D_String[] = "N_H_BDDF2_3D";
36 
37 TFEDesc3D *FE_N_H_BDDF2_3D_Obj=new TFEDesc3D(N_H_BDDF2_3D_String, N_H_BDDF2_3D_NDOF,
38  N_H_BDDF2_3D_JointDOF, N_H_BDDF2_3D_J,
39  N_H_BDDF2_3D_NInner, N_H_BDDF2_3D_Inner,
40  N_H_BDDF2_3D_NOuter, N_H_BDDF2_3D_Outer);
Definition: FEDesc3D.h:19