ParMooN
 All Classes Functions Variables Friends Pages
FE_C_Q_Q00_2D.h
1 // ***********************************************************************
2 // Q00 element, conforming, 2D
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int C_Q_Q00_2D_NDOF = 1;
7 
8 // number of dofs on the closure of the joints
9 static int C_Q_Q00_2D_JointDOF = 0;
10 
11 // which local dofs are on the joints
12 static int *C_Q_Q00_2D_J[3] = { NULL, NULL, NULL };
13 
14 // number of inner dofs
15 static int C_Q_Q00_2D_NInner = 1;
16 
17 // array containing the numbers for the inner dofs
18 static int C_Q_Q00_2D_Inner[1] = { 0 };
19 
20 static char C_Q_Q00_2D_String[] = "C_Q_Q00_2D";
21 
22 TFEDesc2D *FE_C_Q_Q00_2D_Obj=new TFEDesc2D(C_Q_Q00_2D_String, C_Q_Q00_2D_NDOF,
23  C_Q_Q00_2D_JointDOF, C_Q_Q00_2D_J,
24  C_Q_Q00_2D_NInner, C_Q_Q00_2D_Inner);
Definition: FEDesc2D.h:15