ParMooN
 All Classes Functions Variables Friends Pages
FE_N_T_RT3_2D.h
1 // ***********************************************************************
2 // RT3 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_RT3_2D_NDOF = 24;
8 
9 // number of dofs on the closure of the joints
10 static int N_T_RT3_2D_JointDOF = 4;
11 
12 // which local dofs are on the joints
13 static int N_T_RT3_2D_J0[4] = { 0, 1, 2, 3};
14 static int N_T_RT3_2D_J1[4] = { 4, 5, 6, 7};
15 static int N_T_RT3_2D_J2[4] = { 8, 9,10,11};
16 
17 
18 static int *N_T_RT3_2D_J[3] = { N_T_RT3_2D_J0,
19  N_T_RT3_2D_J1,
20  N_T_RT3_2D_J2
21  };
22 
23 // number of inner dofs
24 static int N_T_RT3_2D_NInner = 12;
25 
26 // array containing the numbers for the inner dofs
27 static int N_T_RT3_2D_Inner[12] = {12,13,14,15,16,17,18,19,20,21,22,23};
28 
29 // number of outer dofs (dofs on edges)
30 static int N_T_RT3_2D_NOuter = 12;
31 
32 // array containing the numbers for the outer dofs
33 static int N_T_RT3_2D_Outer[12] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11};
34 
35 static char N_T_RT3_2D_String[] = "N_T_RT3_2D";
36 
37 TFEDesc2D *FE_N_T_RT3_2D_Obj=new TFEDesc2D(N_T_RT3_2D_String, N_T_RT3_2D_NDOF,
38  N_T_RT3_2D_JointDOF, N_T_RT3_2D_J,
39  N_T_RT3_2D_NInner, N_T_RT3_2D_Inner,
40  N_T_RT3_2D_NOuter, N_T_RT3_2D_Outer);
Definition: FEDesc2D.h:15