ParMooN
 All Classes Functions Variables Friends Pages
FE_C_T_P00_3D.h
1 // ***********************************************************************
2 // P00 element, discontinuous, 3D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int C_T_P00_3D_NDOF = 1;
7 
8 // number of dofs on the closure of the joints
9 static int C_T_P00_3D_JointDOF = 0;
10 
11 // which local dofs are on the joints
12 static int *C_T_P00_3D_J0 = NULL;
13 static int *C_T_P00_3D_J1 = NULL;
14 static int *C_T_P00_3D_J2 = NULL;
15 static int *C_T_P00_3D_J3 = NULL;
16 
17 static int *C_T_P00_3D_J[4] = { C_T_P00_3D_J0, C_T_P00_3D_J1,
18  C_T_P00_3D_J2, C_T_P00_3D_J3 };
19 
20 // number of inner dofs
21 static int C_T_P00_3D_NInner = 1;
22 
23 // array containing the numbers for the inner dofs
24 static int C_T_P00_3D_Inner[1] = { 0 };
25 
26 static char C_T_P00_3D_String[] = "C_T_P00_3D";
27 
28 TFEDesc3D *FE_C_T_P00_3D_Obj=new TFEDesc3D(C_T_P00_3D_String, C_T_P00_3D_NDOF,
29  C_T_P00_3D_JointDOF,
30  C_T_P00_3D_J, C_T_P00_3D_NInner, C_T_P00_3D_Inner);
Definition: FEDesc3D.h:19