-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path3.4.2.1.component_child_order_2.cellml
More file actions
50 lines (50 loc) · 1.49 KB
/
3.4.2.1.component_child_order_2.cellml
File metadata and controls
50 lines (50 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<!-- CellML Test Suite. https://github.com/MichaelClerx/cellml-validation -->
<!-- CellML 1.0, 3.4.2.1: Component children can come in any order. Although
units, variable, reaction, math is preferred. -->
<model name="component_child_order_2"
xmlns="http://www.cellml.org/cellml/1.0#"
xmlns:cellml="http://www.cellml.org/cellml/1.0#">
<component name="A">
<variable name="e" units="dimensionless" />
<reaction>
<variable_ref variable="d">
<role role="reactant" />
</variable_ref>
</reaction>
<variable name="d" units="dimensionless" />
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<eq/>
<ci>a</ci>
<cn cellml:units="dimensionless">1</cn>
</apply>
<apply>
<eq/>
<ci>b</ci>
<cn cellml:units="dimensionless">2</cn>
</apply>
</math>
<variable name="c" units="dimensionless" />
<units name="a">
<unit units="volt" />
</units>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<eq/>
<ci>c</ci>
<cn cellml:units="dimensionless">3</cn>
</apply>
</math>
<reaction>
<variable_ref variable="e">
<role role="reactant" />
</variable_ref>
</reaction>
<variable name="b" units="dimensionless" />
<units name="b">
<unit units="volt" />
</units>
<variable name="a" units="dimensionless" />
</component>
</model>