ParMooN
 All Classes Functions Variables Friends Pages
HN_C_P2_3D.h
1 // hanging node for conforming P2 elements in 3D
2 
3 static int C_P2_3D_N_Nodes_E = 3;
4 static double C_P2_3D_Coupling_E[3] = { 0.375, 0.75, -0.125 };
5 
6 THNDesc *HN_C_P2_3D_E_Obj = new THNDesc(C_P2_3D_N_Nodes_E,
7  C_P2_3D_Coupling_E);
8 
9 static int C_P2_3D_N_Nodes_F = 5;
10 static double C_P2_3D_Coupling_F[5] = { 0.5, -0.125, 0.5, 0.25, -0.125 };
11 
12 THNDesc *HN_C_P2_3D_F_Obj = new THNDesc(C_P2_3D_N_Nodes_F,
13  C_P2_3D_Coupling_F);
14 
Definition: HNDesc.h:15