ParMooN
 All Classes Functions Variables Friends Pages
FE_N_T_P2_2D.h
1 // ***********************************************************************
2 // P2 element, nonconforming, 2D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int N_T_P2_2D_NDOF = 7;
7 
8 // number of dofs on the closure of the joints
9 static int N_T_P2_2D_JointDOF = 2;
10 
11 // which local dofs are on the joints
12 static int N_T_P2_2D_J0[2] = { 0, 3 };
13 static int N_T_P2_2D_J1[2] = { 1, 4 };
14 static int N_T_P2_2D_J2[2] = { 2, 5 };
15 
16 static int *N_T_P2_2D_J[3] = { N_T_P2_2D_J0, N_T_P2_2D_J1, N_T_P2_2D_J2 };
17 
18 // number of inner dofs
19 static int N_T_P2_2D_NInner = 1;
20 
21 // array containing the numbers for the inner dofs
22 static int N_T_P2_2D_Inner[1] = { 6 };
23 
24 // number of outer dofs
25 static int N_T_P2_2D_NOuter = 6;
26 
27 // array containing the numbers for the outer dofs
28 static int N_T_P2_2D_Outer[6] = { 0, 1, 2, 3, 4, 5 };
29 
30 static char N_T_P2_2D_String[] = "N_T_P2_2D";
31 
32 TFEDesc2D *FE_N_T_P2_2D_Obj=new TFEDesc2D(N_T_P2_2D_String, N_T_P2_2D_NDOF,
33  N_T_P2_2D_JointDOF, N_T_P2_2D_J,
34  N_T_P2_2D_NInner, N_T_P2_2D_Inner,
35  N_T_P2_2D_NOuter, N_T_P2_2D_Outer);
Definition: FEDesc2D.h:15