-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathch07-dimer-det.xml
57 lines (57 loc) · 1.98 KB
/
ch07-dimer-det.xml
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
51
52
53
54
55
56
57
<?xml version="1.0" encoding="UTF-8"?>
<sbml xmlns="http://www.sbml.org/sbml/level3/version1/core" level="3" version="1">
<model id="DimerKineticsDet" name="Dimerisation Kinetics (deterministic)" substanceUnits="mole" timeUnits="second" volumeUnits="litre" extentUnits="mole">
<listOfCompartments>
<compartment id="Cell" size="1e-15"/>
</listOfCompartments>
<listOfSpecies>
<species id="P" compartment="Cell" initialConcentration="5e-07"/>
<species id="P2" compartment="Cell" initialConcentration="0"/>
</listOfSpecies>
<listOfReactions>
<reaction id="Dimerisation" reversible="false">
<listOfReactants>
<speciesReference species="P" stoichiometry="2"/>
</listOfReactants>
<listOfProducts>
<speciesReference species="P2" stoichiometry="1"/>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci> Cell </ci>
<ci> k1 </ci>
<ci> P </ci>
<ci> P </ci>
</apply>
</math>
<listOfLocalParameters>
<localParameter id="k1" value="500000"/>
</listOfLocalParameters>
</kineticLaw>
</reaction>
<reaction id="Dissociation" reversible="false">
<listOfReactants>
<speciesReference species="P2" stoichiometry="1"/>
</listOfReactants>
<listOfProducts>
<speciesReference species="P" stoichiometry="2"/>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci> Cell </ci>
<ci> k2 </ci>
<ci> P2 </ci>
</apply>
</math>
<listOfLocalParameters>
<localParameter id="k2" value="0.2"/>
</listOfLocalParameters>
</kineticLaw>
</reaction>
</listOfReactions>
</model>
</sbml>