ParMooN
 All Classes Functions Variables Friends Pages
N4_N4.h
1 // mapper for hexahedron faces on both sides
2 static char N4_N4_Name[] = "N4_N4";
3 static char N4_N4_Desc[] = "nonconforming element of order 4";
4 static int N4_N4_N0 = 10;
5 static int N4_N4_N1 = 10;
6 static int N4_N4_NPairs = 10;
7 static int N4_N4_Pairs0[][2] = { {0,10}, {1,12}, {2,11}, {3,15}, {4,14},
8  {5,13}, {6,19}, {7,18}, {8,17}, {9,16} };
9 static int N4_N4_Pairs1[][2] = { {0,10}, {1,11}, {2,12}, {3,13}, {4,14},
10  {5,15}, {6,16}, {7,17}, {8,18}, {9,19} };
11 static int N4_N4_Pairs2[][2] = { {0,10}, {1,12}, {2,11}, {3,15}, {4,14},
12  {5,13}, {6,19}, {7,18}, {8,17}, {9,16} };
13 static int N4_N4_Pairs3[][2] = { {0,10}, {1,11}, {2,12}, {3,13}, {4,14},
14  {5,15}, {6,16}, {7,17}, {8,18}, {9,19} };
15 static int *N4_N4_Pairs[4] = { (int *)N4_N4_Pairs0, (int *)N4_N4_Pairs1,
16  (int *)N4_N4_Pairs2, (int *)N4_N4_Pairs3 };
17 
18 static int N4_N4_NNodes = 20;
19 
20 static int N4_N4_NNoOpposite = 0;
21 static int **N4_N4_NoOpposite = NULL;
22 
23 TFE3DMapper *N4_N4 = new TFE3DMapper(N4_N4_Name, N4_N4_Desc,
24  N4_N4_N0, N4_N4_N1,
25  N4_N4_NPairs, N4_N4_Pairs,
26  N4_N4_NNoOpposite, N4_N4_NoOpposite,
27  N4_N4_NNodes);
Definition: FE3DMapper.h:24