ParMooN
 All Classes Functions Variables Friends Pages
NP2_NP2.h
1 // mapper for tetrahedral faces on both sides
2 static char NP2_NP2_Name[] = "NP2_NP2";
3 static char NP2_NP2_Desc[] = "nonconforming P2 element";
4 static int NP2_NP2_N0 = 3;
5 static int NP2_NP2_NP2 = 3;
6 static int NP2_NP2_NPairs = 3;
7 static int NP2_NP2_Pairs0[][2] = { {0,3}, {1,5}, {2,4} };
8 static int NP2_NP2_Pairs1[][2] = { {0,4}, {1,3}, {2,5} };
9 static int NP2_NP2_Pairs2[][2] = { {0,5}, {1,4}, {2,3} };
10 static int *NP2_NP2_Pairs[3] = { (int *)NP2_NP2_Pairs0,
11  (int *)NP2_NP2_Pairs1,
12  (int *)NP2_NP2_Pairs2 };
13 
14 static int NP2_NP2_NNodes = 6;
15 
16 static int NP2_NP2_NNoOpposite = 0;
17 static int **NP2_NP2_NoOpposite = NULL;
18 
19 TFE3DMapper *NP2_NP2 = new TFE3DMapper(NP2_NP2_Name, NP2_NP2_Desc,
20  NP2_NP2_N0, NP2_NP2_NP2,
21  NP2_NP2_NPairs, NP2_NP2_Pairs,
22  NP2_NP2_NNoOpposite, NP2_NP2_NoOpposite,
23  NP2_NP2_NNodes);
Definition: FE3DMapper.h:24