[cig-commits] r22016 - in short/3D/PyLith/trunk/unittests/libtests/faults: . data

knepley at geodynamics.org knepley at geodynamics.org
Thu May 9 13:25:38 PDT 2013


Author: knepley
Date: 2013-05-09 13:25:38 -0700 (Thu, 09 May 2013)
New Revision: 22016

Modified:
   short/3D/PyLith/trunk/unittests/libtests/faults/TestFaultCohesive.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8Lagrange.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8b.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8f.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8g.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8h.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataQuad4f.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataQuad4g.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataQuad4h.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4Lagrange.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4b.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4c.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4d.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4f.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4g.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4h.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4i.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTri3d.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataHex8.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataTet4.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataTet4e.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataTet4f.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataTri3d.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinSrcsDataHex8.cc
   short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinSrcsDataTet4.cc
Log:
Updated tests for permutations of fault faces

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/TestFaultCohesive.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/TestFaultCohesive.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/TestFaultCohesive.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -256,7 +256,7 @@
 
   CohesiveDataQuad4f data;
   FaultCohesiveTract fault;
-  _testAdjustTopology(&fault, data, true);
+  _testAdjustTopology(&fault, data, false);
 
   PYLITH_METHOD_END;
 } // testAdjustTopologyQuad4f
@@ -272,7 +272,7 @@
 
   CohesiveDataQuad4g data;
   FaultCohesiveTract fault;
-  _testAdjustTopology(&fault, data, false);
+  _testAdjustTopology(&fault, data, true);
 
   PYLITH_METHOD_END;
 } // testAdjustTopologyQuad4g
@@ -561,7 +561,7 @@
 
   CohesiveDataHex8h data;
   FaultCohesiveTract fault;
-  _testAdjustTopology(&fault, data, true);
+  _testAdjustTopology(&fault, data, false);
 
   PYLITH_METHOD_END;
 } // testAdjustTopologyHex8h

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -72,7 +72,7 @@
 const int pylith::faults::CohesiveDataHex8::_cells[] = {
   3,  4,  6,  5, 15, 16, 18, 17,
   7,  8, 10,  9, 11, 12, 14, 13,
-  9, 10,  8,  7, 17, 18, 16, 15,
+  7,  9, 10,  8, 15, 17, 18, 16,
 };
 
 const int pylith::faults::CohesiveDataHex8::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8Lagrange.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8Lagrange.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8Lagrange.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -76,7 +76,7 @@
 const int pylith::faults::CohesiveDataHex8Lagrange::_cells[] = {
   3,  4,  6,  5, 15, 16, 18, 17,
   7,  8, 10,  9, 11, 12, 14, 13,
-  9, 10,  8,  7, 17, 18, 16, 15, 21, 22, 20, 19
+  7,  9, 10,  8, 15, 17, 18, 16, 19, 21, 22, 20
 };
 
 const int pylith::faults::CohesiveDataHex8Lagrange::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8b.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8b.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8b.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -72,7 +72,7 @@
 const int pylith::faults::CohesiveDataHex8b::_cells[] = {
   3, 15, 16,  4,  5, 17, 18,  6,
   7, 11, 12,  8,  9, 13, 14, 10,
-  8,  7,  9, 10, 16, 15, 17, 18,
+  7,  9, 10,  8, 15, 17, 18, 16,
 };
 
 const int pylith::faults::CohesiveDataHex8b::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8f.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8f.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8f.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -72,7 +72,7 @@
 const int pylith::faults::CohesiveDataHex8f::_cells[] = {
   4, 16, 18,  6,  3, 15, 17,  5,
   8, 12, 14, 10,  7, 11, 13,  9,
- 10,  8,  7,  9, 18, 16, 15, 17,
+  8,  7,  9, 10, 16, 15, 17, 18,
 };
 
 const int pylith::faults::CohesiveDataHex8f::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8g.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8g.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8g.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -23,13 +23,13 @@
  *
  *   The fault runs through the center (x = 0)
  *
-     1-----7----13     Cells
-    /|    /|    /|
-   3-|---9-|--15 |      0      2
-  /| |  /| |  /| |
- 5 | 0-----6----12
- | |/  | |/  | |/
- | 2-----8----14        1      3
+     1-----7----13     Cells            y
+    /|    /|    /|                      |
+   3-|---9-|--15 |      0      2        |
+  /| |  /| |  /| |                      |________x
+ 5 | 0-----6----12                     /
+ | |/  | |/  | |/                     /
+ | 2-----8----14        1      3     z
  |/    |/    |/
  4----10----16
  *
