source: branches/blt4/examples/lang/R/driver.xml @ 2742

Last change on this file since 2742 was 2742, checked in by gah, 13 years ago

sync with trunk

  • Property svn:mime-type set to application/xml
File size: 2.4 KB
Line 
1<?xml version="1.0"?>
2<run>
3    <tool>
4        <about>Press Simulate to view results.</about>
5        <command>tclsh @tool/fermi.tcl @driver</command>
6        <version>
7            <rappture>
8                <language>R</language>
9                <revision>$LastChangedRevision: 2408 $</revision>
10                <modified>$LastChangedDate: 2011-08-24 22:01:44 -0400 (Wed, 24 Aug 2011) $</modified>
11            </rappture>
12        </version>
13    </tool>
14    <input>
15        <number id="temperature">
16            <about>
17                <label>Ambient temperature</label>
18                <description>Temperature of the environment.</description>
19            </about>
20            <units>K</units>
21            <min>0K</min>
22            <max>500K</max>
23            <default>300K</default>
24            <current>300K</current>
25            <preset>
26                <value>300K</value>
27                <label>300K (room temperature)</label>
28            </preset>
29            <preset>
30                <value>77K</value>
31                <label>77K (liquid nitrogen)</label>
32            </preset>
33            <preset>
34                <value>4.2K</value>
35                <label>4.2K (liquid helium)</label>
36            </preset>
37        </number>
38        <number id="Ef">
39            <about>
40                <label>Fermi Level</label>
41                <description>Energy at center of distribution.</description>
42            </about>
43            <units>eV</units>
44            <min>-10eV</min>
45            <max>10eV</max>
46            <default>0eV</default>
47            <current>0eV</current>
48        </number>
49        <string id="ee">
50            <about>
51                <label>my string</label>
52                <description>my string's description</description>
53            </about>
54            <default>blah blah blah</default>
55            <current>blah blah blah blah</current>
56        </string>
57        <integer id="ii">
58            <about>
59                <label>my integer</label>
60                <description>my integer's description</description>
61            </about>
62            <default>4</default>
63            <current>5</current>
64        </integer>
65        <boolean id="bb">
66            <about>
67                <label>my integer</label>
68                <description>my integer's description</description>
69            </about>
70            <default>false</default>
71            <current>true</current>
72        </boolean>
73    </input>
74</run>
Note: See TracBrowser for help on using the repository browser.