ParMooN
 All Classes Functions Variables Friends Pages
FE_N_Q_RT1_2D.h
1 // ***********************************************************************
2 // Q1 Raviart-Thomas vector element, nonconforming , 2D
3 // History: 17.11.2011 implementation (Ulrich)
4 // ***********************************************************************
5 
6 // number of degrees of freedom
7 static int N_Q_RT1_2D_NDOF = 12;
8 
9 // number of dofs on the closure of the joints
10 static int N_Q_RT1_2D_JointDOF = 2;
11 
12 // which local dofs are on the joints
13 static int N_Q_RT1_2D_J0[2] = { 0, 1 };
14 static int N_Q_RT1_2D_J1[2] = { 2, 3 };
15 static int N_Q_RT1_2D_J2[2] = { 4, 5 };
16 static int N_Q_RT1_2D_J3[2] = { 6, 7 };
17 
18 static int *N_Q_RT1_2D_J[4] = { N_Q_RT1_2D_J0, N_Q_RT1_2D_J1,
19  N_Q_RT1_2D_J2, N_Q_RT1_2D_J3 };
20 
21 // number of inner dofs
22 static int N_Q_RT1_2D_NInner = 4;
23 
24 // array containing the numbers for the inner dofs
25 static int N_Q_RT1_2D_Inner[4] = {8,9,10,11};
26 
27 // number of outer dofs
28 static int N_Q_RT1_2D_NOuter = 8;
29 
30 // array containing the numbers for the outer dofs
31 static int N_Q_RT1_2D_Outer[8] = { 0, 1, 2, 3, 4, 5, 6, 7 };
32 
33 static char N_Q_RT1_2D_String[] = "N_Q_RT1_2D";
34 
35 TFEDesc2D *FE_N_Q_RT1_2D_Obj=new TFEDesc2D(N_Q_RT1_2D_String, N_Q_RT1_2D_NDOF,
36  N_Q_RT1_2D_JointDOF, N_Q_RT1_2D_J,
37  N_Q_RT1_2D_NInner, N_Q_RT1_2D_Inner,
38  N_Q_RT1_2D_NOuter, N_Q_RT1_2D_Outer);
Definition: FEDesc2D.h:15