ParMooN
 All Classes Functions Variables Friends Pages
FE_C_L_P1_1D.h
1 // ***********************************************************************
2 // P1 element, conforming, 1D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int C_L_P1_1D_NDOF = 2;
7 
8 // number of dofs on the closure of the joints
9 static int C_L_P1_1D_JointDOF = 1;
10 
11 // which local dofs are on the joints
12 static int C_L_P1_1D_J0[1] = { 0 };
13 static int C_L_P1_1D_J1[1] = { 1 };
14 
15 static int *C_L_P1_1D_J[2] = { C_L_P1_1D_J0, C_L_P1_1D_J1 };
16 
17 // number of inner dofs
18 static int C_L_P1_1D_NInner = 0;
19 
20 // array containing the numbers for the inner dofs
21 static int *C_L_P1_1D_Inner = NULL;
22 
23 static char C_L_P1_1D_String[] = "C_L_P1_1D";
24 
25 TFEDesc1D *FE_C_L_P1_1D_Obj=new TFEDesc1D(C_L_P1_1D_String, C_L_P1_1D_NDOF,
26  C_L_P1_1D_JointDOF, C_L_P1_1D_J,
27  C_L_P1_1D_NInner, C_L_P1_1D_Inner);
Definition: FEDesc1D.h:17