ParMooN
 All Classes Functions Variables Friends Pages
FE_D_Q_Q4_2D.h
1 // ***********************************************************************
2 // Q4 element, discontinous, 2D, quadrilateral
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int D_Q_Q4_2D_NDOF = 25;
7 
8 // number of dofs on the closure of the joints
9 static int D_Q_Q4_2D_JointDOF = 0;
10 
11 // which local dofs are on the joints
12 static int *D_Q_Q4_2D_J0 = NULL;
13 static int *D_Q_Q4_2D_J1 = NULL;
14 static int *D_Q_Q4_2D_J2 = NULL;
15 static int *D_Q_Q4_2D_J3 = NULL;
16 
17 static int *D_Q_Q4_2D_J[4] = { D_Q_Q4_2D_J0, D_Q_Q4_2D_J1,
18  D_Q_Q4_2D_J2, D_Q_Q4_2D_J3 };
19 
20 // number of inner dofs
21 static int D_Q_Q4_2D_NInner = 25;
22 
23 // array containing the numbers for the inner dofs (here is no inner dof)
24 static int D_Q_Q4_2D_Inner[25] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
25  10, 11, 12, 13, 14, 15, 16, 17,
26  18, 19, 20, 21, 22, 23, 24 };
27 
28 static char D_Q_Q4_2D_String[] = "D_Q_Q4_2D";
29 
30 TFEDesc2D *FE_D_Q_Q4_2D_Obj=new TFEDesc2D(D_Q_Q4_2D_String, D_Q_Q4_2D_NDOF,
31  D_Q_Q4_2D_JointDOF,
32  D_Q_Q4_2D_J, D_Q_Q4_2D_NInner, D_Q_Q4_2D_Inner);
Definition: FEDesc2D.h:15