ParMooN
 All Classes Functions Variables Friends Pages
FE_C_Q_EL1_2D.h
1 // ***********************************************************************
2 // Q1 element with space dependent exponential bubble, conforming, 2D
3 // *value : IN = space data, OUT = basis values
4 // Author : Sashi
5 // History: 26.05.2011
6 // ***********************************************************************
7 
8 // number of degrees of freedom
9 static int C_Q_EL1_2D_NDOF = 5;
10 
11 // number of dofs on the closure of the joints
12 static int C_Q_EL1_2D_JointDOF = 2;
13 
14 // which local dofs are on the joints
15 static int C_Q_EL1_2D_J0[2] = { 0, 1 };
16 static int C_Q_EL1_2D_J1[2] = { 1, 2 };
17 static int C_Q_EL1_2D_J2[2] = { 2, 3 };
18 static int C_Q_EL1_2D_J3[2] = { 3, 0 };
19 
20 static int *C_Q_EL1_2D_J[4] = { C_Q_EL1_2D_J0, C_Q_EL1_2D_J1,
21  C_Q_EL1_2D_J2, C_Q_EL1_2D_J3 };
22 
23 // number of inner dofs
24 static int C_Q_EL1_2D_NInner = 1;
25 
26 // array containing the numbers for the inner dofs
27 static int C_Q_EL1_2D_Inner[1] = { 4 };
28 
29 // number of outer dofs
30 static int C_Q_EL1_2D_NOuter = 4;
31 
32 // array containing the numbers for the outer dofs
33 static int C_Q_EL1_2D_Outer[4] = { 0, 1, 2, 3 };
34 
35 static char C_Q_EL1_2D_String[] = "C_Q_EL1_2D";
36 
37 TFEDesc2D *FE_C_Q_EL1_2D_Obj=new TFEDesc2D(C_Q_EL1_2D_String, C_Q_EL1_2D_NDOF,
38  C_Q_EL1_2D_JointDOF, C_Q_EL1_2D_J,
39  C_Q_EL1_2D_NInner, C_Q_EL1_2D_Inner,
40  C_Q_EL1_2D_NOuter, C_Q_EL1_2D_Outer);
Definition: FEDesc2D.h:15