ParMooN
 All Classes Functions Variables Friends Pages
FE_N_T_P1MOD_2D.h
1 // ***********************************************************************
2 // P1MOD element, nonconforming, 2D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int N_T_P1MOD_2D_NDOF = 6;
7 
8 // number of dofs on the closure of the joints
9 static int N_T_P1MOD_2D_JointDOF = 2;
10 
11 // which local dofs are on the joints
12 static int N_T_P1MOD_2D_J0[2] = { 0, 1 };
13 static int N_T_P1MOD_2D_J1[2] = { 2, 3 };
14 static int N_T_P1MOD_2D_J2[2] = { 4, 5 };
15 
16 static int *N_T_P1MOD_2D_J[3] = { N_T_P1MOD_2D_J0, N_T_P1MOD_2D_J1,
17  N_T_P1MOD_2D_J2 };
18 
19 // number of inner dofs
20 static int N_T_P1MOD_2D_NInner = 0;
21 
22 // array containing the numbers for the inner dofs (here is no inner dof)
23 static int *N_T_P1MOD_2D_Inner = NULL;
24 
25 static char N_T_P1MOD_2D_String[] = "N_T_P1MOD_2D";
26 
27 TFEDesc2D *FE_N_T_P1MOD_2D_Obj =
28  new TFEDesc2D(N_T_P1MOD_2D_String, N_T_P1MOD_2D_NDOF,
29  N_T_P1MOD_2D_JointDOF, N_T_P1MOD_2D_J,
30  N_T_P1MOD_2D_NInner, N_T_P1MOD_2D_Inner);
31 
Definition: FEDesc2D.h:15