[cig-commits] r16679 - short/3D/PyLith/trunk/examples/3d/hex8

willic3 at geodynamics.org willic3 at geodynamics.org
Mon May 10 00:04:04 PDT 2010


Author: willic3
Date: 2010-05-10 00:04:04 -0700 (Mon, 10 May 2010)
New Revision: 16679

Modified:
   short/3D/PyLith/trunk/examples/3d/hex8/pylithapp.cfg
Log:
Updated for new file layout.



Modified: short/3D/PyLith/trunk/examples/3d/hex8/pylithapp.cfg
===================================================================
--- short/3D/PyLith/trunk/examples/3d/hex8/pylithapp.cfg	2010-05-10 02:39:39 UTC (rev 16678)
+++ short/3D/PyLith/trunk/examples/3d/hex8/pylithapp.cfg	2010-05-10 07:04:04 UTC (rev 16679)
@@ -45,12 +45,12 @@
 [pylithapp.timedependent]
 
 # Set materials to an array of 2 materials:
-#   'elastic' and 'viscoelastic'
-materials = [elastic,viscoelastic]
+#   'elastic' and 'inelastic'
+materials = [elastic,inelastic]
 
 # Change from default material (elastic, isotropic, 3-D material) to
 # Maxwell viscoelastic, isotropic 3-D material.
-materials.viscoelastic = pylith.materials.MaxwellIsotropic3D
+materials.inelastic = pylith.materials.MaxwellIsotropic3D
 
 [pylithapp.timedependent.materials.elastic]
 label = Elastic material
@@ -59,12 +59,11 @@
 quadrature.cell = pylith.feassemble.FIATLagrange
 quadrature.cell.dimension = 3
 
-# We do not define the database info for the viscoelastic material, since
+# We do not define the database info for the inelastic material, since
 # a different database type may be used for some examples.
-[pylithapp.timedependent.materials.viscoelastic]
-label = Viscoelastic material
+[pylithapp.timedependent.materials.inelastic]
+label = Inelastic material
 id = 2
-db_properties.iohandler.filename = spatialdb/mat_maxwell.spatialdb
 quadrature.cell = pylith.feassemble.FIATLagrange
 quadrature.cell.dimension = 3
 
@@ -74,22 +73,28 @@
 # Set the solver options.
 
 [pylithapp.petsc]
+
+# Preconditioner settings.
 pc_type = asm
-
-# Change the preconditioner settings.
 sub_pc_factor_shift_type = none
 
+# Convergence parameters.
 ksp_rtol = 1.0e-8
 ksp_max_it = 500
 ksp_gmres_restart = 50
 
+# Linear solution logging options.
 ksp_monitor = true
 ksp_view = true
 ksp_converged_reason = true
 
+# Nonlinear solution logging options.
 snes_monitor = true
 snes_view = true
 snes_converged_reason = true
 
+# PETSc run summary -- useful for performance information.
 log_summary = true
+
+# Hopefully not necessary.
 # start_in_debugger = true



More information about the CIG-COMMITS mailing list