ParMooN
 All Classes Functions Variables Friends Pages
FE_N_T_P2_3D.h
1 // ***********************************************************************
2 // P2 element, nonconforming, 3D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int N_T_P2_3D_NDOF = 13;
7 
8 // number of dofs on the closure of the joints
9 static int N_T_P2_3D_JointDOF = 3;
10 
11 // which local dofs are on the joints
12 static int N_T_P2_3D_J0[3] = { 0, 1, 2 };
13 static int N_T_P2_3D_J1[3] = { 3, 4, 5 };
14 static int N_T_P2_3D_J2[3] = { 6, 7, 8 };
15 static int N_T_P2_3D_J3[3] = { 9, 10, 11 };
16 
17 static int *N_T_P2_3D_J[4] = { N_T_P2_3D_J0, N_T_P2_3D_J1,
18  N_T_P2_3D_J2, N_T_P2_3D_J3 };
19 
20 // number of inner dofs
21 static int N_T_P2_3D_NInner = 1;
22 
23 // array containing the numbers for the inner dofs (here is no inner dof)
24 static int N_T_P2_3D_Inner[1] = { 12 };
25 
26 static char N_T_P2_3D_String[] = "N_T_P2_3D";
27 
28 TFEDesc3D *FE_N_T_P2_3D_Obj=new TFEDesc3D(N_T_P2_3D_String, N_T_P2_3D_NDOF,
29  N_T_P2_3D_JointDOF,
30  N_T_P2_3D_J, N_T_P2_3D_NInner, N_T_P2_3D_Inner);
Definition: FEDesc3D.h:19