-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path5.2.7.unit_checking_derivatives_degree.cellml
50 lines (50 loc) · 1.48 KB
/
5.2.7.unit_checking_derivatives_degree.cellml
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, 5.2.7: Unit checking: higher-order derivatives -->
<model name="unit_checking_derivatives_degree"
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>
<units name="volt_per_second_squared">
<unit units="volt" />
<unit units="second" exponent="-2" />
</units>
<component name="A">
<variable name="time" units="second" initial_value="0" />
<variable name="V" units="volt" initial_value = "-0.08" />
<variable name="x" units="volt" initial_value = "1" />
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<eq/>
<apply>
<diff/>
<bvar>
<ci>time</ci>
</bvar>
<degree>
<cn cellml:units="dimensionless">1</cn>
</degree>
<ci>V</ci>
</apply>
<cn cellml:units="volt_per_second">0.001</cn>
</apply>
<apply>
<eq/>
<apply>
<diff/>
<bvar>
<ci>time</ci>
</bvar>
<degree>
<cn cellml:units="dimensionless">2</cn>
</degree>
<ci>x</ci>
</apply>
<cn cellml:units="volt_per_second_squared">0.001</cn>
</apply>
</math>
</component>
</model>