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

willic3 at geodynamics.org willic3 at geodynamics.org
Sun Jun 14 19:52:10 PDT 2009


Author: willic3
Date: 2009-06-14 19:52:09 -0700 (Sun, 14 Jun 2009)
New Revision: 15250

Added:
   short/3D/PyLith/trunk/examples/3d/hex8/fixeddisp_axial.spatialdb
   short/3D/PyLith/trunk/examples/3d/hex8/mat_genmaxwell.spatialdb
Removed:
   short/3D/PyLith/trunk/examples/3d/hex8/mat_genviscoelastic.spatialdb
Modified:
   short/3D/PyLith/trunk/examples/3d/hex8/Makefile.am
Log:
Updated for new and modified filenames.



Modified: short/3D/PyLith/trunk/examples/3d/hex8/Makefile.am
===================================================================
--- short/3D/PyLith/trunk/examples/3d/hex8/Makefile.am	2009-06-15 02:45:52 UTC (rev 15249)
+++ short/3D/PyLith/trunk/examples/3d/hex8/Makefile.am	2009-06-15 02:52:09 UTC (rev 15250)
@@ -17,6 +17,7 @@
 	dislocation.jpg \
 	finalslip.spatialdb \
 	finalslip_rupture.spatialdb \
+	fixeddisp_axial.spatialdb \
 	fixeddisp_shear.spatialdb \
 	geometry.jou \
 	gravity.cfg \
@@ -26,12 +27,16 @@
 	hex8-mesh.jpg \
 	initial_state.spatialdb \
 	mat_elastic.spatialdb \
-	mat_viscoelastic.spatialdb \
+	mat_maxwell.spatialdb \
+	mat_genmaxwell.spatialdb \
+	mat_powerlaw.spatialdb \
 	mesh_hex8_1000m.cub \
 	mesh_hex8_1000m.jou \
+	planestrain.cfg \
 	pylithapp.cfg \
 	savageprescott-t100.jpg \
 	savageprescott.cfg \
+	savageprescott-powerlaw.cfg \
 	shear.jpg \
 	shearxy.cfg \
 	sliprate_creep.spatialdb \

Added: short/3D/PyLith/trunk/examples/3d/hex8/fixeddisp_axial.spatialdb
===================================================================
--- short/3D/PyLith/trunk/examples/3d/hex8/fixeddisp_axial.spatialdb	                        (rev 0)
+++ short/3D/PyLith/trunk/examples/3d/hex8/fixeddisp_axial.spatialdb	2009-06-15 02:52:09 UTC (rev 15250)
@@ -0,0 +1,32 @@
+// -*- C++ -*- (tell Emacs to use C++ mode for syntax highlighting)
+//
+// This spatial database specifies the distribution of the
+// displacement field for Dirichlet boundary conditions associated
+// with axial displacements on -x and +x
+//
+// dof-0: Ux(x) = 0
+// dof-1: Uy(x) = 1.0 m * x / 3 km
+// dof-2: Uz(x) = 0
+//
+#SPATIAL.ascii 1
+SimpleDB {
+  num-values = 3
+  value-names =  dof-0  dof-1  dof-2
+  value-units =  m  m  m
+  num-locs = 2
+  data-dim = 1 // locations form a line
+  space-dim = 3
+  cs-data = cartesian {
+    to-meters = 1.0e+3 // specify coordinates in km
+    space-dim = 3
+  }
+}
+// Columns are
+// (1) x coordinate (km)
+// (2) y coordinate (km)
+// (3) z coordinate (km)
+// (4) Ux (m)
+// (5) Uy (m)
+// (6) Uz (m)
+-3.0  0.0  0.0   -1.0   0.0  0.0
++3.0  0.0  0.0    1.0   0.0  0.0

