-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path5.2.7.unit_checking_aliases.cellml
More file actions
43 lines (43 loc) · 1.17 KB
/
5.2.7.unit_checking_aliases.cellml
File metadata and controls
43 lines (43 loc) · 1.17 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- CellML Test Suite. https://github.com/MichaelClerx/cellml-validation -->
<!-- CellML 1.0, 5.2.7: Unit checking: Metre=meter, Litre=liter -->
<model name="unit_checking_aliases"
xmlns="http://www.cellml.org/cellml/1.0#"
xmlns:cellml="http://www.cellml.org/cellml/1.0#">
<component name="A">
<variable name="p" units="metre" />
<variable name="q" units="litre" />
<variable name="r" units="metre" />
<variable name="s" units="litre" />
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<eq/>
<ci>p</ci>
<cn cellml:units="meter">5</cn>
</apply>
<apply>
<eq/>
<ci>q</ci>
<cn cellml:units="liter">4</cn>
</apply>
<apply>
<eq/>
<ci>r</ci>
<apply>
<plus />
<cn cellml:units="metre">1</cn>
<cn cellml:units="meter">2</cn>
</apply>
</apply>
<apply>
<eq/>
<ci>s</ci>
<apply>
<plus />
<cn cellml:units="litre">1</cn>
<cn cellml:units="liter">2</cn>
</apply>
</apply>
</math>
</component>
</model>