[cig-commits] r5999 - in short/3D/PyLith/trunk/examples: . twotri3

brad at geodynamics.org brad at geodynamics.org
Sat Feb 10 11:00:59 PST 2007


Author: brad
Date: 2007-02-10 11:00:58 -0800 (Sat, 10 Feb 2007)
New Revision: 5999

Added:
   short/3D/PyLith/trunk/examples/twotri3/
   short/3D/PyLith/trunk/examples/twotri3/pylithapp.cfg
   short/3D/PyLith/trunk/examples/twotri3/twotri3.mesh
Log:
Started setting up a two-element example.

Added: short/3D/PyLith/trunk/examples/twotri3/pylithapp.cfg
===================================================================
--- short/3D/PyLith/trunk/examples/twotri3/pylithapp.cfg	2007-02-10 14:13:36 UTC (rev 5998)
+++ short/3D/PyLith/trunk/examples/twotri3/pylithapp.cfg	2007-02-10 19:00:58 UTC (rev 5999)
@@ -0,0 +1,6 @@
+[pylithapp]
+# MPI options
+#launcher.command = mpiexec
+
+# Mesh generator options
+mesh_generator.importer.filename = twotri3.mesh

Added: short/3D/PyLith/trunk/examples/twotri3/twotri3.mesh
===================================================================
--- short/3D/PyLith/trunk/examples/twotri3/twotri3.mesh	2007-02-10 14:13:36 UTC (rev 5998)
+++ short/3D/PyLith/trunk/examples/twotri3/twotri3.mesh	2007-02-10 19:00:58 UTC (rev 5999)
@@ -0,0 +1,21 @@
+mesh = {
+  dimension = 2
+  vertices = {
+    dimension = 2
+    count = 4
+    coordinates = {
+      -1.0   0.0
+       0.0   1.0
+       0.0  -1.0
+       1.0   0.0
+    }
+  }
+  cells = {
+    num-corners = 3
+    count = 2
+    simplices = {
+      0  2  1
+      1  2  3
+    }
+  }
+}



More information about the cig-commits mailing list