ParMooN
 All Classes Functions Variables Friends Pages
FE_C_Q_UL1_2D.h
1 // ***********************************************************************
2 // Q1 element with bubble, conforming, 2D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int C_Q_UL1_2D_NDOF = 5;
7 
8 // number of dofs on the closure of the joints
9 static int C_Q_UL1_2D_JointDOF = 2;
10 
11 // which local dofs are on the joints
12 static int C_Q_UL1_2D_J0[2] = { 0, 1 };
13 static int C_Q_UL1_2D_J1[2] = { 1, 2 };
14 static int C_Q_UL1_2D_J2[2] = { 2, 3 };
15 static int C_Q_UL1_2D_J3[2] = { 3, 0 };
16 
17 static int *C_Q_UL1_2D_J[4] = { C_Q_UL1_2D_J0, C_Q_UL1_2D_J1,
18  C_Q_UL1_2D_J2, C_Q_UL1_2D_J3 };
19 
20 // number of inner dofs
21 static int C_Q_UL1_2D_NInner = 1;
22 
23 // array containing the numbers for the inner dofs
24 static int C_Q_UL1_2D_Inner[1] = { 4 };
25 
26 // number of outer dofs
27 static int C_Q_UL1_2D_NOuter = 4;
28 
29 // array containing the numbers for the outer dofs
30 static int C_Q_UL1_2D_Outer[4] = { 0, 1, 2, 3 };
31 
32 static char C_Q_UL1_2D_String[] = "C_Q_UL1_2D";
33 
34 TFEDesc2D *FE_C_Q_UL1_2D_Obj=new TFEDesc2D(C_Q_UL1_2D_String, C_Q_UL1_2D_NDOF,
35  C_Q_UL1_2D_JointDOF, C_Q_UL1_2D_J,
36  C_Q_UL1_2D_NInner, C_Q_UL1_2D_Inner,
37  C_Q_UL1_2D_NOuter, C_Q_UL1_2D_Outer);
Definition: FEDesc2D.h:15