-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path4.algebraic_model.cellml
More file actions
31 lines (31 loc) · 926 Bytes
/
4.algebraic_model.cellml
File metadata and controls
31 lines (31 loc) · 926 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- CellML Test Suite. https://github.com/MichaelClerx/cellml-validation -->
<!-- Variables can be described via any algebraic equation -->
<model name="algebraic_model"
xmlns="http://www.cellml.org/cellml/1.0#"
xmlns:cellml="http://www.cellml.org/cellml/1.0#">
<component name="A">
<variable name="x" units="dimensionless" />
<variable name="y" units="dimensionless" />
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<eq/>
<apply>
<plus />
<ci>x</ci>
<ci>y</ci>
</apply>
<cn cellml:units="dimensionless">2</cn>
</apply>
<apply>
<eq/>
<apply>
<divide />
<cn cellml:units="dimensionless">1</cn>
<ci>y</ci>
</apply>
<cn cellml:units="dimensionless">7</cn>
</apply>
</math>
</component>
</model>