ParMooN
 All Classes Functions Variables Friends Pages
FE_N_L_P0_1D.h
1 // ***********************************************************************
2 // P0 element, nonconforming, 1D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int N_L_P0_1D_NDOF = 1;
7 
8 // number of dofs on the closure of the joints
9 static int N_L_P0_1D_JointDOF = 0;
10 
11 // which local dofs are on the joints
12 static int *N_L_P0_1D_J[2] = {0, 0};
13 
14 // number of inner dofs
15 static int N_L_P0_1D_NInner = 1;
16 
17 // array containing the numbers for the inner dofs
18 static int N_L_P0_1D_Inner[1] = { 0 };
19 
20 static char N_L_P0_1D_String[] = "N_L_P0_1D";
21 
22 TFEDesc1D *FE_N_L_P0_1D_Obj=new TFEDesc1D(N_L_P0_1D_String, N_L_P0_1D_NDOF,
23  N_L_P0_1D_JointDOF, N_L_P0_1D_J,
24  N_L_P0_1D_NInner, N_L_P0_1D_Inner);
Definition: FEDesc1D.h:17