ParMooN
 All Classes Functions Variables Friends Pages
FE_N_T_RT3_3D.h
1 // ***********************************************************************
2 // Raviart-Thomas element of third order on tetrahedra, 3D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int N_T_RT3_3D_NDOF = 70;
7 
8 // number of dofs on the closure of each joints
9 static int N_T_RT3_3D_JointDOF = 10;
10 
11 // which local dofs are on the joints
12 static int N_T_RT3_3D_J0[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
13 static int N_T_RT3_3D_J1[10] = {10,11,12,13,14,15,16,17,18,19 };
14 static int N_T_RT3_3D_J2[10] = {20,21,22,23,24,25,26,27,28,29 };
15 static int N_T_RT3_3D_J3[10] = {30,31,32,33,34,35,36,37,38,39 };
16 
17 static int *N_T_RT3_3D_J[4] = { N_T_RT3_3D_J0, N_T_RT3_3D_J1,
18  N_T_RT3_3D_J2, N_T_RT3_3D_J3 };
19 
20 // number of inner dofs
21 static int N_T_RT3_3D_NInner = 30;
22 
23 // array containing the numbers for the inner dofs (here is no inner dof)
24 static int N_T_RT3_3D_Inner[30] = { 40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69 };
25 
26 // number of outer dofs
27 static int N_T_RT3_3D_NOuter = 40;
28 
29 // array containing the numbers for the outer dofs
30 static int N_T_RT3_3D_Outer[40] = { 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,36,37,38,39 };
31 
32 static char N_T_RT3_3D_String[] = "N_T_RT3_3D";
33 
34 TFEDesc3D *FE_N_T_RT3_3D_Obj=new TFEDesc3D(N_T_RT3_3D_String, N_T_RT3_3D_NDOF,
35  N_T_RT3_3D_JointDOF, N_T_RT3_3D_J,
36  N_T_RT3_3D_NInner, N_T_RT3_3D_Inner,
37  N_T_RT3_3D_NOuter, N_T_RT3_3D_Outer);
Definition: FEDesc3D.h:19