@@ -98,8 +98,8 @@
    8, 26, 27,  9, 10, 28, 29, 11,
   12, 18, 19, 13, 14, 20, 21, 15,
   14, 20, 21, 15, 16, 22, 23, 17,
-  13, 12, 14, 15, 25, 24, 26, 27,
-  15, 14, 16, 17, 27, 26, 28, 29,
+  12, 14, 15, 13, 24, 26, 27, 25,
+  14, 16, 17, 15, 26, 28, 29, 27,
 };
 
 const int pylith::faults::CohesiveDataHex8g::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8h.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8h.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataHex8h.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -97,8 +97,8 @@
   21, 20, 22, 23, 15, 14, 16, 17,
   13, 19, 21, 15, 12, 18, 20, 14,
   29, 28, 10, 11, 27, 26,  8,  9,
-  15, 13, 12, 14, 27, 25, 24, 26,
-  17, 15, 14, 16, 29, 27, 26, 28,
+  12, 14, 15, 13, 24, 26, 27, 25,
+  15, 14, 16, 17, 27, 26, 28, 29,
 };
 
 const int pylith::faults::CohesiveDataHex8h::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataQuad4f.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataQuad4f.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataQuad4f.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -48,20 +48,20 @@
  *       |          |   |          |
  *       |          |   |          |
  *       |          |   |          |
+ *       |    0     | 4 |    1     |
  *       |          |   |          |
  *       |          |   |          |
  *       |          |   |          |
  *       |          |   |          |
- *       |          |   |          |
  *       7 --------16-- 9 --------11
  *       |          |   |          |
  *       |          |   |          |
  *       |          |   |          |
  *       |          |   |          |
+ *       |    3     | 5 |    2     |
  *       |          |   |          |
  *       |          |   |          |
  *       |          |   |          |
- *       |          |   |          |
  *       6 --------15-- 8 --------10
  */
 
@@ -104,8 +104,8 @@
   9, 11, 14, 13,
   8, 10, 11,  9,
   6, 15, 16,  7,
+ 13,  9, 17, 16,
   9,  8, 16, 15,
- 13,  9, 17, 16,
 };
 
 const int pylith::faults::CohesiveDataQuad4f::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataQuad4g.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataQuad4g.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataQuad4g.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -108,8 +108,8 @@
  17, 20, 19, 16,
   8,  7, 11, 13,
  11, 10, 12, 13,
+ 13, 14, 19, 20,
  12, 13, 18, 19,
- 13, 14, 19, 20,
 };
 
 const int pylith::faults::CohesiveDataQuad4g::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataQuad4h.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataQuad4h.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataQuad4h.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -37,6 +37,25 @@
  * |      |      |      |
  *21 ----22 ----23 ----24
  *
+ * After first fault
+ *
+ *11 ----12 ----27-13 ----14
+ * |      |      |  |      |
+ * |  0   |  1   | 9|  2   |
+ * |      |      |  |      |
+ * |      |      |  |      |
+ *15 ----16 ----28-17 ----18
+ * |      |      |  |      |
+ * |  3   |  4   |10|  5   |
+ * |      |      |  |      |
+ * |      |      |  |      |
+ *19 ----20-----29-21 ----22
+ * |      |      |         |
+ * |  6   |  7   |     8   |
+ * |      |      |         |
+ * |      |      |         |
+ *23 ----24 ----25--------26
+ *
  * After adding cohesive elements
  *
  * Cells are 0-8,9-11 vertices are 12-32.

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -63,7 +63,7 @@
 const int pylith::faults::CohesiveDataTet4::_cells[] = {
   4,  5,  6,  3,
   8, 10,  9,  7,
-  5,  4,  6,  9,  8, 10
+  6,  5,  4, 10,  9,  8
 };
 
 const int pylith::faults::CohesiveDataTet4::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4Lagrange.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4Lagrange.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4Lagrange.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -66,7 +66,7 @@
 const int pylith::faults::CohesiveDataTet4Lagrange::_cells[] = {
   4,  5,  6,  3,
   8, 10,  9,  7,
-  5,  4,  6,  9,  8,  10,  12, 11, 13
+  6,  5,  4, 10,  9,  8, 13, 12, 11
 };
 
 const int pylith::faults::CohesiveDataTet4Lagrange::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4b.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4b.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4b.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -63,7 +63,7 @@
 const int pylith::faults::CohesiveDataTet4b::_cells[] = {
   3,  8, 10,  9,
   4,  7,  6,  5,
-  6,  4,  5, 10,  8,  9
+  4,  5,  6,  8,  9, 10
 };
 
 const int pylith::faults::CohesiveDataTet4b::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4c.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4c.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4c.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -63,7 +63,7 @@
 const int pylith::faults::CohesiveDataTet4c::_cells[] = {
   6,  5,  3,  4,
   7,  9, 10,  8,
-  5,  4,  6,  9,  8, 10,
+  6,  5,  4, 10,  9,  8,
 };
 
 const int pylith::faults::CohesiveDataTet4c::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4d.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4d.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4d.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -63,7 +63,7 @@
 const int pylith::faults::CohesiveDataTet4d::_cells[] = {
   4,  3,  5,  6,
   8,  9,  7, 10,
-  5,  4,  6,  9,  8, 10
+  6,  5,  4, 10,  9,  8
 };
 
 const int pylith::faults::CohesiveDataTet4d::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4f.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4f.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4f.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -63,7 +63,7 @@
 const int pylith::faults::CohesiveDataTet4f::_cells[] = {
   4,  6,  5,  7,
   8,  9, 10,  3,
-  6,  4,  5, 10,  8,  9
+  5,  6,  4,  9, 10,  8
 };
 
 const int pylith::faults::CohesiveDataTet4f::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4g.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4g.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4g.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -63,7 +63,7 @@
 const int pylith::faults::CohesiveDataTet4g::_cells[] = {
   4,  6,  5,  7,
   8, 10,  3,  9,
-  6,  4,  5, 10,  8,  9
+  5,  6,  4,  9, 10,  8
 };
 
 const int pylith::faults::CohesiveDataTet4g::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4h.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4h.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4h.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -63,7 +63,7 @@
 const int pylith::faults::CohesiveDataTet4h::_cells[] = {
  10,  9,  3,  8,
   6,  5,  4,  7,
-  5,  6,  4,  9, 10,  8
+  6,  4,  5, 10,  8,  9
 };
 
 const int pylith::faults::CohesiveDataTet4h::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4i.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4i.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTet4i.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -70,8 +70,8 @@
  12, 14, 13, 11,
  15, 11, 14, 12,
   6,  7, 10,  9,
