forked from MichaelClerx/cellml-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path7.4.3.reaction_reversible_no.cellml
More file actions
38 lines (38 loc) · 1.6 KB
/
7.4.3.reaction_reversible_no.cellml
File metadata and controls
38 lines (38 loc) · 1.6 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- CellML Test Suite. https://github.com/MichaelClerx/cellml-validation -->
<!-- CellML 1.0, 7.4.3: A non-reversible reaction, based on the spec example -->
<model name="reaction_reversible_no"
xmlns="http://www.cellml.org/cellml/1.0#"
xmlns:cellml="http://www.cellml.org/cellml/1.0#">
<component name="reaction">
<variable name="A" units="dimensionless" initial_value="100" />
<variable name="delta_A" units="dimensionless" initial_value="1" />
<variable name="B" units="dimensionless" initial_value="100" />
<variable name="delta_B" units="dimensionless" initial_value="2" />
<variable name="E" units="dimensionless" initial_value="0" />
<variable name="delta_E" units="dimensionless" initial_value="0" />
<variable name="r" units="dimensionless" />
<reaction reversible="no">
<variable_ref variable="A">
<role role="reactant" delta_variable="delta_A" stoichiometry="1" direction="forward" />
</variable_ref>
<variable_ref variable="B">
<role role="reactant" delta_variable="delta_B" stoichiometry="1" />
</variable_ref>
<variable_ref variable="E">
<role role="product" delta_variable="delta_E" stoichiometry="1" />
</variable_ref>
<variable_ref variable="r">
<role role="rate">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<eq />
<ci>r</ci>
<cn cellml:units="dimensionless">0.5</cn>
</apply>
</math>
</role>
</variable_ref>
</reaction>
</component>
</model>