ParMooN
 All Classes Functions Variables Friends Pages
FE_N_Q_RT0_2D.h
1 // ***********************************************************************
2 // Q0 Raviart-Thomas vector element, nonconforming , 2D
3 // History: 10.06.2010 implementation (Sashi)
4 // ***********************************************************************
5 
6 // number of degrees of freedom
7 static int N_Q_RT0_2D_NDOF = 4;
8 
9 // number of dofs on the closure of the joints
10 static int N_Q_RT0_2D_JointDOF = 1;
11 
12 // which local dofs are on the joints
13 static int N_Q_RT0_2D_J0[1] = { 0 };
14 static int N_Q_RT0_2D_J1[1] = { 1 };
15 static int N_Q_RT0_2D_J2[1] = { 2 };
16 static int N_Q_RT0_2D_J3[1] = { 3 };
17 
18 static int *N_Q_RT0_2D_J[4] = { N_Q_RT0_2D_J0, N_Q_RT0_2D_J1,
19  N_Q_RT0_2D_J2, N_Q_RT0_2D_J3 };
20 
21 // number of inner dofs
22 static int N_Q_RT0_2D_NInner = 0;
23 
24 // array containing the numbers for the inner dofs (here is no inner dof)
25 static int *N_Q_RT0_2D_Inner = NULL;
26 
27 // number of outer dofs
28 static int N_Q_RT0_2D_NOuter = 4;
29 
30 // array containing the numbers for the outer dofs
31 static int N_Q_RT0_2D_Outer[4] = { 0, 1, 2, 3 };
32 
33 static char N_Q_RT0_2D_String[] = "N_Q_RT0_2D";
34 
35 TFEDesc2D *FE_N_Q_RT0_2D_Obj=new TFEDesc2D(N_Q_RT0_2D_String, N_Q_RT0_2D_NDOF,
36  N_Q_RT0_2D_JointDOF, N_Q_RT0_2D_J,
37  N_Q_RT0_2D_NInner, N_Q_RT0_2D_Inner,
38  N_Q_RT0_2D_NOuter, N_Q_RT0_2D_Outer);
Definition: FEDesc2D.h:15