ParMooN
 All Classes Functions Variables Friends Pages
FE_N_T_P3_2D.h
1 // ***********************************************************************
2 // P3 element, nonconforming, 2D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int N_T_P3_2D_NDOF = 12;
7 
8 // number of dofs on the closure of the joints
9 static int N_T_P3_2D_JointDOF = 3;
10 
11 // which local dofs are on the joints
12 static int N_T_P3_2D_J0[3] = { 0, 3, 6 };
13 static int N_T_P3_2D_J1[3] = { 1, 4, 7 };
14 static int N_T_P3_2D_J2[3] = { 2, 5, 8 };
15 
16 static int *N_T_P3_2D_J[3] = { N_T_P3_2D_J0, N_T_P3_2D_J1, N_T_P3_2D_J2 };
17 
18 // number of inner dofs
19 static int N_T_P3_2D_NInner = 3;
20 
21 // array containing the numbers for the inner dofs
22 static int N_T_P3_2D_Inner[3] = { 9, 10, 11 };
23 
24 // number of outer dofs
25 static int N_T_P3_2D_NOuter = 9;
26 
27 // array containing the numbers for the outer dofs
28 static int N_T_P3_2D_Outer[9] = { 0, 1, 2, 3, 4, 5, 6, 7, 8 };
29 
30 static char N_T_P3_2D_String[] = "N_T_P3_2D";
31 
32 TFEDesc2D *FE_N_T_P3_2D_Obj=new TFEDesc2D(N_T_P3_2D_String, N_T_P3_2D_NDOF,
33  N_T_P3_2D_JointDOF, N_T_P3_2D_J,
34  N_T_P3_2D_NInner, N_T_P3_2D_Inner,
35  N_T_P3_2D_NOuter, N_T_P3_2D_Outer);
Definition: FEDesc2D.h:15