ParMooN
 All Classes Functions Variables Friends Pages
N1_N1.h
1 // mapper for hexahedron faces on both sides
2 static char N1_N1_Name[] = "N1_N1";
3 static char N1_N1_Desc[] = "nonconforming Q1Rot element";
4 static int N1_N1_N0 = 1;
5 static int N1_N1_N1 = 1;
6 static int N1_N1_NPairs = 1;
7 static int N1_N1_Pairs0[][2] = { {0,1} };
8 static int N1_N1_Pairs1[][2] = { {0,1} };
9 static int N1_N1_Pairs2[][2] = { {0,1} };
10 static int N1_N1_Pairs3[][2] = { {0,1} };
11 static int *N1_N1_Pairs[4] = { (int *)N1_N1_Pairs0, (int *)N1_N1_Pairs1,
12  (int *)N1_N1_Pairs2, (int *)N1_N1_Pairs3 };
13 
14 static int N1_N1_NNodes = 2;
15 
16 static int N1_N1_NNoOpposite = 0;
17 static int **N1_N1_NoOpposite = NULL;
18 
19 TFE3DMapper *N1_N1 = new TFE3DMapper(N1_N1_Name, N1_N1_Desc,
20  N1_N1_N0, N1_N1_N1,
21  N1_N1_NPairs, N1_N1_Pairs,
22  N1_N1_NNoOpposite, N1_N1_NoOpposite,
23  N1_N1_NNodes);
Definition: FE3DMapper.h:24