[cig-commits] r15521 - in short/3D/PyLith/trunk/doc/userguide: materials runpylith
willic3 at geodynamics.org
willic3 at geodynamics.org
Mon Aug 10 02:28:01 PDT 2009
Author: willic3
Date: 2009-08-10 02:28:00 -0700 (Mon, 10 Aug 2009)
New Revision: 15521
Modified:
short/3D/PyLith/trunk/doc/userguide/materials/materials.lyx
short/3D/PyLith/trunk/doc/userguide/runpylith/runpylith.lyx
Log:
Updated runpylith section for new methods of dealing with databases (new
names for material properties databases, for example).
Minor change in equation for materials section.
Modified: short/3D/PyLith/trunk/doc/userguide/materials/materials.lyx
===================================================================
--- short/3D/PyLith/trunk/doc/userguide/materials/materials.lyx 2009-08-05 22:24:01 UTC (rev 15520)
+++ short/3D/PyLith/trunk/doc/userguide/materials/materials.lyx 2009-08-10 09:28:00 UTC (rev 15521)
@@ -2488,7 +2488,7 @@
2 & -1 & -1\\
-1 & 2 & -1\\
-1 & -1 & 2\end{array}\right];\,\,1\leq l,j\leq3\label{eq:60}\\
-\frac{\partial^{t+\Delta t}e_{l}^{\prime}}{\partial^{t+\Delta t}\epsilon_{j}}=\delta_{lj}\,\,;\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\textrm{otherwise}\nonumber \end{gather}
+\frac{\partial^{t+\Delta t}e_{l}^{\prime}}{\partial^{t+\Delta t}\epsilon_{j}}=\delta_{lj}\,\,;\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\,\textrm{otherwise.}\nonumber \end{gather}
\end_inset
Modified: short/3D/PyLith/trunk/doc/userguide/runpylith/runpylith.lyx
===================================================================
--- short/3D/PyLith/trunk/doc/userguide/runpylith/runpylith.lyx 2009-08-05 22:24:01 UTC (rev 15520)
+++ short/3D/PyLith/trunk/doc/userguide/runpylith/runpylith.lyx 2009-08-10 09:28:00 UTC (rev 15521)
@@ -1,4 +1,4 @@
-#LyX 1.6.2 created this file. For more info see http://www.lyx.org/
+#LyX 1.6.0 created this file. For more info see http://www.lyx.org/
\lyxformat 345
\begin_document
\begin_header
@@ -2708,15 +2708,17 @@
\end_layout
\begin_layout LyX-Code
-db = spatialdata.spatialdb.UniformDB ; Set the db to a UniformDB
+db_properties = spatialdata.spatialdb.UniformDB ; Set the db to a UniformDB
\end_layout
\begin_layout LyX-Code
-db.values = [vp,vs,density] ; Set the names of the values in the database
+db_properties.values = [vp,vs,density] ; Set the names of the values in the
+ database
\end_layout
\begin_layout LyX-Code
-db.data = [5773.5*m/s, 3333.3*m/s, 2700.0*kg/m**3] ; Set the values in the database
+db_properties.data = [5773.5*m/s, 3333.3*m/s, 2700.0*kg/m**3] ; Set the values
+ in the database
\end_layout
\begin_layout Subsubsection
@@ -2823,33 +2825,26 @@
\end_layout
\begin_layout LyX-Code
-db = spatialdata.spatialdb.SCECCVMH ; Set the database to the SCEC CVM-H
+db_properties = spatialdata.spatialdb.SCECCVMH ; Set the database to the SCEC
+ CVM-H
\end_layout
\begin_layout LyX-Code
-db.data_dir = /home/johndoe/data/sceccvm-h/vx53 ; Directory containing the
- database
-\begin_inset Newline newline
-\end_inset
-
-data files
+db_properties.data_dir = /home/johndoe/data/sceccvm-h/vx53 ; Directory containing
+ the database data files
\end_layout
\begin_layout LyX-Code
-min_vs = 500*m/s
+db_properties.min_vs = 500*m/s
\end_layout
\begin_layout LyX-Code
-squash = True ; Turn on squashing
+db_properties.squash = True ; Turn on squashing
\end_layout
\begin_layout LyX-Code
-squash_limit = -1000.0 ; Only distort the geometry above z = -1 km in flattening
- the
-\begin_inset Newline newline
-\end_inset
-
-earth
+db_properties.squash_limit = -1000.0 ; Only distort the geometry above z =
+ -1 km in flattening the earth
\end_layout
\begin_layout Subsection
@@ -2885,22 +2880,18 @@
\end_layout
\begin_layout LyX-Code
-db = spatialdata.spatialdb.CompositeDB
+db_properties = spatialdata.spatialdb.CompositeDB
\end_layout
\begin_layout LyX-Code
-db.db_A = spatialdata.spatialdb.SCECCVMH
+db_properties.db_A = spatialdata.spatialdb.SCECCVMH
\end_layout
\begin_layout LyX-Code
-db.db_B = spatialdata.spatialdb.SimpleDB
+db_properties.db_B = spatialdata.spatialdb.SimpleDB
\end_layout
\begin_layout LyX-Code
-quadrature = pylith.feassemble.quadrature.Quadrature3D
-\end_layout
-
-\begin_layout LyX-Code
quadrature.cell = pylith.feassemble.FIATSimplex
\end_layout
@@ -2913,7 +2904,7 @@
\end_layout
\begin_layout LyX-Code
-[pylithapp.timedependent.materials.maxwell.db]
+[pylithapp.timedependent.materials.maxwell.db_properties]
\end_layout
\begin_layout LyX-Code
@@ -2974,8 +2965,12 @@
mat_vert_var_maxwell.spatialdb
\family default
).
- The user must first specify the db as a
+ The user must first specify
\family typewriter
+db_properties
+\family default
+ as a
+\family typewriter
CompositeDB
\family default
, and must then give the two components of this database (
More information about the CIG-COMMITS
mailing list