ParMooN
 All Classes Functions Variables Friends Pages
N3_N3.h
1 // mapper for hexahedron faces on both sides
2 static char N3_N3_Name[] = "N3_N3";
3 static char N3_N3_Desc[] = "nonconforming element of order 3";
4 static int N3_N3_N0 = 6;
5 static int N3_N3_N1 = 6;
6 static int N3_N3_NPairs = 6;
7 static int N3_N3_Pairs0[][2] = { {0,6}, {1,8}, {2,7}, {3,11}, {4,10}, {5,9} };
8 static int N3_N3_Pairs1[][2] = { {0,6}, {1,7}, {2,8}, {3,9}, {4,10}, {5,11} };
9 static int N3_N3_Pairs2[][2] = { {0,6}, {1,8}, {2,7}, {3,11}, {4,10}, {5,9} };
10 static int N3_N3_Pairs3[][2] = { {0,6}, {1,7}, {2,8}, {3,9}, {4,10}, {5,11} };
11 static int *N3_N3_Pairs[4] = { (int *)N3_N3_Pairs0, (int *)N3_N3_Pairs1,
12  (int *)N3_N3_Pairs2, (int *)N3_N3_Pairs3 };
13 
14 static int N3_N3_NNodes = 12;
15 
16 static int N3_N3_NNoOpposite = 0;
17 static int **N3_N3_NoOpposite = NULL;
18 
19 TFE3DMapper *N3_N3 = new TFE3DMapper(N3_N3_Name, N3_N3_Desc,
20  N3_N3_N0, N3_N3_N1,
21  N3_N3_NPairs, N3_N3_Pairs,
22  N3_N3_NNoOpposite, N3_N3_NoOpposite,
23  N3_N3_NNodes);
Definition: FE3DMapper.h:24