- 10,  9,  7, 15, 14, 12,
   9,  8,  7, 14, 13, 12,
+  7, 10,  9, 12, 15, 14,
 };
 
 const int pylith::faults::CohesiveDataTet4i::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTri3d.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTri3d.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveDataTri3d.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -99,8 +99,8 @@
   7,  8,  9,
  14,  6, 12,
  10,  7, 11,
+  7,  8, 12, 13,
  10,  7, 14, 12,
-  7,  8, 12, 13,
 };
 
 const int pylith::faults::CohesiveDataTri3d::_materialIds[] = {

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataHex8.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataHex8.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataHex8.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -178,16 +178,16 @@
 
 const int pylith::faults::CohesiveKinDataHex8::_numFaultVertices = 4;
 const int pylith::faults::CohesiveKinDataHex8::_verticesFault[] = {
-   4,  5,  3,  2
+   2,  4,  5,  3
 };
 const int pylith::faults::CohesiveKinDataHex8::_verticesLagrange[] = {
-  21, 22, 20, 19
+  19, 21, 22, 20
 };
 const int pylith::faults::CohesiveKinDataHex8::_verticesNegative[] = {
-   9, 10,  8,  7
+   7,  9, 10,  8
 };
 const int pylith::faults::CohesiveKinDataHex8::_verticesPositive[] = {
-  17, 18, 16, 15
+  15, 17, 18, 16
 };
 
 const int pylith::faults::CohesiveKinDataHex8::_numCohesiveCells = 1;

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataTet4.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataTet4.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataTet4.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -137,16 +137,16 @@
 
 const int pylith::faults::CohesiveKinDataTet4::_numFaultVertices = 3;
 const int pylith::faults::CohesiveKinDataTet4::_verticesFault[] = {
-   3,  2,  4
+   4,  3,  2
 };
 const int pylith::faults::CohesiveKinDataTet4::_verticesLagrange[] = {
-  12, 11, 13
+  13, 12, 11
 };
 const int pylith::faults::CohesiveKinDataTet4::_verticesNegative[] = {
-   5,  4,  6
+   6,  5,  4
 };
 const int pylith::faults::CohesiveKinDataTet4::_verticesPositive[] = {
-   9,  8, 10
+  10,  9,  8
 };
 
 const int pylith::faults::CohesiveKinDataTet4::_numCohesiveCells = 1;

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataTet4e.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataTet4e.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataTet4e.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -161,16 +161,16 @@
 
 const int pylith::faults::CohesiveKinDataTet4e::_numFaultVertices = 4;
 const int pylith::faults::CohesiveKinDataTet4e::_verticesFault[] = {
-   5,  4,  6,  7
+   6,  5,  4,  7
 };
 const int pylith::faults::CohesiveKinDataTet4e::_verticesLagrange[] = {
-  17, 16, 18, 19
+  18, 17, 16, 19
 };
 const int pylith::faults::CohesiveKinDataTet4e::_verticesNegative[] = {
-   8,  7,  9, 10
+   9,  8,  7, 10
 };
 const int pylith::faults::CohesiveKinDataTet4e::_verticesPositive[] = {
-  13, 12, 14, 15
+  14, 13, 12, 15
 };
 
 const int pylith::faults::CohesiveKinDataTet4e::_numCohesiveCells = 2;

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataTet4f.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataTet4f.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataTet4f.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -150,16 +150,16 @@
 
 const int pylith::faults::CohesiveKinDataTet4f::_numFaultVertices = 3;
 const int pylith::faults::CohesiveKinDataTet4f::_verticesFault[] = {
-   4,  2,  3
+   3,  4,  2
 };
 const int pylith::faults::CohesiveKinDataTet4f::_verticesLagrange[] = {
-  13, 11, 12
+  12, 13, 11
 };
 const int pylith::faults::CohesiveKinDataTet4f::_verticesNegative[] = {
-   6,  4,  5
+   5,  6,  4
 };
 const int pylith::faults::CohesiveKinDataTet4f::_verticesPositive[] = {
-  10,  8,  9
+   9, 10,  8
 };
 
 const int pylith::faults::CohesiveKinDataTet4f::_numCohesiveCells = 1;

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataTri3d.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataTri3d.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinDataTri3d.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -174,16 +174,16 @@
 
 const int pylith::faults::CohesiveKinDataTri3d::_numFaultVertices = 3;
 const int pylith::faults::CohesiveKinDataTri3d::_verticesFault[] = {
-   6,  4,  5
+   4,  5,  6
 };
 const int pylith::faults::CohesiveKinDataTri3d::_verticesLagrange[] = {
-  17, 15, 16
+  15, 16, 17
 };
 const int pylith::faults::CohesiveKinDataTri3d::_verticesNegative[] = {
-  10,  7,  8
+   7,  8, 10
 };
 const int pylith::faults::CohesiveKinDataTri3d::_verticesPositive[] = {
-  14, 12, 13
+  12, 13, 14
 };
 
 const int pylith::faults::CohesiveKinDataTri3d::_numCohesiveCells = 2;

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinSrcsDataHex8.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinSrcsDataHex8.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinSrcsDataHex8.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -190,16 +190,16 @@
 
 const int pylith::faults::CohesiveKinSrcsDataHex8::_numFaultVertices = 4;
 const int pylith::faults::CohesiveKinSrcsDataHex8::_verticesFault[] = {
-  4, 5, 3, 2
+   2,  4,  5,  3
 };
 const int pylith::faults::CohesiveKinSrcsDataHex8::_verticesLagrange[] = {
-  21, 22, 20, 19
+  19, 21, 22, 20
 };
 const int pylith::faults::CohesiveKinSrcsDataHex8::_verticesNegative[] = {
-  9, 10, 8, 7
+   7,  9, 10,  8
 };
 const int pylith::faults::CohesiveKinSrcsDataHex8::_verticesPositive[] = {
-  17, 18, 16, 15
+  15, 17, 18, 16
 };
 
 const int pylith::faults::CohesiveKinSrcsDataHex8::_numCohesiveCells = 1;

Modified: short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinSrcsDataTet4.cc
===================================================================
--- short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinSrcsDataTet4.cc	2013-05-09 20:18:18 UTC (rev 22015)
+++ short/3D/PyLith/trunk/unittests/libtests/faults/data/CohesiveKinSrcsDataTet4.cc	2013-05-09 20:25:38 UTC (rev 22016)
@@ -149,16 +149,16 @@
 
 const int pylith::faults::CohesiveKinSrcsDataTet4::_numFaultVertices = 3;
 const int pylith::faults::CohesiveKinSrcsDataTet4::_verticesFault[] = {
-  3, 2, 4
+   4,  3,  2
 };
 const int pylith::faults::CohesiveKinSrcsDataTet4::_verticesLagrange[] = {
-  12, 11, 13
+  13, 12, 11
 };
 const int pylith::faults::CohesiveKinSrcsDataTet4::_verticesNegative[] = {
-  5, 4, 6
+   6,  5,  4
 };
 const int pylith::faults::CohesiveKinSrcsDataTet4::_verticesPositive[] = {
-  9, 8, 10
+  10,  9,  8
 };
 
 const int pylith::faults::CohesiveKinSrcsDataTet4::_numCohesiveCells = 1;



More information about the CIG-COMMITS mailing list