-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path5.5.2.boolean_trig_arcsin.cellml
More file actions
32 lines (32 loc) · 959 Bytes
/
5.5.2.boolean_trig_arcsin.cellml
File metadata and controls
32 lines (32 loc) · 959 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
32
<?xml version="1.0" encoding="UTF-8"?>
<!-- CellML Test Suite. https://github.com/MichaelClerx/cellml-validation -->
<!-- CellML 1.0, 5.5.2: Booleans can't appear as a arcsin operand -->
<model name="boolean_trig_arcsin"
xmlns="http://www.cellml.org/cellml/1.0#"
xmlns:cellml="http://www.cellml.org/cellml/1.0#">
<component name="A">
<variable name="a" units="dimensionless" />
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<eq/>
<ci>a</ci>
<piecewise>
<piece>
<cn cellml:units="dimensionless">0</cn>
<apply>
<eq />
<apply>
<arcsin />
<true />
</apply>
<true />
</apply>
</piece>
<otherwise>
<cn cellml:units="dimensionless">1</cn>
</otherwise>
</piecewise>
</apply>
</math>
</component>
</model>