ParMooN
 All Classes Functions Variables Friends Pages
HN_C_Q1_3D.h
1 // hanging node for conforming Q1 elements in 3D
2 
3 static int C_Q1_3D_N_Nodes_E = 2;
4 static double C_Q1_3D_Coupling_E[2] = { 0.5, 0.5 };
5 
6 THNDesc *HN_C_Q1_3D_E_Obj = new THNDesc(C_Q1_3D_N_Nodes_E,
7  C_Q1_3D_Coupling_E);
8 
9 static int C_Q1_3D_N_Nodes_F = 4;
10 static double C_Q1_3D_Coupling_F[4] = { 0.25, 0.25, 0.25, 0.25 };
11 
12 THNDesc *HN_C_Q1_3D_F_Obj = new THNDesc(C_Q1_3D_N_Nodes_F,
13  C_Q1_3D_Coupling_F);
14 
Definition: HNDesc.h:15