[cig-commits] r6467 - in short/3D/PyLith/trunk: libsrc/feassemble pylith/problems

knepley at geodynamics.org knepley at geodynamics.org
Thu Mar 29 16:31:43 PDT 2007


Author: knepley
Date: 2007-03-29 16:31:43 -0700 (Thu, 29 Mar 2007)
New Revision: 6467

Modified:
   short/3D/PyLith/trunk/libsrc/feassemble/IntegratorExplicit.cc
   short/3D/PyLith/trunk/libsrc/feassemble/IntegratorInertia.cc
   short/3D/PyLith/trunk/pylith/problems/Explicit.py
Log:
Small changes


Modified: short/3D/PyLith/trunk/libsrc/feassemble/IntegratorExplicit.cc
===================================================================
--- short/3D/PyLith/trunk/libsrc/feassemble/IntegratorExplicit.cc	2007-03-29 23:27:55 UTC (rev 6466)
+++ short/3D/PyLith/trunk/libsrc/feassemble/IntegratorExplicit.cc	2007-03-29 23:31:43 UTC (rev 6467)
@@ -19,6 +19,7 @@
 // ----------------------------------------------------------------------
 // Constructor
 pylith::feassemble::IntegratorExplicit::IntegratorExplicit(void) :
+  Integrator(),
   _dt(0.0),
   _dtm1(0.0)
 { // constructor

Modified: short/3D/PyLith/trunk/libsrc/feassemble/IntegratorInertia.cc
===================================================================
--- short/3D/PyLith/trunk/libsrc/feassemble/IntegratorInertia.cc	2007-03-29 23:27:55 UTC (rev 6466)
+++ short/3D/PyLith/trunk/libsrc/feassemble/IntegratorInertia.cc	2007-03-29 23:31:43 UTC (rev 6467)
@@ -24,7 +24,8 @@
 
 // ----------------------------------------------------------------------
 // Constructor
-pylith::feassemble::IntegratorInertia::IntegratorInertia(void)
+pylith::feassemble::IntegratorInertia::IntegratorInertia(void) :
+  Integrator()
 { // constructor
 } // constructor
 

Modified: short/3D/PyLith/trunk/pylith/problems/Explicit.py
===================================================================
--- short/3D/PyLith/trunk/pylith/problems/Explicit.py	2007-03-29 23:27:55 UTC (rev 6466)
+++ short/3D/PyLith/trunk/pylith/problems/Explicit.py	2007-03-29 23:31:43 UTC (rev 6467)
@@ -30,6 +30,11 @@
   (i.e., independent of time), and {b(t)} usually depends on {u(t)}
   and {u(t-dt)}.
 
+  Jacobian: A(t)
+  solution: u(t+dt)
+  residual: b(t) - A(t) \hat u(t+dt)
+  constant: b(t)
+
   Factory: pde_formulation.
   """
 



More information about the cig-commits mailing list