ParMooN
 All Classes Functions Variables Friends Pages
FE_N_T_RT0_2D.h
1 // ***********************************************************************
2 // P0 Raviart-Thomas vector element, nonconforming , 2D
3 // History: 02.09.2010 implementation (Alfonso)
4 // ***********************************************************************
5 
6 // number of degrees of freedom
7 static int N_T_RT0_2D_NDOF = 3;
8 
9 // number of dofs on the closure of the joints
10 static int N_T_RT0_2D_JointDOF = 1;
11 
12 // which local dofs are on the joints
13 static int N_T_RT0_2D_J0[1] = { 0 };
14 static int N_T_RT0_2D_J1[1] = { 1 };
15 static int N_T_RT0_2D_J2[1] = { 2 };
16 
17 static int *N_T_RT0_2D_J[3] = { N_T_RT0_2D_J0, N_T_RT0_2D_J1,
18  N_T_RT0_2D_J2};
19 
20 // number of inner dofs
21 static int N_T_RT0_2D_NInner = 0;
22 
23 // array containing the numbers for the inner dofs (here is no inner dof)
24 static int *N_T_RT0_2D_Inner = NULL;
25 
26 // number of outer dofs
27 static int N_T_RT0_2D_NOuter = 3;
28 
29 // array containing the numbers for the outer dofs
30 static int N_T_RT0_2D_Outer[3] = { 0, 1, 2};
31 
32 static char N_T_RT0_2D_String[] = "N_T_RT0_2D";
33 
34 TFEDesc2D *FE_N_T_RT0_2D_Obj=new TFEDesc2D(N_T_RT0_2D_String, N_T_RT0_2D_NDOF,
35  N_T_RT0_2D_JointDOF, N_T_RT0_2D_J,
36  N_T_RT0_2D_NInner, N_T_RT0_2D_Inner,
37  N_T_RT0_2D_NOuter, N_T_RT0_2D_Outer);
Definition: FEDesc2D.h:15