ParMooN
 All Classes Functions Variables Friends Pages
FE_D_L_P2_1D.h
1 // ***********************************************************************
2 // P2 discontinuous element, 1D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int D_L_P2_1D_NDOF = 3;
7 
8 // number of dofs on the closure of the joints
9 static int D_L_P2_1D_JointDOF = 0;
10 
11 // which local dofs are on the joints
12 static int *D_L_P2_1D_J0 = NULL;
13 static int *D_L_P2_1D_J1 = NULL;
14 
15 static int *D_L_P2_1D_J[2] = { D_L_P2_1D_J0, D_L_P2_1D_J1 };
16 
17 // number of inner dofs
18 static int D_L_P2_1D_NInner = 3;
19 
20 // array containing the numbers for the inner dofs
21 static int D_L_P2_1D_Inner[3] = {0, 1, 2};
22 
23 static char D_L_P2_1D_String[] = "D_L_P2_1D";
24 
25 TFEDesc1D *FE_D_L_P2_1D_Obj=new TFEDesc1D(D_L_P2_1D_String, D_L_P2_1D_NDOF,
26  D_L_P2_1D_JointDOF, D_L_P2_1D_J,
27  D_L_P2_1D_NInner, D_L_P2_1D_Inner);
Definition: FEDesc1D.h:17