ParMooN
 All Classes Functions Variables Friends Pages
FE_D_T_P2_3D.h
1 // ***********************************************************************
2 // P2 element, discontinuous, 3D
3 //
4 // Author: Markus Wolff
5 //
6 // ***********************************************************************
7 
8 // number of degrees of freedom
9 static int D_T_P2_3D_NDOF = 10;
10 
11 // number of dofs on the closure of the joints
12 static int D_T_P2_3D_JointDOF = 0;
13 
14 // which local dofs are on the joints
15 static int *D_T_P2_3D_J0 = NULL;
16 static int *D_T_P2_3D_J1 = NULL;
17 static int *D_T_P2_3D_J2 = NULL;
18 static int *D_T_P2_3D_J3 = NULL;
19 
20 static int *D_T_P2_3D_J[4] = { D_T_P2_3D_J0, D_T_P2_3D_J1,
21  D_T_P2_3D_J2, D_T_P2_3D_J3 };
22 
23 // number of inner dofs
24 static int D_T_P2_3D_NInner = 10;
25 
26 // array containing the numbers for the inner dofs
27 static int D_T_P2_3D_Inner[] = { 0,1,2,3,4,5,6,7,8,9 };
28 
29 static char D_T_P2_3D_String[] = "D_T_P2_3D";
30 
31 TFEDesc3D *FE_D_T_P2_3D_Obj=new TFEDesc3D(D_T_P2_3D_String, D_T_P2_3D_NDOF,
32  D_T_P2_3D_JointDOF,
33  D_T_P2_3D_J, D_T_P2_3D_NInner,
34  D_T_P2_3D_Inner);
Definition: FEDesc3D.h:19