-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path4.2.3_3.2_mathml_arithmetic_n_ary.cellml
More file actions
36 lines (36 loc) · 1.1 KB
/
4.2.3_3.2_mathml_arithmetic_n_ary.cellml
File metadata and controls
36 lines (36 loc) · 1.1 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- CellML Test Suite. https://github.com/MichaelClerx/cellml-validation -->
<!-- CellML 1.0, 4.2.3: The MathML "CellML subset"
N-ary plus and times -->
<model name="mathml_arithmetic_n_ary"
xmlns="http://www.cellml.org/cellml/1.0#"
xmlns:cellml="http://www.cellml.org/cellml/1.0#">
<component name="A">
<variable name="plus" units="volt" />
<variable name="times" units="volt" />
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<eq/>
<ci>plus</ci>
<apply>
<plus />
<cn cellml:units="volt">1</cn>
<cn cellml:units="volt">2</cn>
<cn cellml:units="volt">3</cn>
<cn cellml:units="volt">4</cn>
</apply>
</apply>
<apply>
<eq/>
<ci>times</ci>
<apply>
<times />
<cn cellml:units="dimensionless">2</cn>
<cn cellml:units="dimensionless">3</cn>
<cn cellml:units="dimensionless">4</cn>
<cn cellml:units="volt">1.2</cn>
</apply>
</apply>
</math>
</component>
</model>