ParMooN
 All Classes Functions Variables Friends Pages
N2_N2.h
1 // mapper for hexahedron faces on both sides
2 static char N2_N2_Name[] = "N2_N2";
3 static char N2_N2_Desc[] = "nonconforming element of order 2";
4 static int N2_N2_N0 = 3;
5 static int N2_N2_N1 = 3;
6 static int N2_N2_NPairs = 3;
7 static int N2_N2_Pairs0[][2] = { {0,3}, {1,5}, {2,4} };
8 static int N2_N2_Pairs1[][2] = { {0,3}, {1,4}, {2,5} };
9 static int N2_N2_Pairs2[][2] = { {0,3}, {1,5}, {2,4} };
10 static int N2_N2_Pairs3[][2] = { {0,3}, {1,4}, {2,5} };
11 static int *N2_N2_Pairs[4] = { (int *)N2_N2_Pairs0, (int *)N2_N2_Pairs1,
12  (int *)N2_N2_Pairs2, (int *)N2_N2_Pairs3 };
13 
14 static int N2_N2_NNodes = 6;
15 
16 static int N2_N2_NNoOpposite = 0;
17 static int **N2_N2_NoOpposite = NULL;
18 
19 TFE3DMapper *N2_N2 = new TFE3DMapper(N2_N2_Name, N2_N2_Desc,
20  N2_N2_N0, N2_N2_N1,
21  N2_N2_NPairs, N2_N2_Pairs,
22  N2_N2_NNoOpposite, N2_N2_NoOpposite,
23  N2_N2_NNodes);
Definition: FE3DMapper.h:24