ParMooN
 All Classes Functions Variables Friends Pages
FE_D_T_SV1_2D.h
1 // ***********************************************************************
2 // P1 element, discontinuous, 2D, on a subdivision into three triangles
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int D_T_SV1_2D_NDOF = 9;
7 
8 // number fo dofs on the closure of joints
9 static int D_T_SV1_2D_JointDOF = 0;
10 
11 // which local dofs are on the joints
12 static int *D_T_SV1_2D_J0 = NULL;
13 static int *D_T_SV1_2D_J1 = NULL;
14 static int *D_T_SV1_2D_J2 = NULL;
15 
16 static int *D_T_SV1_2D_J[3]={ D_T_SV1_2D_J0, D_T_SV1_2D_J1,
17  D_T_SV1_2D_J2 };
18 
19 // number of inner dofs
20 static int D_T_SV1_2D_NInner = 9;
21 
22 // array containing the numbers for the inner dofs
23 static int D_T_SV1_2D_Inner[9] = { 0, 1, 2, 3, 4, 5, 6, 7, 8 };
24 
25 // describing string
26 static char D_T_SV1_2D_String[] = "D_T_SV1_2D";
27 
28 TFEDesc2D *FE_D_T_SV1_2D_Obj=new TFEDesc2D(
29  D_T_SV1_2D_String, D_T_SV1_2D_NDOF, D_T_SV1_2D_JointDOF,
30  D_T_SV1_2D_J, D_T_SV1_2D_NInner, D_T_SV1_2D_Inner);
31 
Definition: FEDesc2D.h:15