-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path7.4.3.5.role_direction_reverse_rate.cellml
35 lines (35 loc) · 1.23 KB
/
7.4.3.5.role_direction_reverse_rate.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
<?xml version="1.0" encoding="UTF-8"?>
<!-- CellML Test Suite. https://github.com/MichaelClerx/cellml-validation -->
<!-- CellML 1.0, 7.4.3.5: A rate must have direction forward -->
<model name="role_direction_reverse_rate"
xmlns="http://www.cellml.org/cellml/1.0#"
xmlns:cellml="http://www.cellml.org/cellml/1.0#">
<component name="x">
<variable name="A" units="dimensionless" initial_value="20" />
<variable name="B" units="dimensionless" initial_value="20" />
<variable name="C" units="dimensionless" initial_value="5" />
<variable name="r" units="dimensionless" />
<reaction>
<variable_ref variable="A">
<role role="reactant" />
</variable_ref>
<variable_ref variable="B">
<role role="reactant" />
</variable_ref>
<variable_ref variable="C">
<role role="product" />
</variable_ref>
<variable_ref variable="r">
<role role="rate" direction="reverse">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<eq/>
<ci>r</ci>
<cn cellml:units="dimensionless">1</cn>
</apply>
</math>
</role>
</variable_ref>
</reaction>
</component>
</model>