source: trunk/examples/zoo/mesh/tool.xml @ 3456

Last change on this file since 3456 was 3456, checked in by gah, 11 years ago

change name of tag from unstructured_grid to unstructured.

  • Property svn:mime-type set to application/xml
File size: 3.0 KB
Line 
1<?xml version="1.0"?>
2<run>
3 <tool>
4    <title>mesh</title>
5      <about>Example of a Rappture &lt;mesh&gt; object.
6
7Meshes define the geometry for field.  Here are variety of 2D mesh types.
8See &lt;mesh&gt; and &lt;field&gt; elements for details.
9
10When you click the Simulate button, the inputs will be used to generate output fields.
11        </about>
12
13  <about>Press Simulate to view results.</about>
14  <command>tclsh @tool/mesh.tcl @driver</command>
15 </tool>
16 <input>
17   <choice id="mesh">
18    <option>
19     <about>
20      <label>unirect2d (deprecated)</label>
21      <description>Uniform 2D grid using old-style unirect2d element.</description>
22     </about>
23     <value>unirect2d</value>
24    </option>
25    <option>
26     <about>
27      <label>cloud (deprecated)</label>
28      <description>2 dimensional cloud of points using old-style cloud element.</description>
29     </about>
30     <value>oldcloud</value>
31    </option>
32    <option>
33     <about>
34      <label>mesh as cloud</label>
35      <description>2 dimensional cloud of points.</description>
36     </about>
37     <value>cloud</value>
38    </option>
39    <option>
40     <about>
41      <label>mesh as uniform grid</label>
42      <description>uniform 2 dimensional grid of points.</description>
43     </about>
44     <value>regular</value>
45    </option>
46    <option>
47     <about>
48      <label>mesh as irregular grid</label>
49      <description>irregular 2 dimensional grid of points.</description>
50     </about>
51     <value>irregular</value>
52    </option>
53    <option>
54     <about>
55      <label>mesh as hybrid irregular/regular grid</label>
56      <description>Hybrid 2 dimensional grid of points X (irregular), Y (regular).</description>
57     </about>
58     <value>hybrid</value>
59    </option>
60    <option>
61     <about>
62      <label>mesh as triangular grid</label>
63      <description>Triangular 2 dimensional grid.</description>
64     </about>
65     <value>triangular</value>
66    </option>
67    <option>
68     <about>
69      <label>mesh as cell types</label>
70      <description>Unstructured 2 dimensional grid of cells.</description>
71     </about>
72     <value>cells</value>
73    </option>
74    <option>
75     <about>
76      <label>mesh as unstructured grid</label>
77      <description>Unstructured 2D grid.</description>
78     </about>
79     <value>unstructured</value>
80    </option>
81    <option>
82     <about>
83      <label>general nodes and elements description</label>
84      <description>Unstructured 2 dimensional grid of cells using nodes and elements.</description>
85     </about>
86     <value>generic</value>
87    </option>
88    <option>
89     <about>
90      <label>VTK mesh</label>
91      <description>Partial VTK file representing the mesh.</description>
92     </about>
93     <value>vtkmesh</value>
94    </option>
95    <option>
96     <about>
97      <label>VTK format (field + mesh)</label>
98      <description>Single VTK file representing both the mesh and field.</description>
99     </about>
100     <value>vtkfield</value>
101    </option>
102    <default>triangular</default>
103   </choice>
104 </input>
105</run>
Note: See TracBrowser for help on using the repository browser.