[cig-commits] r8990 - in
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog: .
parameters
brad at geodynamics.org
brad at geodynamics.org
Mon Jan 7 16:40:13 PST 2008
Author: brad
Date: 2008-01-07 16:40:12 -0800 (Mon, 07 Jan 2008)
New Revision: 8990
Added:
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/debug.cfg
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/fixeddisp_zero.spatialdb
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/fourmaterials.odb
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/mat_elastic.spatialdb
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/mat_maxwell.spatialdb
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/pylithapp.cfg
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_cubit.cfg
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_hex8_0250m.cfg
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_hex8_0500m.cfg
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_hex8_1000m.cfg
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_lagrit.cfg
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_tet4_0250m.cfg
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_tet4_0500m.cfg
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_tet4_1000m.cfg
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/slip_tapered.spatialdb
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/slip_uniform.spatialdb
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/sliprate_uniform.spatialdb
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/sliptime_uniform.spatialdb
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/timedep.cfg
short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/results/
Log:
Started setting up parameters for reverse-slip benchmarks.
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/debug.cfg
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/debug.cfg 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/debug.cfg 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,9 @@
+# -*- Python -*-
+[pylithapp]
+mesh_generator.distributor.debug = 1
+
+[pylithapp.journal.debug]
+pylithapp = 1
+problem = 1
+implicit = 1
+
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/fixeddisp_zero.spatialdb
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/fixeddisp_zero.spatialdb 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/fixeddisp_zero.spatialdb 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,14 @@
+#SPATIAL.ascii 1
+SimpleDB {
+ num-values = 3
+ value-names = dof-0 dof-1 dof-2
+ value-units = m m m
+ num-locs = 1
+ data-dim = 0
+ space-dim = 3
+ cs-data = cartesian {
+ to-meters = 1.0
+ space-dim = 3
+ }
+}
+0.0 0.0 0.0 0.0 0.0 0.0
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/fourmaterials.odb
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/fourmaterials.odb 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/fourmaterials.odb 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,90 @@
+#!/usr/bin/env python
+#
+# ----------------------------------------------------------------------
+#
+# Brad T. Aagaard
+# U.S. Geological Survey
+#
+# <LicenseText>
+#
+# ----------------------------------------------------------------------
+#
+
+## Container of four materials.
+
+# Parent class
+from pylith.utils.ObjectBin import ObjectBin
+
+class MyMatBin(ObjectBin):
+ """
+ User-defined materials container.
+
+ Factory: object_bin
+ """
+
+ # INVENTORY //////////////////////////////////////////////////////////
+
+ class Inventory(ObjectBin.Inventory):
+ """
+ Python object for managing MyBC facilities and properties.
+ """
+
+ import pyre.inventory
+
+ from pylith.materials.ElasticIsotropic3D import ElasticIsotropic3D
+ from pylith.materials.MaxwellIsotropic3D import MaxwellIsotropic3D
+
+ elasticHangingwall = pyre.inventory.facility("elastic_hangingwall", family="material",
+ factory=ElasticIsotropic3D)
+ elasticHangingwall.meta['tip'] = "Elastic material on hanging wall side of the fault."
+
+ elasticFootwall = pyre.inventory.facility("elastic_footwall", family="material",
+ factory=ElasticIsotropic3D)
+ elasticFootwall.meta['tip'] = "Elastic material on footwall side of the fault."
+
+ viscoelasticHangingwall = pyre.inventory.facility("viscoelastic_hangingwall",
+ family="material",
+ factory=MaxwellIsotropic3D)
+ viscoelasticHangingwall.meta['tip'] = "Viscoelastic material on hanging wall side of the fault."
+
+ viscoelasticFootwall = pyre.inventory.facility("viscoelastic_footwall",
+ family="material",
+ factory=MaxwellIsotropic3D)
+ viscoelasticFootwall.meta['tip'] = "Viscoelastic material on footwall side of the fault."
+
+
+ # PUBLIC METHODS /////////////////////////////////////////////////////
+
+ def __init__(self, name="mymatbin"):
+ """
+ Constructor.
+ """
+ ObjectBin.__init__(self, name)
+ return
+
+
+ # PRIVATE METHODS ////////////////////////////////////////////////////
+
+ def _configure(self):
+ """
+ Set attributes from inventory.
+ """
+ ObjectBin._configure(self)
+
+ self.bin = [self.inventory.elasticHangingwall,
+ self.inventory.elasticFootwall,
+ self.inventory.viscoelasticHangingwall,
+ self.inventory.viscoelasticFootwall]
+ return
+
+
+# FACTORIES ////////////////////////////////////////////////////////////
+
+def object_bin():
+ """
+ Factory associated with MyMatBin.
+ """
+ return MyMatBin()
+
+
+# End of file
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/mat_elastic.spatialdb
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/mat_elastic.spatialdb 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/mat_elastic.spatialdb 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,14 @@
+#SPATIAL.ascii 1
+SimpleDB {
+ num-values = 3
+ value-names = density vs vp
+ value-units = kg/m^3 m/s m/s
+ num-locs = 1
+ data-dim = 0
+ space-dim = 3
+ cs-data = cartesian {
+ to-meters = 1.0
+ space-dim = 3
+ }
+}
+0.0 0.0 0.0 2700.0 3333.333333333333 5773.502691896258
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/mat_maxwell.spatialdb
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/mat_maxwell.spatialdb 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/mat_maxwell.spatialdb 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,14 @@
+#SPATIAL.ascii 1
+SimpleDB {
+ num-values = 4
+ value-names = density vs vp viscosity
+ value-units = kg/m^3 m/s m/s Pa*s
+ num-locs = 1
+ data-dim = 0
+ space-dim = 3
+ cs-data = cartesian {
+ to-meters = 1.0
+ space-dim = 3
+ }
+}
+0.0 0.0 0.0 2700.0 3333.333333333333 5773.502691896258 1.0e18
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/pylithapp.cfg
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/pylithapp.cfg 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/pylithapp.cfg 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,119 @@
+# -*- Python -*-
+[pylithapp]
+
+# ----------------------------------------------------------------------
+# journal
+# ----------------------------------------------------------------------
+[pylithapp.journal.info]
+timedependent = 1
+implicit = 1
+petsc = 1
+solverlinear = 1
+meshimporter = 1
+meshiocubit = 1
+meshiolagrit = 1
+gmvfile = 1
+psetfile = 1
+implicitelasticity = 1
+faultcohesivekin = 1
+
+# ----------------------------------------------------------------------
+# mesh_generator
+# ----------------------------------------------------------------------
+[pylithapp.mesh_generator]
+debug = 0
+
+[pylithapp.mesh_generator.importer]
+coordsys.space_dim = 3
+
+# ----------------------------------------------------------------------
+# problem
+# ----------------------------------------------------------------------
+[pylithapp.timedependent]
+total_time = 0.0*s
+default_dt = 1.0*s
+dimension = 3
+formulation = pylith.problems.Implicit
+bc = pylith.bc.BCSixSides
+interfaces = pylith.faults.SingleFault
+materials = fourmaterials
+
+# ----------------------------------------------------------------------
+# materials
+# ----------------------------------------------------------------------
+[pylithapp.timedependent.materials]
+viscoelastic_hangingwall = pylith.materials.MaxwellIsotropic3D
+viscoelastic_footwall = pylith.materials.MaxwellIsotropic3D
+
+# ----------------------------------------------------------------------
+# boundary conditions
+# ----------------------------------------------------------------------
+[pylithapp.timedependent.bc.y_neg]
+fixed_dof = [1]
+db.label = Symmetry Dirichlet BC
+db.iohandler.filename = fixeddisp_zero.spatialdb
+db.query_type = nearest
+
+[pylithapp.timedependent.bc.x_pos]
+fixed_dof = [0, 1, 2]
+db.label = Analytic displacement Dirichlet BC on +x face
+#db.iohandler.filename = fixeddisp_analytic_xpos.spatialdb
+db.iohandler.filename = fixeddisp_zero.spatialdb
+db.query_type = nearest
+
+[pylithapp.timedependent.bc.x_neg]
+fixed_dof = [0, 1, 2]
+db.label = Analytic displacement Dirichlet BC on -x face
+#db.iohandler.filename = fixeddisp_analytic_xneg.spatialdb
+db.iohandler.filename = fixeddisp_zero.spatialdb
+db.query_type = nearest
+
+[pylithapp.timedependent.bc.y_pos]
+fixed_dof = [0, 1, 2]
+db.label = Analytic displacement Dirichlet BC on +y face
+#db.iohandler.filename = fixeddisp_analytic_ypos.spatialdb
+db.iohandler.filename = fixeddisp_zero.spatialdb
+db.query_type = nearest
+
+[pylithapp.timedependent.bc.z_neg]
+fixed_dof = [0, 1, 2]
+db.label = Analytic displacement Dirichlet BC on -z face
+#db.iohandler.filename = fixeddisp_analytic_zneg.spatialdb
+db.iohandler.filename = fixeddisp_zero.spatialdb
+db.query_type = nearest
+
+# ----------------------------------------------------------------------
+# faults
+# ----------------------------------------------------------------------
+[pylithapp.timedependent.interfaces.fault]
+id = 10
+quadrature = pylith.feassemble.quadrature.Quadrature2Din3D
+mat_db.iohandler.filename = mat_elastic.spatialdb
+
+[pylithapp.timedependent.interfaces.fault.eq_src.slip_function]
+slip.label = Final slip
+slip.iohandler.filename = slip_tapered.spatialdb
+slip.query_type = nearest
+slip_rate.label = Peak slip rate
+slip_rate.iohandler.filename = sliprate_uniform.spatialdb
+slip_time.label = Slip initiation time
+slip_time.iohandler.filename = sliptime_uniform.spatialdb
+
+
+# ----------------------------------------------------------------------
+# PETSc
+# ----------------------------------------------------------------------
+[pylithapp.petsc]
+
+pc_type = asm
+ksp_rtol = 1.0e-8
+ksp_gmres_restart = 70
+
+#ksp_type = preonly
+#pc_type = lu
+#mat_type = aijmumps
+
+ksp_max_it = 500
+ksp_monitor = true
+ksp_view = true
+log_summary = true
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_cubit.cfg
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_cubit.cfg 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_cubit.cfg 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,69 @@
+# -*- Python -*-
+[pylithapp]
+
+# ----------------------------------------------------------------------
+# mesh_generator
+# ----------------------------------------------------------------------
+[pylithapp.mesh_generator]
+importer = pylith.meshio.MeshIOCubit
+
+# ----------------------------------------------------------------------
+# materials
+# ----------------------------------------------------------------------
+[pylithapp.timedependent.materials.elastic_hangingwall]
+label = Elastic material (hanging wall)
+id = 1
+db.iohandler.filename = mat_elastic.spatialdb
+quadrature = pylith.feassemble.quadrature.Quadrature3D
+quadrature.cell = pylith.feassemble.FIATLagrange
+quadrature.cell.dimension = 3
+
+[pylithapp.timedependent.materials.elastic_footwall]
+label = Elastic material (footwall)
+id = 2
+db.iohandler.filename = mat_elastic.spatialdb
+quadrature = pylith.feassemble.quadrature.Quadrature3D
+quadrature.cell = pylith.feassemble.FIATLagrange
+quadrature.cell.dimension = 3
+
+[pylithapp.timedependent.materials.viscoelastic_hangingwall]
+label = Viscoelastic material (hanging wall)
+id = 3
+db.iohandler.filename = mat_maxwell.spatialdb
+quadrature = pylith.feassemble.quadrature.Quadrature3D
+quadrature.cell = pylith.feassemble.FIATLagrange
+quadrature.cell.dimension = 3
+
+[pylithapp.timedependent.materials.viscoelastic_footwall]
+label = Viscoelastic material (footwall)
+id = 4
+db.iohandler.filename = mat_maxwell.spatialdb
+quadrature = pylith.feassemble.quadrature.Quadrature3D
+quadrature.cell = pylith.feassemble.FIATLagrange
+quadrature.cell.dimension = 3
+
+# ----------------------------------------------------------------------
+# boundary conditions
+# ----------------------------------------------------------------------
+[pylithapp.timedependent.bc.y_neg]
+label = 15
+
+[pylithapp.timedependent.bc.x_pos]
+label = 11
+
+[pylithapp.timedependent.bc.x_neg]
+label = 12
+
+[pylithapp.timedependent.bc.y_pos]
+label = 13
+
+[pylithapp.timedependent.bc.z_neg]
+label = 14
+
+# ----------------------------------------------------------------------
+# faults
+# ----------------------------------------------------------------------
+[pylithapp.timedependent.interfaces.fault]
+label = 10
+quadrature.cell = pylith.feassemble.FIATLagrange
+quadrature.cell.dimension = 2
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_hex8_0250m.cfg
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_hex8_0250m.cfg 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_hex8_0250m.cfg 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,14 @@
+# -*- Python -*-
+[pylithapp]
+
+# ----------------------------------------------------------------------
+# mesh_generator
+# ----------------------------------------------------------------------
+[pylithapp.mesh_generator.importer]
+filename = ../meshes/reverseslip_hex8_0250m.exo
+
+# ----------------------------------------------------------------------
+# output
+# ----------------------------------------------------------------------
+[pylithapp.problem.formulation.output.output]
+filename = ../results/reverseslip_hex8_0250m.vtk
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_hex8_0500m.cfg
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_hex8_0500m.cfg 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_hex8_0500m.cfg 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,14 @@
+# -*- Python -*-
+[pylithapp]
+
+# ----------------------------------------------------------------------
+# mesh_generator
+# ----------------------------------------------------------------------
+[pylithapp.mesh_generator.importer]
+filename = ../meshes/reverseslip_hex8_0500m.exo
+
+# ----------------------------------------------------------------------
+# output
+# ----------------------------------------------------------------------
+[pylithapp.problem.formulation.output.output]
+filename = ../results/reverseslip_hex8_0500m.vtk
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_hex8_1000m.cfg
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_hex8_1000m.cfg 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_hex8_1000m.cfg 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,14 @@
+# -*- Python -*-
+[pylithapp]
+
+# ----------------------------------------------------------------------
+# mesh_generator
+# ----------------------------------------------------------------------
+[pylithapp.mesh_generator.importer]
+filename = ../meshes/reverseslip_hex8_1000m.exo
+
+# ----------------------------------------------------------------------
+# output
+# ----------------------------------------------------------------------
+[pylithapp.problem.formulation.output.output]
+filename = ../results/reverseslip_hex8_1000m.vtk
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_lagrit.cfg
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_lagrit.cfg 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_lagrit.cfg 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,69 @@
+# -*- Python -*-
+[pylithapp]
+
+# ----------------------------------------------------------------------
+# mesh_generator
+# ----------------------------------------------------------------------
+[pylithapp.mesh_generator]
+importer = pylith.meshio.MeshIOLagrit
+
+# ----------------------------------------------------------------------
+# materials
+# ----------------------------------------------------------------------
+[pylithapp.timedependent.materials.elastic_pos]
+label = Elastic material +x
+id = 1
+db.iohandler.filename = mat_elastic.spatialdb
+quadrature = pylith.feassemble.quadrature.Quadrature3D
+quadrature.cell = pylith.feassemble.FIATSimplex
+quadrature.cell.shape = tetrahedron
+
+[pylithapp.timedependent.materials.elastic_neg]
+label = Elastic material -x
+id = 2
+db.iohandler.filename = mat_elastic.spatialdb
+quadrature = pylith.feassemble.quadrature.Quadrature3D
+quadrature.cell = pylith.feassemble.FIATSimplex
+quadrature.cell.shape = tetrahedron
+
+[pylithapp.timedependent.materials.viscoelastic_pos]
+label = Viscoelastic material +x
+id = 3
+db.iohandler.filename = mat_maxwell.spatialdb
+quadrature = pylith.feassemble.quadrature.Quadrature3D
+quadrature.cell = pylith.feassemble.FIATSimplex
+quadrature.cell.shape = tetrahedron
+
+[pylithapp.timedependent.materials.viscoelastic_neg]
+label = Viscoelastic material -x
+id = 4
+db.iohandler.filename = mat_maxwell.spatialdb
+quadrature = pylith.feassemble.quadrature.Quadrature3D
+quadrature.cell = pylith.feassemble.FIATSimplex
+quadrature.cell.shape = tetrahedron
+
+# ----------------------------------------------------------------------
+# boundary conditions
+# ----------------------------------------------------------------------
+[pylithapp.timedependent.bc.y_neg]
+label = boundary_yneg
+
+[pylithapp.timedependent.bc.x_pos]
+label = boundary_xpos
+
+[pylithapp.timedependent.bc.x_neg]
+label = boundary_xneg
+
+[pylithapp.timedependent.bc.y_pos]
+label = boundary_ypos
+
+[pylithapp.timedependent.bc.z_neg]
+label = boundary_zneg
+
+# ----------------------------------------------------------------------
+# faults
+# ----------------------------------------------------------------------
+[pylithapp.timedependent.interfaces.fault]
+label = fault
+quadrature.cell = pylith.feassemble.FIATSimplex
+quadrature.cell.shape = triangle
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_tet4_0250m.cfg
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_tet4_0250m.cfg 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_tet4_0250m.cfg 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,15 @@
+# -*- Python -*-
+[pylithapp]
+
+# ----------------------------------------------------------------------
+# mesh_generator
+# ----------------------------------------------------------------------
+[pylithapp.mesh_generator.importer]
+filename_gmv = ../meshes/strikeslip_tet4_0250m.gmv
+filename_pset = ../meshes/strikeslip_tet4_0250m.pset
+
+# ----------------------------------------------------------------------
+# output
+# ----------------------------------------------------------------------
+[pylithapp.problem.formulation.output.output]
+filename = ../results/strikeslip_tet4_0250m.vtk
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_tet4_0500m.cfg
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_tet4_0500m.cfg 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_tet4_0500m.cfg 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,15 @@
+# -*- Python -*-
+[pylithapp]
+
+# ----------------------------------------------------------------------
+# mesh_generator
+# ----------------------------------------------------------------------
+[pylithapp.mesh_generator.importer]
+filename_gmv = ../meshes/strikeslip_tet4_0500m.gmv
+filename_pset = ../meshes/strikeslip_tet4_0500m.pset
+
+# ----------------------------------------------------------------------
+# output
+# ----------------------------------------------------------------------
+[pylithapp.problem.formulation.output.output]
+filename = ../results/strikeslip_tet4_0500m.vtk
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_tet4_1000m.cfg
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_tet4_1000m.cfg 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/reverseslip_tet4_1000m.cfg 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,15 @@
+# -*- Python -*-
+[pylithapp]
+
+# ----------------------------------------------------------------------
+# mesh_generator
+# ----------------------------------------------------------------------
+[pylithapp.mesh_generator.importer]
+filename_gmv = ../meshes/strikeslip_tet4_1000m.gmv
+filename_pset = ../meshes/strikeslip_tet4_1000m.pset
+
+# ----------------------------------------------------------------------
+# output
+# ----------------------------------------------------------------------
+[pylithapp.problem.formulation.output.output]
+filename = ../results/strikeslip_tet4_1000m.vtk
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/slip_tapered.spatialdb
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/slip_tapered.spatialdb 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/slip_tapered.spatialdb 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,375 @@
+// WARNING: This distribution only works for meshes with vertices on a
+// regular grid with a resolution no finer than 250m.
+
+#SPATIAL.ascii 1
+SimpleDB {
+ num-values = 3
+ value-names = left-lateral-slip reverse-slip fault-opening
+ value-units = m m m
+ num-locs = 324
+ data-dim = 2
+ space-dim = 3
+ cs-data = cartesian {
+ to-meters = 1.0e+3
+ space-dim = 3
+ }
+}
+// y = 0
+ 4.0 0.0 0.0 0.0 1.0 0.0
+16.00 0.0 -12.00 0.0 1.0 0.0
+16.25 0.0 -12.25 0.0 0.9375 0.0
+16.50 0.0 -12.50 0.0 0.8750 0.0
+16.75 0.0 -12.75 0.0 0.8125 0.0
+17.00 0.0 -13.00 0.0 0.7500 0.0
+17.25 0.0 -13.25 0.0 0.6875 0.0
+17.50 0.0 -13.50 0.0 0.6250 0.0
+17.75 0.0 -13.75 0.0 0.5625 0.0
+18.00 0.0 -14.00 0.0 0.5000 0.0
+18.25 0.0 -14.25 0.0 0.4375 0.0
+18.50 0.0 -14.50 0.0 0.3750 0.0
+18.75 0.0 -14.75 0.0 0.3125 0.0
+19.00 0.0 -15.00 0.0 0.2500 0.0
+19.25 0.0 -15.25 0.0 0.1875 0.0
+19.50 0.0 -15.50 0.0 0.1250 0.0
+19.75 0.0 -15.75 0.0 0.0625 0.0
+20.00 0.0 -16.00 0.0 0.0 0.0
+
+// y = 12
+ 4.0 12.00 0.0 0.0 1.0 0.0
+16.00 12.00 -12.00 0.0 1.0 0.0
+16.25 12.00 -12.25 0.0 0.9375 0.0
+16.50 12.00 -12.50 0.0 0.8750 0.0
+16.75 12.00 -12.75 0.0 0.8125 0.0
+17.00 12.00 -13.00 0.0 0.7500 0.0
+17.25 12.00 -13.25 0.0 0.6875 0.0
+17.50 12.00 -13.50 0.0 0.6250 0.0
+17.75 12.00 -13.75 0.0 0.5625 0.0
+18.00 12.00 -14.00 0.0 0.5000 0.0
+18.25 12.00 -14.25 0.0 0.4375 0.0
+18.50 12.00 -14.50 0.0 0.3750 0.0
+18.75 12.00 -14.75 0.0 0.3125 0.0
+19.00 12.00 -15.00 0.0 0.2500 0.0
+19.25 12.00 -15.25 0.0 0.1875 0.0
+19.50 12.00 -15.50 0.0 0.1250 0.0
+19.75 12.00 -15.75 0.0 0.0625 0.0
+20.00 12.00 -16.00 0.0 0.0 0.0
+
+// y = 12.25
+ 4.0 12.25 0.0 0.0 0.9375 0.0
+16.00 12.25 -12.00 0.0 0.9375 0.0
+16.25 12.25 -12.25 0.0 0.9375 0.0
+16.50 12.25 -12.50 0.0 0.8750 0.0
+16.75 12.25 -12.75 0.0 0.8125 0.0
+17.00 12.25 -13.00 0.0 0.7500 0.0
+17.25 12.25 -13.25 0.0 0.6875 0.0
+17.50 12.25 -13.50 0.0 0.6250 0.0
+17.75 12.25 -13.75 0.0 0.5625 0.0
+18.00 12.25 -14.00 0.0 0.5000 0.0
+18.25 12.25 -14.25 0.0 0.4375 0.0
+18.50 12.25 -14.50 0.0 0.3750 0.0
+18.75 12.25 -14.75 0.0 0.3125 0.0
+19.00 12.25 -15.00 0.0 0.2500 0.0
+19.25 12.25 -15.25 0.0 0.1875 0.0
+19.50 12.25 -15.50 0.0 0.1250 0.0
+19.75 12.25 -15.75 0.0 0.0625 0.0
+20.00 12.25 -16.00 0.0 0.0 0.0
+
+// y = 12.50
+ 4.0 12.50 0.0 0.0 0.8750 0.0
+16.00 12.50 -12.00 0.0 0.8750 0.0
+16.25 12.50 -12.25 0.0 0.8750 0.0
+16.50 12.50 -12.50 0.0 0.8750 0.0
+16.75 12.50 -12.75 0.0 0.8125 0.0
+17.00 12.50 -13.00 0.0 0.7500 0.0
+17.25 12.50 -13.25 0.0 0.6875 0.0
+17.50 12.50 -13.50 0.0 0.6250 0.0
+17.75 12.50 -13.75 0.0 0.5625 0.0
+18.00 12.50 -14.00 0.0 0.5000 0.0
+18.25 12.50 -14.25 0.0 0.4375 0.0
+18.50 12.50 -14.50 0.0 0.3750 0.0
+18.75 12.50 -14.75 0.0 0.3125 0.0
+19.00 12.50 -15.00 0.0 0.2500 0.0
+19.25 12.50 -15.25 0.0 0.1875 0.0
+19.50 12.50 -15.50 0.0 0.1250 0.0
+19.75 12.50 -15.75 0.0 0.0625 0.0
+20.00 12.50 -16.00 0.0 0.0 0.0
+
+// y = 12.75
+ 4.0 12.75 0.0 0.0 0.8125 0.0
+16.00 12.75 -12.00 0.0 0.8125 0.0
+16.25 12.75 -12.25 0.0 0.8125 0.0
+16.50 12.75 -12.50 0.0 0.8125 0.0
+16.75 12.75 -12.75 0.0 0.8125 0.0
+17.00 12.75 -13.00 0.0 0.7500 0.0
+17.25 12.75 -13.25 0.0 0.6875 0.0
+17.50 12.75 -13.50 0.0 0.6250 0.0
+17.75 12.75 -13.75 0.0 0.5625 0.0
+18.00 12.75 -14.00 0.0 0.5000 0.0
+18.25 12.75 -14.25 0.0 0.4375 0.0
+18.50 12.75 -14.50 0.0 0.3750 0.0
+18.75 12.75 -14.75 0.0 0.3125 0.0
+19.00 12.75 -15.00 0.0 0.2500 0.0
+19.25 12.75 -15.25 0.0 0.1875 0.0
+19.50 12.75 -15.50 0.0 0.1250 0.0
+19.75 12.75 -15.75 0.0 0.0625 0.0
+20.00 12.75 -16.00 0.0 0.0 0.0
+
+// y = 13.00
+ 4.0 13.00 0.0 0.0 0.7500 0.0
+16.00 13.00 -12.00 0.0 0.7500 0.0
+16.25 13.00 -12.25 0.0 0.7500 0.0
+16.50 13.00 -12.50 0.0 0.7500 0.0
+16.75 13.00 -12.75 0.0 0.7500 0.0
+17.00 13.00 -13.00 0.0 0.7500 0.0
+17.25 13.00 -13.25 0.0 0.6875 0.0
+17.50 13.00 -13.50 0.0 0.6250 0.0
+17.75 13.00 -13.75 0.0 0.5625 0.0
+18.00 13.00 -14.00 0.0 0.5000 0.0
+18.25 13.00 -14.25 0.0 0.4375 0.0
+18.50 13.00 -14.50 0.0 0.3750 0.0
+18.75 13.00 -14.75 0.0 0.3125 0.0
+19.00 13.00 -15.00 0.0 0.2500 0.0
+19.25 13.00 -15.25 0.0 0.1875 0.0
+19.50 13.00 -15.50 0.0 0.1250 0.0
+19.75 13.00 -15.75 0.0 0.0625 0.0
+20.00 13.00 -16.00 0.0 0.0 0.0
+
+// y = 13.25
+ 4.0 13.25 0.0 0.0 0.6875 0.0
+16.00 13.25 -12.00 0.0 0.6875 0.0
+16.25 13.25 -12.25 0.0 0.6875 0.0
+16.50 13.25 -12.50 0.0 0.6875 0.0
+16.75 13.25 -12.75 0.0 0.6875 0.0
+17.00 13.25 -13.00 0.0 0.6875 0.0
+17.25 13.25 -13.25 0.0 0.6875 0.0
+17.50 13.25 -13.50 0.0 0.6250 0.0
+17.75 13.25 -13.75 0.0 0.5625 0.0
+18.00 13.25 -14.00 0.0 0.5000 0.0
+18.25 13.25 -14.25 0.0 0.4375 0.0
+18.50 13.25 -14.50 0.0 0.3750 0.0
+18.75 13.25 -14.75 0.0 0.3125 0.0
+19.00 13.25 -15.00 0.0 0.2500 0.0
+19.25 13.25 -15.25 0.0 0.1875 0.0
+19.50 13.25 -15.50 0.0 0.1250 0.0
+19.75 13.25 -15.75 0.0 0.0625 0.0
+20.00 13.25 -16.00 0.0 0.0 0.0
+
+// y = 13.50
+ 4.0 13.50 0.0 0.0 0.6250 0.0
+16.00 13.50 -12.00 0.0 0.6250 0.0
+16.25 13.50 -12.25 0.0 0.6250 0.0
+16.50 13.50 -12.50 0.0 0.6250 0.0
+16.75 13.50 -12.75 0.0 0.6250 0.0
+17.00 13.50 -13.00 0.0 0.6250 0.0
+17.25 13.50 -13.25 0.0 0.6250 0.0
+17.50 13.50 -13.50 0.0 0.6250 0.0
+17.75 13.50 -13.75 0.0 0.5625 0.0
+18.00 13.50 -14.00 0.0 0.5000 0.0
+18.25 13.50 -14.25 0.0 0.4375 0.0
+18.50 13.50 -14.50 0.0 0.3750 0.0
+18.75 13.50 -14.75 0.0 0.3125 0.0
+19.00 13.50 -15.00 0.0 0.2500 0.0
+19.25 13.50 -15.25 0.0 0.1875 0.0
+19.50 13.50 -15.50 0.0 0.1250 0.0
+19.75 13.50 -15.75 0.0 0.0625 0.0
+20.00 13.50 -16.00 0.0 0.0 0.0
+
+// y = 13.75
+ 4.0 13.75 0.0 0.0 0.5625 0.0
+16.00 13.75 -12.00 0.0 0.5625 0.0
+16.25 13.75 -12.25 0.0 0.5625 0.0
+16.50 13.75 -12.50 0.0 0.5625 0.0
+16.75 13.75 -12.75 0.0 0.5625 0.0
+17.00 13.75 -13.00 0.0 0.5625 0.0
+17.25 13.75 -13.25 0.0 0.5625 0.0
+17.50 13.75 -13.50 0.0 0.5625 0.0
+17.75 13.75 -13.75 0.0 0.5625 0.0
+18.00 13.75 -14.00 0.0 0.5000 0.0
+18.25 13.75 -14.25 0.0 0.4375 0.0
+18.50 13.75 -14.50 0.0 0.3750 0.0
+18.75 13.75 -14.75 0.0 0.3125 0.0
+19.00 13.75 -15.00 0.0 0.2500 0.0
+19.25 13.75 -15.25 0.0 0.1875 0.0
+19.50 13.75 -15.50 0.0 0.1250 0.0
+19.75 13.75 -15.75 0.0 0.0625 0.0
+20.00 13.75 -16.00 0.0 0.0 0.0
+
+// y = 14.00
+ 4.0 14.00 0.0 0.0 0.5000 0.0
+16.00 14.00 -12.00 0.0 0.5000 0.0
+16.25 14.00 -12.25 0.0 0.5000 0.0
+16.50 14.00 -12.50 0.0 0.5000 0.0
+16.75 14.00 -12.75 0.0 0.5000 0.0
+17.00 14.00 -13.00 0.0 0.5000 0.0
+17.25 14.00 -13.25 0.0 0.5000 0.0
+17.50 14.00 -13.50 0.0 0.5000 0.0
+17.75 14.00 -13.75 0.0 0.5000 0.0
+18.00 14.00 -14.00 0.0 0.5000 0.0
+18.25 14.00 -14.25 0.0 0.4375 0.0
+18.50 14.00 -14.50 0.0 0.3750 0.0
+18.75 14.00 -14.75 0.0 0.3125 0.0
+19.00 14.00 -15.00 0.0 0.2500 0.0
+19.25 14.00 -15.25 0.0 0.1875 0.0
+19.50 14.00 -15.50 0.0 0.1250 0.0
+19.75 14.00 -15.75 0.0 0.0625 0.0
+20.00 14.00 -16.00 0.0 0.0 0.0
+
+// y = 14.25
+ 4.0 14.25 0.0 0.0 0.4375 0.0
+16.00 14.25 -12.00 0.0 0.4375 0.0
+16.25 14.25 -12.25 0.0 0.4375 0.0
+16.50 14.25 -12.50 0.0 0.4375 0.0
+16.75 14.25 -12.75 0.0 0.4375 0.0
+17.00 14.25 -13.00 0.0 0.4375 0.0
+17.25 14.25 -13.25 0.0 0.4375 0.0
+17.50 14.25 -13.50 0.0 0.4375 0.0
+17.75 14.25 -13.75 0.0 0.4375 0.0
+18.00 14.25 -14.00 0.0 0.4375 0.0
+18.25 14.25 -14.25 0.0 0.4375 0.0
+18.50 14.25 -14.50 0.0 0.3750 0.0
+18.75 14.25 -14.75 0.0 0.3125 0.0
+19.00 14.25 -15.00 0.0 0.2500 0.0
+19.25 14.25 -15.25 0.0 0.1875 0.0
+19.50 14.25 -15.50 0.0 0.1250 0.0
+19.75 14.25 -15.75 0.0 0.0625 0.0
+20.00 14.25 -16.00 0.0 0.0 0.0
+
+// y = 14.50
+ 4.0 14.50 0.0 0.0 0.3750 0.0
+16.00 14.50 -12.00 0.0 0.3750 0.0
+16.25 14.50 -12.25 0.0 0.3750 0.0
+16.50 14.50 -12.50 0.0 0.3750 0.0
+16.75 14.50 -12.75 0.0 0.3750 0.0
+17.00 14.50 -13.00 0.0 0.3750 0.0
+17.25 14.50 -13.25 0.0 0.3750 0.0
+17.50 14.50 -13.50 0.0 0.3750 0.0
+17.75 14.50 -13.75 0.0 0.3750 0.0
+18.00 14.50 -14.00 0.0 0.3750 0.0
+18.25 14.50 -14.25 0.0 0.3750 0.0
+18.50 14.50 -14.50 0.0 0.3750 0.0
+18.75 14.50 -14.75 0.0 0.3125 0.0
+19.00 14.50 -15.00 0.0 0.2500 0.0
+19.25 14.50 -15.25 0.0 0.1875 0.0
+19.50 14.50 -15.50 0.0 0.1250 0.0
+19.75 14.50 -15.75 0.0 0.0625 0.0
+20.00 14.50 -16.00 0.0 0.0 0.0
+
+// y = 14.75
+ 4.0 14.75 0.0 0.0 0.3125 0.0
+16.00 14.75 -12.00 0.0 0.3125 0.0
+16.25 14.75 -12.25 0.0 0.3125 0.0
+16.50 14.75 -12.50 0.0 0.3125 0.0
+16.75 14.75 -12.75 0.0 0.3125 0.0
+17.00 14.75 -13.00 0.0 0.3125 0.0
+17.25 14.75 -13.25 0.0 0.3125 0.0
+17.50 14.75 -13.50 0.0 0.3125 0.0
+17.75 14.75 -13.75 0.0 0.3125 0.0
+18.00 14.75 -14.00 0.0 0.3125 0.0
+18.25 14.75 -14.25 0.0 0.3125 0.0
+18.50 14.75 -14.50 0.0 0.3125 0.0
+18.75 14.75 -14.75 0.0 0.3125 0.0
+19.00 14.75 -15.00 0.0 0.2500 0.0
+19.25 14.75 -15.25 0.0 0.1875 0.0
+19.50 14.75 -15.50 0.0 0.1250 0.0
+19.75 14.75 -15.75 0.0 0.0625 0.0
+20.00 14.75 -16.00 0.0 0.0 0.0
+
+// y = 15.00
+ 4.0 15.00 0.0 0.0 0.2500 0.0
+16.00 15.00 -12.00 0.0 0.2500 0.0
+16.25 15.00 -12.25 0.0 0.2500 0.0
+16.50 15.00 -12.50 0.0 0.2500 0.0
+16.75 15.00 -12.75 0.0 0.2500 0.0
+17.00 15.00 -13.00 0.0 0.2500 0.0
+17.25 15.00 -13.25 0.0 0.2500 0.0
+17.50 15.00 -13.50 0.0 0.2500 0.0
+17.75 15.00 -13.75 0.0 0.2500 0.0
+18.00 15.00 -14.00 0.0 0.2500 0.0
+18.25 15.00 -14.25 0.0 0.2500 0.0
+18.50 15.00 -14.50 0.0 0.2500 0.0
+18.75 15.00 -14.75 0.0 0.2500 0.0
+19.00 15.00 -15.00 0.0 0.2500 0.0
+19.25 15.00 -15.25 0.0 0.1875 0.0
+19.50 15.00 -15.50 0.0 0.1250 0.0
+19.75 15.00 -15.75 0.0 0.0625 0.0
+20.00 15.00 -16.00 0.0 0.0 0.0
+
+// y = 15.25
+ 4.0 15.25 0.0 0.0 0.1875 0.0
+16.00 15.25 -12.00 0.0 0.1875 0.0
+16.25 15.25 -12.25 0.0 0.1875 0.0
+16.50 15.25 -12.50 0.0 0.1875 0.0
+16.75 15.25 -12.75 0.0 0.1875 0.0
+17.00 15.25 -13.00 0.0 0.1875 0.0
+17.25 15.25 -13.25 0.0 0.1875 0.0
+17.50 15.25 -13.50 0.0 0.1875 0.0
+17.75 15.25 -13.75 0.0 0.1875 0.0
+18.00 15.25 -14.00 0.0 0.1875 0.0
+18.25 15.25 -14.25 0.0 0.1875 0.0
+18.50 15.25 -14.50 0.0 0.1875 0.0
+18.75 15.25 -14.75 0.0 0.1875 0.0
+19.00 15.25 -15.00 0.0 0.1875 0.0
+19.25 15.25 -15.25 0.0 0.1875 0.0
+19.50 15.25 -15.50 0.0 0.1250 0.0
+19.75 15.25 -15.75 0.0 0.0625 0.0
+20.00 15.25 -16.00 0.0 0.0 0.0
+
+// y = 15.50
+ 4.0 15.50 0.0 0.0 0.1250 0.0
+16.00 15.50 -12.00 0.0 0.1250 0.0
+16.25 15.50 -12.25 0.0 0.1250 0.0
+16.50 15.50 -12.50 0.0 0.1250 0.0
+16.75 15.50 -12.75 0.0 0.1250 0.0
+17.00 15.50 -13.00 0.0 0.1250 0.0
+17.25 15.50 -13.25 0.0 0.1250 0.0
+17.50 15.50 -13.50 0.0 0.1250 0.0
+17.75 15.50 -13.75 0.0 0.1250 0.0
+18.00 15.50 -14.00 0.0 0.1250 0.0
+18.25 15.50 -14.25 0.0 0.1250 0.0
+18.50 15.50 -14.50 0.0 0.1250 0.0
+18.75 15.50 -14.75 0.0 0.1250 0.0
+19.00 15.50 -15.00 0.0 0.1250 0.0
+19.25 15.50 -15.25 0.0 0.1250 0.0
+19.50 15.50 -15.50 0.0 0.1250 0.0
+19.75 15.50 -15.75 0.0 0.0625 0.0
+20.00 15.50 -16.00 0.0 0.0 0.0
+
+// y = 15.75
+ 4.0 15.75 0.0 0.0 0.0625 0.0
+16.00 15.75 -12.00 0.0 0.0625 0.0
+16.25 15.75 -12.25 0.0 0.0625 0.0
+16.50 15.75 -12.50 0.0 0.0625 0.0
+16.75 15.75 -12.75 0.0 0.0625 0.0
+17.00 15.75 -13.00 0.0 0.0625 0.0
+17.25 15.75 -13.25 0.0 0.0625 0.0
+17.50 15.75 -13.50 0.0 0.0625 0.0
+17.75 15.75 -13.75 0.0 0.0625 0.0
+18.00 15.75 -14.00 0.0 0.0625 0.0
+18.25 15.75 -14.25 0.0 0.0625 0.0
+18.50 15.75 -14.50 0.0 0.0625 0.0
+18.75 15.75 -14.75 0.0 0.0625 0.0
+19.00 15.75 -15.00 0.0 0.0625 0.0
+19.25 15.75 -15.25 0.0 0.0625 0.0
+19.50 15.75 -15.50 0.0 0.0625 0.0
+19.75 15.75 -15.75 0.0 0.0625 0.0
+20.00 15.75 -16.00 0.0 0.0 0.0
+
+// y = 16.00
+ 4.0 16.00 0.0 0.0 0.0 0.0
+16.00 16.00 -12.00 0.0 0.0 0.0
+16.25 16.00 -12.25 0.0 0.0 0.0
+16.50 16.00 -12.50 0.0 0.0 0.0
+16.75 16.00 -12.75 0.0 0.0 0.0
+17.00 16.00 -13.00 0.0 0.0 0.0
+17.25 16.00 -13.25 0.0 0.0 0.0
+17.50 16.00 -13.50 0.0 0.0 0.0
+17.75 16.00 -13.75 0.0 0.0 0.0
+18.00 16.00 -14.00 0.0 0.0 0.0
+18.25 16.00 -14.25 0.0 0.0 0.0
+18.50 16.00 -14.50 0.0 0.0 0.0
+18.75 16.00 -14.75 0.0 0.0 0.0
+19.00 16.00 -15.00 0.0 0.0 0.0
+19.25 16.00 -15.25 0.0 0.0 0.0
+19.50 16.00 -15.50 0.0 0.0 0.0
+19.75 16.00 -16.00 0.0 0.0 0.0
+20.00 16.00 -16.00 0.0 0.0 0.0
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/slip_uniform.spatialdb
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/slip_uniform.spatialdb 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/slip_uniform.spatialdb 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,14 @@
+#SPATIAL.ascii 1
+SimpleDB {
+ num-values = 3
+ value-names = left-lateral-slip reverse-slip fault-opening
+ value-units = m m m
+ num-locs = 1
+ data-dim = 0
+ space-dim = 3
+ cs-data = cartesian {
+ to-meters = 1.0
+ space-dim = 3
+ }
+}
+0.0 0.0 0.0 -1.0 0.0 0.0
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/sliprate_uniform.spatialdb
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/sliprate_uniform.spatialdb 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/sliprate_uniform.spatialdb 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,14 @@
+#SPATIAL.ascii 1
+SimpleDB {
+ num-values = 1
+ value-names = slip-rate
+ value-units = m/s
+ num-locs = 1
+ data-dim = 0
+ space-dim = 3
+ cs-data = cartesian {
+ to-meters = 1.0
+ space-dim = 3
+ }
+}
+0.0 0.0 0.0 1.0e+6
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/sliptime_uniform.spatialdb
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/sliptime_uniform.spatialdb 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/sliptime_uniform.spatialdb 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,14 @@
+#SPATIAL.ascii 1
+SimpleDB {
+ num-values = 1
+ value-names = slip-time
+ value-units = s
+ num-locs = 1
+ data-dim = 0
+ space-dim = 3
+ cs-data = cartesian {
+ to-meters = 1.0
+ space-dim = 3
+ }
+}
+0.0 0.0 0.0 -1.0
Added: short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/timedep.cfg
===================================================================
--- short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/timedep.cfg 2008-01-07 22:58:05 UTC (rev 8989)
+++ short/3D/PyLith/benchmarks/trunk/quasistatic/reversenog/parameters/timedep.cfg 2008-01-08 00:40:12 UTC (rev 8990)
@@ -0,0 +1,16 @@
+# -*- Python -*-
+[pylithapp]
+
+# ----------------------------------------------------------------------
+# problem
+# ----------------------------------------------------------------------
+[pylithapp.timedependent]
+total_time = 10.0*year
+default_dt = 0.1*year
+
+# ----------------------------------------------------------------------
+# output
+# ----------------------------------------------------------------------
+[pylithapp.problem.formulation.output.solutioniovtk]
+output_freq = time_step
+time_step = 1.0*year
More information about the cig-commits
mailing list