forked from MichaelClerx/cellml-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4.overdefined_ode_and_ode.cellml
More file actions
39 lines (39 loc) · 1.08 KB
/
4.overdefined_ode_and_ode.cellml
File metadata and controls
39 lines (39 loc) · 1.08 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- CellML Test Suite. https://github.com/MichaelClerx/cellml-validation -->
<!-- CellML 1.0, 4: CellML does not say a model can't be overdefined. -->
<model name="overdefined_ode_and_ode"
xmlns="http://www.cellml.org/cellml/1.0#"
xmlns:cellml="http://www.cellml.org/cellml/1.0#">
<units name="volt_per_second">
<unit units="volt" />
<unit units="second" exponent="-1" />
</units>
<component name="A">
<variable name="x" units="volt" initial_value="3" />
<variable name="t" units="second" />
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<eq/>
<apply>
<diff/>
<bvar>
<ci>t</ci>
</bvar>
<ci>x</ci>
</apply>
<cn cellml:units="volt_per_second">0.001</cn>
</apply>
<apply>
<eq/>
<apply>
<diff/>
<bvar>
<ci>t</ci>
</bvar>
<ci>x</ci>
</apply>
<cn cellml:units="volt_per_second">2</cn>
</apply>
</math>
</component>
</model>