ParMooN
 All Classes Functions Variables Friends Pages
FE_N_T_P1_2D.h
1 // ***********************************************************************
2 // P1 element, nonconforming, 2D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int N_T_P1_2D_NDOF = 3;
7 
8 // number of dofs on the closure of the joints
9 static int N_T_P1_2D_JointDOF = 1;
10 
11 // which local dofs are on the joints
12 static int N_T_P1_2D_J0[1] = { 0 };
13 static int N_T_P1_2D_J1[1] = { 1 };
14 static int N_T_P1_2D_J2[1] = { 2 };
15 
16 static int *N_T_P1_2D_J[3] = { N_T_P1_2D_J0, N_T_P1_2D_J1,
17  N_T_P1_2D_J2 };
18 
19 // number of inner dofs
20 static int N_T_P1_2D_NInner = 0;
21 
22 // array containing the numbers for the inner dofs (here is no inner dof)
23 static int *N_T_P1_2D_Inner = NULL;
24 
25 // number of outer dofs
26 static int N_T_P1_2D_NOuter = 3;
27 
28 // array containing the numbers for the outer dofs
29 static int N_T_P1_2D_Outer[3] = { 0, 1, 2 };
30 
31 static char N_T_P1_2D_String[] = "N_T_P1_2D";
32 
33 TFEDesc2D *FE_N_T_P1_2D_Obj=new TFEDesc2D(N_T_P1_2D_String, N_T_P1_2D_NDOF,
34  N_T_P1_2D_JointDOF, N_T_P1_2D_J,
35  N_T_P1_2D_NInner, N_T_P1_2D_Inner,
36  N_T_P1_2D_NOuter, N_T_P1_2D_Outer);
Definition: FEDesc2D.h:15