ParMooN
 All Classes Functions Variables Friends Pages
FE_N_Q_Q2_2D.h
1 // ***********************************************************************
2 // Q2 element, nonconforming, 2D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int N_Q_Q2_2D_NDOF = 9;
7 
8 // number of dofs on the closure of the joints
9 static int N_Q_Q2_2D_JointDOF = 2;
10 
11 // which local dofs are on the joints
12 static int N_Q_Q2_2D_J0[2] = { 0, 4 };
13 static int N_Q_Q2_2D_J1[2] = { 1, 5 };
14 static int N_Q_Q2_2D_J2[2] = { 2, 6 };
15 static int N_Q_Q2_2D_J3[2] = { 3, 7 };
16 
17 static int *N_Q_Q2_2D_J[4] = { N_Q_Q2_2D_J0, N_Q_Q2_2D_J1,
18  N_Q_Q2_2D_J2, N_Q_Q2_2D_J3 };
19 
20 // number of inner dofs
21 static int N_Q_Q2_2D_NInner = 1;
22 
23 // array containing the numbers for the inner dofs (here is no inner dof)
24 static int N_Q_Q2_2D_Inner[1] = { 8 };
25 
26 // number of outer dofs
27 static int N_Q_Q2_2D_NOuter = 8;
28 
29 // array containing the numbers for the outer dofs
30 static int N_Q_Q2_2D_Outer[8] = { 0, 1, 2, 3, 4, 5, 6, 7 };
31 
32 static char N_Q_Q2_2D_String[] = "N_Q_Q2_2D";
33 
34 TFEDesc2D *FE_N_Q_Q2_2D_Obj=new TFEDesc2D(N_Q_Q2_2D_String, N_Q_Q2_2D_NDOF,
35  N_Q_Q2_2D_JointDOF, N_Q_Q2_2D_J,
36  N_Q_Q2_2D_NInner, N_Q_Q2_2D_Inner,
37  N_Q_Q2_2D_NOuter, N_Q_Q2_2D_Outer);
Definition: FEDesc2D.h:15