[cig-commits] r17063 - in short/3D/PyLith/branches/pylith-scecdynrup: . doc/releasenotes libsrc/friction pylith/faults

brad at geodynamics.org brad at geodynamics.org
Sun Aug 1 13:45:12 PDT 2010


Author: brad
Date: 2010-08-01 13:45:11 -0700 (Sun, 01 Aug 2010)
New Revision: 17063

Modified:
   short/3D/PyLith/branches/pylith-scecdynrup/TODO
   short/3D/PyLith/branches/pylith-scecdynrup/doc/releasenotes/announce_v1.5.1.txt
   short/3D/PyLith/branches/pylith-scecdynrup/libsrc/friction/TimeWeakening.cc
   short/3D/PyLith/branches/pylith-scecdynrup/pylith/faults/Fault.py
   short/3D/PyLith/branches/pylith-scecdynrup/pylith/faults/FaultCohesiveDyn.py
   short/3D/PyLith/branches/pylith-scecdynrup/pylith/faults/FaultCohesiveKin.py
Log:
Merge from trunk.

Modified: short/3D/PyLith/branches/pylith-scecdynrup/TODO
===================================================================
--- short/3D/PyLith/branches/pylith-scecdynrup/TODO	2010-08-01 20:41:56 UTC (rev 17062)
+++ short/3D/PyLith/branches/pylith-scecdynrup/TODO	2010-08-01 20:45:11 UTC (rev 17063)
@@ -56,6 +56,8 @@
 
 * GenMaxwellPlaneStrain (plane strain Generalize Maxwell model) [Charles]
 
+* DruckerPragerPlaneStrain (Drucker-Prager plane strain ) [Charles]
+
 * Lumped solver [Brad]
   + Need to finish unit tests
 

Modified: short/3D/PyLith/branches/pylith-scecdynrup/doc/releasenotes/announce_v1.5.1.txt
===================================================================
--- short/3D/PyLith/branches/pylith-scecdynrup/doc/releasenotes/announce_v1.5.1.txt	2010-08-01 20:41:56 UTC (rev 17062)
+++ short/3D/PyLith/branches/pylith-scecdynrup/doc/releasenotes/announce_v1.5.1.txt	2010-08-01 20:45:11 UTC (rev 17063)
@@ -11,7 +11,7 @@
 
 You can download the source code and binaries from
 
-    http://geodynamics.org/cig/software/packages/short/pylith
+    http://geodynamics.org/cig/software/pylith
 
 Detailed installation instructions are in the User Manual with example
 installation procedures for a few platforms in the bundled doc/install

Modified: short/3D/PyLith/branches/pylith-scecdynrup/libsrc/friction/TimeWeakening.cc
===================================================================
--- short/3D/PyLith/branches/pylith-scecdynrup/libsrc/friction/TimeWeakening.cc	2010-08-01 20:41:56 UTC (rev 17062)
+++ short/3D/PyLith/branches/pylith-scecdynrup/libsrc/friction/TimeWeakening.cc	2010-08-01 20:45:11 UTC (rev 17063)
@@ -295,7 +295,7 @@
   } else {
     stateVars[s_time] = 0.0;
   } // else
- 
+
 } // _updateStateVars
 
 

Modified: short/3D/PyLith/branches/pylith-scecdynrup/pylith/faults/Fault.py
===================================================================
--- short/3D/PyLith/branches/pylith-scecdynrup/pylith/faults/Fault.py	2010-08-01 20:41:56 UTC (rev 17062)
+++ short/3D/PyLith/branches/pylith-scecdynrup/pylith/faults/Fault.py	2010-08-01 20:45:11 UTC (rev 17063)
@@ -159,19 +159,6 @@
     return
 
 
-  def poststep(self, t, dt, fields):
-    """
-    Hook for doing stuff after advancing time step.
-    """
-    logEvent = "%spoststep" % self._loggingPrefix
-    self._eventLogger.eventBegin(logEvent)
-
-    self.updateStateVars(t, fields)
-
-    self._eventLogger.eventEnd(logEvent)
-    return
-
-
   def writeData(self, t, fields):
     """
     Write data at time t.

Modified: short/3D/PyLith/branches/pylith-scecdynrup/pylith/faults/FaultCohesiveDyn.py
===================================================================
--- short/3D/PyLith/branches/pylith-scecdynrup/pylith/faults/FaultCohesiveDyn.py	2010-08-01 20:41:56 UTC (rev 17062)
+++ short/3D/PyLith/branches/pylith-scecdynrup/pylith/faults/FaultCohesiveDyn.py	2010-08-01 20:45:11 UTC (rev 17063)
@@ -143,20 +143,6 @@
     return
 
 
-  def poststep(self, t, dt, fields):
-    """
-    Hook for doing stuff after advancing time step.
-    """
-    logEvent = "%spoststep" % self._loggingPrefix
-    self._eventLogger.eventBegin(logEvent)
-
-    Integrator.poststep(self, t, dt, fields)
-    FaultCohesive.poststep(self, t, dt, fields)
-
-    self._eventLogger.eventEnd(logEvent)
-    return
-
-
   def getVertexField(self, name, fields=None):
     """
     Get vertex field.

Modified: short/3D/PyLith/branches/pylith-scecdynrup/pylith/faults/FaultCohesiveKin.py
===================================================================
--- short/3D/PyLith/branches/pylith-scecdynrup/pylith/faults/FaultCohesiveKin.py	2010-08-01 20:41:56 UTC (rev 17062)
+++ short/3D/PyLith/branches/pylith-scecdynrup/pylith/faults/FaultCohesiveKin.py	2010-08-01 20:45:11 UTC (rev 17063)
@@ -155,20 +155,6 @@
     return
 
 
-  def poststep(self, t, dt, fields):
-    """
-    Hook for doing stuff after advancing time step.
-    """
-    logEvent = "%spoststep" % self._loggingPrefix
-    self._eventLogger.eventBegin(logEvent)
-
-    Integrator.poststep(self, t, dt, fields)
-    FaultCohesive.poststep(self, t, dt, fields)
-
-    self._eventLogger.eventEnd(logEvent)
-    return
-
-
   def getVertexField(self, name, fields=None):
     """
     Get vertex field.



More information about the CIG-COMMITS mailing list