[cig-commits] r15437 - short/2.5D/benchmarks/savageprescott/parameters

willic3 at geodynamics.org willic3 at geodynamics.org
Tue Jul 7 02:17:26 PDT 2009


Author: willic3
Date: 2009-07-07 02:17:26 -0700 (Tue, 07 Jul 2009)
New Revision: 15437

Modified:
   short/2.5D/benchmarks/savageprescott/parameters/mat_elastic.spatialdb
   short/2.5D/benchmarks/savageprescott/parameters/mat_maxwell.spatialdb
   short/2.5D/benchmarks/savageprescott/parameters/pylithapp.cfg
Log:
Updated parameters for PyLith 1.4.
Fixed incorrect units in material databases.
Increased viscosity because original value resulted in a stable time
step that was too short.



Modified: short/2.5D/benchmarks/savageprescott/parameters/mat_elastic.spatialdb
===================================================================
--- short/2.5D/benchmarks/savageprescott/parameters/mat_elastic.spatialdb	2009-07-07 09:15:07 UTC (rev 15436)
+++ short/2.5D/benchmarks/savageprescott/parameters/mat_elastic.spatialdb	2009-07-07 09:17:26 UTC (rev 15437)
@@ -7,7 +7,7 @@
 SimpleDB {
   num-values = 3 // number of material property values
   value-names =  density vs vp // names of the material property values
-  value-units =  kg/m^3  m/s  m/s // units (conversions not supported)
+  value-units =  kg/m**3  m/s  m/s // units (conversions not supported)
   num-locs = 1 // number of locations
   data-dim = 0
   space-dim = 3

Modified: short/2.5D/benchmarks/savageprescott/parameters/mat_maxwell.spatialdb
===================================================================
--- short/2.5D/benchmarks/savageprescott/parameters/mat_maxwell.spatialdb	2009-07-07 09:15:07 UTC (rev 15436)
+++ short/2.5D/benchmarks/savageprescott/parameters/mat_maxwell.spatialdb	2009-07-07 09:17:26 UTC (rev 15437)
@@ -7,7 +7,7 @@
 SimpleDB {
   num-values = 4 // number of material property values
   value-names =  density vs vp viscosity // names of the material property values
-  value-units =  kg/m^3  m/s  m/s Pa*s // units (conversions not supported)
+  value-units =  kg/m**3  m/s  m/s Pa*s // units (conversions not supported)
   num-locs = 1 // number of locations
   data-dim = 0
   space-dim = 3
@@ -23,4 +23,4 @@
 // (4) density (kg/m^3)
 // (5) vs (m/s)
 // (6) vp (m/s)
-0.0  0.0  0.0   2700.0  3333.333333333333  5773.502691896258 4.73364e19
+0.0  0.0  0.0   2700.0  3333.333333333333  5773.502691896258 9.46728e19

Modified: short/2.5D/benchmarks/savageprescott/parameters/pylithapp.cfg
===================================================================
--- short/2.5D/benchmarks/savageprescott/parameters/pylithapp.cfg	2009-07-07 09:15:07 UTC (rev 15436)
+++ short/2.5D/benchmarks/savageprescott/parameters/pylithapp.cfg	2009-07-07 09:17:26 UTC (rev 15437)
@@ -82,13 +82,13 @@
 [pylithapp.timedependent.materials.elastic]
 label = Upper elastic layer
 id = 1
-properties_db.iohandler.filename = mat_elastic.spatialdb
+db_properties.iohandler.filename = mat_elastic.spatialdb
 quadrature.cell.dimension = 3
 
 [pylithapp.timedependent.materials.maxwell]
 label = Lower Maxwell material
 id = 2
-properties_db.iohandler.filename = mat_maxwell.spatialdb
+db_properties.iohandler.filename = mat_maxwell.spatialdb
 quadrature.cell.dimension = 3
 output.cell_data_fields = [total_strain,viscous_strain,stress]
 output.cell_info_fields = [mu,lambda,density,maxwell_time]
@@ -97,45 +97,45 @@
 # boundary conditions
 # ----------------------------------------------------------------------
 [pylithapp.timedependent.bc.x_pos]
-fixed_dof = [0, 1]
+bc_dof = [0, 1]
 label = 11
-db.label = Dirichlet BC on +x
+db_initial.label = Dirichlet BC on +x
 # We change spatial database for the rate of change from FixedDOFDB
 # (which has zero velocity) to UniformDB (which allows nonzero
 # velocities).
-rate_db = spatialdata.spatialdb.UniformDB
-rate_db.label = Dirichlet rate BC on +x
-rate_db.values = [dof-0,dof-1]
+db_rate = spatialdata.spatialdb.UniformDB
+db_rate.label = Dirichlet rate BC on +x
+db_rate.values = [displacement-rate-x,displacement-rate-y,rate-start-time]
 # This rate (in m/s) gives a value of 1 cm/year.
-rate_db.data = [0.0,3.1688087814e-10]
+db_rate.data = [0.0*m/s,3.1688087814e-10*m/s,0.0*year]
 
 [pylithapp.timedependent.bc.x_neg]
-fixed_dof = [0, 1]
+bc_dof = [0, 1]
 label = 12
-db.label = Dirichlet BC on -x
+db_initial.label = Dirichlet BC on -x
 # We change spatial database for the rate of change from FixedDOFDB
 # (which has zero velocity) to UniformDB (which allows nonzero
 # velocities).
-rate_db = spatialdata.spatialdb.UniformDB
-rate_db.label = Dirichlet rate BC on -x
-rate_db.values = [dof-0,dof-1]
+db_rate = spatialdata.spatialdb.UniformDB
+db_rate.label = Dirichlet rate BC on -x
+db_rate.values = [displacement-rate-x,displacement-rate-y,rate-start-time]
 # This rate (in m/s) gives a value of -1 cm/year.
-rate_db.data = [0.0,-3.1688087814e-10]
+db_rate.data = [0.0*m/s,-3.1688087814e-10*m/s,0.0*year]
 
 [pylithapp.timedependent.bc.z_neg]
-fixed_dof = [2]
+bc_dof = [2]
 label = 16
-db.label = Dirichlet BC on -z
+db_initial.label = Dirichlet BC on -z
 
 [pylithapp.timedependent.bc.y_pos]
-fixed_dof = [0]
+bc_dof = [0]
 label = 19
-db.label = Dirichlet BC on +y
+db_initial.label = Dirichlet BC on +y
 
 [pylithapp.timedependent.bc.y_neg]
-fixed_dof = [0]
+bc_dof = [0]
 label = 18
-db.label = Dirichlet BC on -y
+db_initial.label = Dirichlet BC on -y
 
 # ----------------------------------------------------------------------
 # faults



More information about the CIG-COMMITS mailing list