ParMooN
 All Classes Functions Variables Friends Pages
FE_C_T_P1MINI_2D.h
1 // ***********************************************************************
2 // P1MINI element, conforming, 2D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int C_T_P1MINI_2D_NDOF = 4;
7 
8 // number of dofs on the closure of the joints
9 static int C_T_P1MINI_2D_JointDOF = 2;
10 
11 // which local dofs are on the joints
12 static int C_T_P1MINI_2D_J0[2] = { 0, 1 };
13 static int C_T_P1MINI_2D_J1[2] = { 1, 2 };
14 static int C_T_P1MINI_2D_J2[2] = { 2, 0 };
15 
16 static int *C_T_P1MINI_2D_J[3] = { C_T_P1MINI_2D_J0, C_T_P1MINI_2D_J1,
17  C_T_P1MINI_2D_J2 };
18 
19 // number of inner dofs
20 static int C_T_P1MINI_2D_NInner = 1;
21 
22 // array containing the numbers for the inner dofs (here is no inner dof)
23 static int C_T_P1MINI_2D_Inner[1] = { 3 };
24 
25 static char C_T_P1MINI_2D_String[] = "C_T_P1MINI_2D";
26 
27 TFEDesc2D *FE_C_T_P1MINI_2D_Obj=new TFEDesc2D(
28  C_T_P1MINI_2D_String, C_T_P1MINI_2D_NDOF, C_T_P1MINI_2D_JointDOF,
29  C_T_P1MINI_2D_J, C_T_P1MINI_2D_NInner, C_T_P1MINI_2D_Inner);
Definition: FEDesc2D.h:15