ParMooN
 All Classes Functions Variables Friends Pages
FE_B_Q_IB2_2D.h
1 // ***********************************************************************
2 // internal bubble of degree 2 (in the sense of Q2)
3 // ***********************************************************************
4 
5 // number of degrees of freedom
6 static int B_Q_IB2_2D_NDOF = 1;
7 
8 // number of dofs on the closure of the joints
9 static int B_Q_IB2_2D_JointDOF = 0;
10 
11 // which local dofs are on the joints
12 static int *B_Q_IB2_2D_J[3] = { NULL, NULL, NULL };
13 
14 // number of inner dofs
15 static int B_Q_IB2_2D_NInner = 1;
16 
17 // array containing the numbers for the inner dofs
18 static int B_Q_IB2_2D_Inner[1] = { 0 };
19 
20 static char B_Q_IB2_2D_String[] = "B_Q_IB2_2D";
21 
22 TFEDesc2D *FE_B_Q_IB2_2D_Obj=new TFEDesc2D(B_Q_IB2_2D_String, B_Q_IB2_2D_NDOF,
23  B_Q_IB2_2D_JointDOF, B_Q_IB2_2D_J,
24  B_Q_IB2_2D_NInner, B_Q_IB2_2D_Inner);
Definition: FEDesc2D.h:15