ParMooN
 All Classes Functions Variables Friends Pages
FE_N_Q_Q4_2D.h
1 // ***********************************************************************
2 // Q4 element, nonconforming, 2D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int N_Q_Q4_2D_NDOF = 22;
7 
8 // number of dofs on the closure of the joints
9 static int N_Q_Q4_2D_JointDOF = 4;
10 
11 // which local dofs are on the joints
12 static int N_Q_Q4_2D_J0[4] = { 0, 4, 8, 12 };
13 static int N_Q_Q4_2D_J1[4] = { 1, 5, 9, 13 };
14 static int N_Q_Q4_2D_J2[4] = { 2, 6, 10, 14 };
15 static int N_Q_Q4_2D_J3[4] = { 3, 7, 11, 15 };
16 
17 static int *N_Q_Q4_2D_J[4] = { N_Q_Q4_2D_J0, N_Q_Q4_2D_J1,
18  N_Q_Q4_2D_J2, N_Q_Q4_2D_J3 };
19 
20 // number of inner dofs
21 static int N_Q_Q4_2D_NInner = 6;
22 
23 // array containing the numbers for the inner dofs (here is no inner dof)
24 static int N_Q_Q4_2D_Inner[6] = { 16, 17, 18, 19, 20, 21 };
25 
26 // number of outer dofs
27 static int N_Q_Q4_2D_NOuter = 16;
28 
29 // array containing the numbers for the outer dofs
30 static int N_Q_Q4_2D_Outer[16] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
31  12, 13, 14, 15 };
32 
33 static char N_Q_Q4_2D_String[] = "N_Q_Q4_2D";
34 
35 TFEDesc2D *FE_N_Q_Q4_2D_Obj=new TFEDesc2D(N_Q_Q4_2D_String, N_Q_Q4_2D_NDOF,
36  N_Q_Q4_2D_JointDOF, N_Q_Q4_2D_J,
37  N_Q_Q4_2D_NInner, N_Q_Q4_2D_Inner,
38  N_Q_Q4_2D_NOuter, N_Q_Q4_2D_Outer);
Definition: FEDesc2D.h:15