ParMooN
 All Classes Functions Variables Friends Pages
P2_P2.h
1 // mapper for tetrahedron faces on both sides
2 static char P2_P2_Name[] = "P2_P2";
3 static char P2_P2_Desc[] = "conforming P2 element";
4 static int P2_P2_N0 = 6;
5 static int P2_P2_N1 = 6;
6 static int P2_P2_NPairs = 6;
7 static int P2_P2_Pairs0[][2] = { {0,6}, {1,9}, {2,11},
8  {3,7}, {4,10}, {5,8} };
9 static int P2_P2_Pairs1[][2] = { {0,8}, {1,7}, {2,6},
10  {3,10}, {4,9}, {5,11} };
11 static int P2_P2_Pairs2[][2] = { {0,11}, {1,10}, {2,8},
12  {3,9}, {4,7}, {5,6} };
13 static int *P2_P2_Pairs[3] = { (int *)P2_P2_Pairs0, (int *)P2_P2_Pairs1,
14  (int *)P2_P2_Pairs2 };
15 
16 static int P2_P2_NNodes = 12;
17 
18 static int P2_P2_NNoOpposite = 0;
19 static int **P2_P2_NoOpposite = NULL;
20 
21 TFE3DMapper *P2_P2 = new TFE3DMapper(P2_P2_Name, P2_P2_Desc,
22  P2_P2_N0, P2_P2_N1,
23  P2_P2_NPairs, P2_P2_Pairs,
24  P2_P2_NNoOpposite, P2_P2_NoOpposite,
25  P2_P2_NNodes);
Definition: FE3DMapper.h:24