[cig-commits] r15580 - in short/3D/PyLith/trunk/pylith: problems topology

brad at geodynamics.org brad at geodynamics.org
Sun Aug 23 16:25:11 PDT 2009


Author: brad
Date: 2009-08-23 16:25:11 -0700 (Sun, 23 Aug 2009)
New Revision: 15580

Modified:
   short/3D/PyLith/trunk/pylith/problems/Implicit.py
   short/3D/PyLith/trunk/pylith/topology/MeshGenerator.py
Log:
Fixed name of facility (no underscore).

Modified: short/3D/PyLith/trunk/pylith/problems/Implicit.py
===================================================================
--- short/3D/PyLith/trunk/pylith/problems/Implicit.py	2009-08-23 19:12:51 UTC (rev 15579)
+++ short/3D/PyLith/trunk/pylith/problems/Implicit.py	2009-08-23 23:25:11 UTC (rev 15580)
@@ -208,7 +208,9 @@
     self._info.log("Solving equations.")
     residual = self.fields.get("residual")
     self._eventLogger.stagePush("Solve")
+    self.jacobian.view() # TEMPORARY
     self.solver.solve(dispIncr, self.jacobian, residual)
+    dispIncr.view("DISP INCR") # TEMPORARY
 
     # DEBUGGING Verify solution makes residual 0
     #self._reformResidual(t+dt, dt)

Modified: short/3D/PyLith/trunk/pylith/topology/MeshGenerator.py
===================================================================
--- short/3D/PyLith/trunk/pylith/topology/MeshGenerator.py	2009-08-23 19:12:51 UTC (rev 15579)
+++ short/3D/PyLith/trunk/pylith/topology/MeshGenerator.py	2009-08-23 23:25:11 UTC (rev 15580)
@@ -58,7 +58,7 @@
     """
     Constructor.
     """
-    PetscComponent.__init__(self, name, facility="mesh_generator")
+    PetscComponent.__init__(self, name, facility="meshgenerator")
     self.debug = False
     self.interpolate = False
     return



More information about the CIG-COMMITS mailing list