[cig-commits] r7171 - in short/3D/PyLith/trunk/tests: 2d/quad4 2d/tri3 3d/hex8 3d/tet4

brad at geodynamics.org brad at geodynamics.org
Tue Jun 12 13:38:05 PDT 2007


Author: brad
Date: 2007-06-12 13:38:04 -0700 (Tue, 12 Jun 2007)
New Revision: 7171

Modified:
   short/3D/PyLith/trunk/tests/2d/quad4/axialplanestrain.cfg
   short/3D/PyLith/trunk/tests/2d/quad4/shearplanestrain_free.cfg
   short/3D/PyLith/trunk/tests/2d/quad4/shearplanestrain_xfixed.cfg
   short/3D/PyLith/trunk/tests/2d/quad4/threequad4_shear.cfg
   short/3D/PyLith/trunk/tests/2d/tri3/axialplanestrain.cfg
   short/3D/PyLith/trunk/tests/2d/tri3/shearplanestrain.cfg
   short/3D/PyLith/trunk/tests/3d/hex8/axialelasticisotropic.cfg
   short/3D/PyLith/trunk/tests/3d/hex8/axialmaxwellisotropic.cfg
   short/3D/PyLith/trunk/tests/3d/hex8/shearelasticisotropic.cfg
   short/3D/PyLith/trunk/tests/3d/hex8/shearmaxwellisotropic.cfg
   short/3D/PyLith/trunk/tests/3d/tet4/axialelasticisotropic.cfg
Log:
Fixed boundary condition container specification.

Modified: short/3D/PyLith/trunk/tests/2d/quad4/axialplanestrain.cfg
===================================================================
--- short/3D/PyLith/trunk/tests/2d/quad4/axialplanestrain.cfg	2007-06-12 20:14:55 UTC (rev 7170)
+++ short/3D/PyLith/trunk/tests/2d/quad4/axialplanestrain.cfg	2007-06-12 20:38:04 UTC (rev 7171)
@@ -35,7 +35,7 @@
 default_dt = 1.0*s
 dimension = 2
 formulation = pylith.problems.Implicit
-bc = pylith.problems.BCFourSides
+bc = pylith.bc.BCFourSides
 
 # ----------------------------------------------------------------------
 # materials

Modified: short/3D/PyLith/trunk/tests/2d/quad4/shearplanestrain_free.cfg
===================================================================
--- short/3D/PyLith/trunk/tests/2d/quad4/shearplanestrain_free.cfg	2007-06-12 20:14:55 UTC (rev 7170)
+++ short/3D/PyLith/trunk/tests/2d/quad4/shearplanestrain_free.cfg	2007-06-12 20:38:04 UTC (rev 7171)
@@ -35,7 +35,7 @@
 default_dt = 1.0*s
 dimension = 2
 formulation = pylith.problems.Implicit
-bc = pylith.problems.BCFourSides
+bc = pylith.bc.BCFourSides
 
 # ----------------------------------------------------------------------
 # materials

Modified: short/3D/PyLith/trunk/tests/2d/quad4/shearplanestrain_xfixed.cfg
===================================================================
--- short/3D/PyLith/trunk/tests/2d/quad4/shearplanestrain_xfixed.cfg	2007-06-12 20:14:55 UTC (rev 7170)
+++ short/3D/PyLith/trunk/tests/2d/quad4/shearplanestrain_xfixed.cfg	2007-06-12 20:38:04 UTC (rev 7171)
@@ -35,7 +35,7 @@
 default_dt = 1.0*s
 dimension = 2
 formulation = pylith.problems.Implicit
-bc = pylith.problems.BCFourSides
+bc = pylith.bc.BCFourSides
 
 # ----------------------------------------------------------------------
 # materials

Modified: short/3D/PyLith/trunk/tests/2d/quad4/threequad4_shear.cfg
===================================================================
--- short/3D/PyLith/trunk/tests/2d/quad4/threequad4_shear.cfg	2007-06-12 20:14:55 UTC (rev 7170)
+++ short/3D/PyLith/trunk/tests/2d/quad4/threequad4_shear.cfg	2007-06-12 20:38:04 UTC (rev 7171)
@@ -34,7 +34,7 @@
 default_dt = 1.0*s
 dimension = 2
 formulation = pylith.problems.Implicit
-bc = pylith.problems.BCFourSides
+bc = pylith.bc.BCFourSides
 
 # ----------------------------------------------------------------------
 # materials

Modified: short/3D/PyLith/trunk/tests/2d/tri3/axialplanestrain.cfg
===================================================================
--- short/3D/PyLith/trunk/tests/2d/tri3/axialplanestrain.cfg	2007-06-12 20:14:55 UTC (rev 7170)
+++ short/3D/PyLith/trunk/tests/2d/tri3/axialplanestrain.cfg	2007-06-12 20:38:04 UTC (rev 7171)
@@ -35,7 +35,7 @@
 default_dt = 1.0*s
 dimension = 2
 formulation = pylith.problems.Implicit
