ParMooN
 All Classes Functions Variables Friends Pages
FE_N_T_RT2_2D.h
1 // ***********************************************************************
2 // P1 Raviart-Thomas vector element, nonconforming , 2D
3 // History: 15.11.2011 implementation (Ulrich)
4 // ***********************************************************************
5 
6 // number of degrees of freedom
7 static int N_T_RT2_2D_NDOF = 15;
8 
9 // number of dofs on the closure of the joints
10 static int N_T_RT2_2D_JointDOF = 3;
11 
12 // which local dofs are on the joints
13 static int N_T_RT2_2D_J0[3] = { 0, 1, 2};
14 static int N_T_RT2_2D_J1[3] = { 3, 4, 5};
15 static int N_T_RT2_2D_J2[3] = { 6, 7, 8};
16 
17 
18 static int *N_T_RT2_2D_J[3] = { N_T_RT2_2D_J0,
19  N_T_RT2_2D_J1,
20  N_T_RT2_2D_J2
21  };
22 
23 // number of inner dofs
24 static int N_T_RT2_2D_NInner = 6;
25 
26 // array containing the numbers for the inner dofs
27 static int N_T_RT2_2D_Inner[6] = {9, 10, 11, 12, 13, 14};
28 
29 // number of outer dofs (dofs on edges)
30 static int N_T_RT2_2D_NOuter = 9;
31 
32 // array containing the numbers for the outer dofs
33 static int N_T_RT2_2D_Outer[9] = { 0, 1, 2, 3, 4, 5, 6, 7, 8};
34 
35 static char N_T_RT2_2D_String[] = "N_T_RT2_2D";
36 
37 TFEDesc2D *FE_N_T_RT2_2D_Obj=new TFEDesc2D(N_T_RT2_2D_String, N_T_RT2_2D_NDOF,
38  N_T_RT2_2D_JointDOF, N_T_RT2_2D_J,
39  N_T_RT2_2D_NInner, N_T_RT2_2D_Inner,
40  N_T_RT2_2D_NOuter, N_T_RT2_2D_Outer);
Definition: FEDesc2D.h:15