Copied: short/3D/PyLith/trunk/examples/3d/hex8/mat_genmaxwell.spatialdb (from rev 15248, short/3D/PyLith/trunk/examples/3d/hex8/mat_genviscoelastic.spatialdb)
===================================================================
--- short/3D/PyLith/trunk/examples/3d/hex8/mat_genmaxwell.spatialdb	                        (rev 0)
+++ short/3D/PyLith/trunk/examples/3d/hex8/mat_genmaxwell.spatialdb	2009-06-15 02:52:09 UTC (rev 15250)
@@ -0,0 +1,33 @@
+// -*- C++ -*- (tell Emacs to use C++ mode for syntax highlighting)
+//
+// This spatial database specifies the distribution of material
+// properties for a Generalized Maxwell viscoelastic material. In
+// this case, the material properties are uniform.
+//
+#SPATIAL.ascii 1
+SimpleDB {
+  num-values = 9 // number of material property values
+  value-names =  density vs vp shear_ratio_1 shear_ratio_2 shear_ratio_3 viscosity_1 viscosity_2 viscosity_3 // names of the material property values
+  value-units =  kg/m**3  m/s  m/s None None None Pa*s Pa*s Pa*s // units
+  num-locs = 1 // number of locations
+  data-dim = 0
+  space-dim = 3
+  cs-data = cartesian {
+    to-meters = 1.0
+    space-dim = 3
+  }
+}
+// Columns are
+// (1) x coordinate (m)
+// (2) y coordinate (m)
+// (3) z coordinate (m)
+// (4) density (kg/m^3)
+// (5) vs (m/s)
+// (6) vp (m/s)
+// (7) shear ratio 1 (dimensionless)
+// (8) shear ratio 2 (dimensionless)
+// (9) shear ratio 3 (dimensionless)
+// (10) viscosity 1 (Pa-s)
+// (11) viscosity 2 (Pa-S)
+// (12) viscosity 3 (Pa-s)
+0.0  0.0  0.0   2700.0  1054.09255338946   1825.741858350554    0.5  0.5  0.0  1.0e19  1.0e18  1.0e20

Deleted: short/3D/PyLith/trunk/examples/3d/hex8/mat_genviscoelastic.spatialdb
===================================================================
--- short/3D/PyLith/trunk/examples/3d/hex8/mat_genviscoelastic.spatialdb	2009-06-15 02:45:52 UTC (rev 15249)
+++ short/3D/PyLith/trunk/examples/3d/hex8/mat_genviscoelastic.spatialdb	2009-06-15 02:52:09 UTC (rev 15250)
@@ -1,33 +0,0 @@
-// -*- C++ -*- (tell Emacs to use C++ mode for syntax highlighting)
-//
-// This spatial database specifies the distribution of material
-// properties for a Generalized Maxwell viscoelastic material. In
-// this case, the material properties are uniform.
-//
-#SPATIAL.ascii 1
-SimpleDB {
-  num-values = 9 // number of material property values
-  value-names =  density vs vp shear_ratio_1 shear_ratio_2 shear_ratio_3 viscosity_1 viscosity_2 viscosity_3 // names of the material property values
-  value-units =  kg/m**3  m/s  m/s None None None Pa*s Pa*s Pa*s // units
-  num-locs = 1 // number of locations
-  data-dim = 0
-  space-dim = 3
-  cs-data = cartesian {
-    to-meters = 1.0
-    space-dim = 3
-  }
-}
-// Columns are
-// (1) x coordinate (m)
-// (2) y coordinate (m)
-// (3) z coordinate (m)
-// (4) density (kg/m^3)
-// (5) vs (m/s)
-// (6) vp (m/s)
-// (7) shear ratio 1 (dimensionless)
-// (8) shear ratio 2 (dimensionless)
-// (9) shear ratio 3 (dimensionless)
-// (10) viscosity 1 (Pa-s)
-// (11) viscosity 2 (Pa-S)
-// (12) viscosity 3 (Pa-s)
-0.0  0.0  0.0   2700.0  1054.09255338946   1825.741858350554    0.5  0.5  0.0  1.0e19  1.0e18  1.0e20



More information about the CIG-COMMITS mailing list