-bc = pylith.problems.BCFourSides
+bc = pylith.bc.BCFourSides
 
 # ----------------------------------------------------------------------
 # materials

Modified: short/3D/PyLith/trunk/tests/2d/tri3/shearplanestrain.cfg
===================================================================
--- short/3D/PyLith/trunk/tests/2d/tri3/shearplanestrain.cfg	2007-06-12 20:14:55 UTC (rev 7170)
+++ short/3D/PyLith/trunk/tests/2d/tri3/shearplanestrain.cfg	2007-06-12 20:38:04 UTC (rev 7171)
@@ -35,7 +35,7 @@
 default_dt = 1.0*s
 dimension = 2
 formulation = pylith.problems.Implicit
-bc = pylith.problems.BCFourSides
+bc = pylith.bc.BCFourSides
 
 # ----------------------------------------------------------------------
 # materials

Modified: short/3D/PyLith/trunk/tests/3d/hex8/axialelasticisotropic.cfg
===================================================================
--- short/3D/PyLith/trunk/tests/3d/hex8/axialelasticisotropic.cfg	2007-06-12 20:14:55 UTC (rev 7170)
+++ short/3D/PyLith/trunk/tests/3d/hex8/axialelasticisotropic.cfg	2007-06-12 20:38:04 UTC (rev 7171)
@@ -35,7 +35,7 @@
 default_dt = 1.0*s
 dimension = 3
 formulation = pylith.problems.Implicit
-bc = pylith.problems.BCSixSides
+bc = pylith.bc.BCSixSides
 
 # ----------------------------------------------------------------------
 # materials

Modified: short/3D/PyLith/trunk/tests/3d/hex8/axialmaxwellisotropic.cfg
===================================================================
--- short/3D/PyLith/trunk/tests/3d/hex8/axialmaxwellisotropic.cfg	2007-06-12 20:14:55 UTC (rev 7170)
+++ short/3D/PyLith/trunk/tests/3d/hex8/axialmaxwellisotropic.cfg	2007-06-12 20:38:04 UTC (rev 7171)
@@ -35,7 +35,7 @@
 default_dt = 0.1*year
 dimension = 3
 formulation = pylith.problems.Implicit
-bc = pylith.problems.BCPrism
+bc = pylith.bc.BCSixSides
 
 # ----------------------------------------------------------------------
 # materials

Modified: short/3D/PyLith/trunk/tests/3d/hex8/shearelasticisotropic.cfg
===================================================================
--- short/3D/PyLith/trunk/tests/3d/hex8/shearelasticisotropic.cfg	2007-06-12 20:14:55 UTC (rev 7170)
+++ short/3D/PyLith/trunk/tests/3d/hex8/shearelasticisotropic.cfg	2007-06-12 20:38:04 UTC (rev 7171)
@@ -35,7 +35,7 @@
 default_dt = 1.0*s
 dimension = 3
 formulation = pylith.problems.Implicit
-bc = pylith.problems.BCPrism
+bc = pylith.bc.BCSixSides
 
 # ----------------------------------------------------------------------
 # materials

Modified: short/3D/PyLith/trunk/tests/3d/hex8/shearmaxwellisotropic.cfg
===================================================================
--- short/3D/PyLith/trunk/tests/3d/hex8/shearmaxwellisotropic.cfg	2007-06-12 20:14:55 UTC (rev 7170)
+++ short/3D/PyLith/trunk/tests/3d/hex8/shearmaxwellisotropic.cfg	2007-06-12 20:38:04 UTC (rev 7171)
@@ -35,7 +35,7 @@
 default_dt = 0.1*year
 dimension = 3
 formulation = pylith.problems.Implicit
-bc = pylith.problems.BCPrism
+bc = pylith.bc.BCSixSides
 
 # ----------------------------------------------------------------------
 # materials

Modified: short/3D/PyLith/trunk/tests/3d/tet4/axialelasticisotropic.cfg
===================================================================
--- short/3D/PyLith/trunk/tests/3d/tet4/axialelasticisotropic.cfg	2007-06-12 20:14:55 UTC (rev 7170)
+++ short/3D/PyLith/trunk/tests/3d/tet4/axialelasticisotropic.cfg	2007-06-12 20:38:04 UTC (rev 7171)
@@ -35,7 +35,7 @@
 default_dt = 1.0*s
 dimension = 3
 formulation = pylith.problems.Implicit
-bc = pylith.problems.BCSixSides
+bc = pylith.bc.BCSixSides
 
 # ----------------------------------------------------------------------
 # materials



More information about the cig-commits mailing list