ParMooN
 All Classes Functions Variables Friends Pages
FE_B_H_IB2_3D.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_H_IB2_3D_NDOF = 1;
7 
8 // number of dofs on the closure of the joints
9 static int B_H_IB2_3D_JointDOF = 0;
10 
11 // which local dofs are on the joints
12 static int *B_H_IB2_3D_J0 = NULL;
13 static int *B_H_IB2_3D_J1 = NULL;
14 static int *B_H_IB2_3D_J2 = NULL;
15 static int *B_H_IB2_3D_J3 = NULL;
16 static int *B_H_IB2_3D_J4 = NULL;
17 static int *B_H_IB2_3D_J5 = NULL;
18 
19 static int *B_H_IB2_3D_J[6] = { B_H_IB2_3D_J0, B_H_IB2_3D_J1,
20  B_H_IB2_3D_J2, B_H_IB2_3D_J3,
21  B_H_IB2_3D_J4, B_H_IB2_3D_J5};
22 
23 // number of inner dofs
24 static int B_H_IB2_3D_NInner = 1;
25 
26 // array containing the numbers for the inner dofs
27 static int B_H_IB2_3D_Inner[1] = { 0 };
28 
29 static char B_H_IB2_3D_String[] = "B_H_IB2_3D";
30 
31 TFEDesc3D *FE_B_H_IB2_3D_Obj=new TFEDesc3D(B_H_IB2_3D_String, B_H_IB2_3D_NDOF,
32  B_H_IB2_3D_JointDOF,
33  B_H_IB2_3D_J, B_H_IB2_3D_NInner, B_H_IB2_3D_Inner);
Definition: FEDesc3D.h:19