ParMooN
 All Classes Functions Variables Friends Pages
FE_D_T_P1_2D.h
1 // ***********************************************************************
2 // P1 element, discontinous, 2D, triangle
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int D_T_P1_2D_NDOF = 3;
7 
8 // number of dofs on the closure of the joints
9 static int D_T_P1_2D_JointDOF = 0;
10 
11 // which local dofs are on the joints
12 static int *D_T_P1_2D_J0 = NULL;
13 static int *D_T_P1_2D_J1 = NULL;
14 static int *D_T_P1_2D_J2 = NULL;
15 
16 static int *D_T_P1_2D_J[3] = { D_T_P1_2D_J0, D_T_P1_2D_J1, D_T_P1_2D_J2 };
17 
18 // number of inner dofs
19 static int D_T_P1_2D_NInner = 3;
20 
21 // array containing the numbers for the inner dofs (here is no inner dof)
22 static int D_T_P1_2D_Inner[3] = { 0, 1, 2 };
23 
24 static char D_T_P1_2D_String[] = "D_T_P1_2D";
25 
26 TFEDesc2D *FE_D_T_P1_2D_Obj=new TFEDesc2D(D_T_P1_2D_String, D_T_P1_2D_NDOF,
27  D_T_P1_2D_JointDOF, D_T_P1_2D_J,
28  D_T_P1_2D_NInner, D_T_P1_2D_Inner);
Definition: FEDesc2D.h:15