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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
<?xml version="1.0" encoding="UTF-8"?>
<sbml xmlns="http://www.sbml.org/sbml/level2/version4" level="2" version="4"
xmlns:math="http://www.w3.org/1998/Math/MathML">
<model id="assignmentrules">
<listOfUnitDefinitions>
<unitDefinition id="per_second">
<listOfUnits>
<unit kind="second" exponent="-1"/>
</listOfUnits>
</unitDefinition>
</listOfUnitDefinitions>
<listOfCompartments>
<compartment id="cell" size="1"/>
</listOfCompartments>
<listOfSpecies>
<species id="X0" compartment="cell" initialConcentration="1"/>
<species id="X1" compartment="cell" initialConcentration="0"/>
<species id="T" compartment="cell" initialConcentration="0"/>
<species id="S1" compartment="cell" initialConcentration="0"/>
<species id="S2" compartment="cell" initialConcentration="0"/>
</listOfSpecies>
<listOfParameters>
<parameter id="Keq" value="2.5" units="dimensionless"/>
</listOfParameters>
<listOfRules>
<assignmentRule variable="S1">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<divide/>
<ci> T </ci>
<apply>
<plus/>
<cn> 1 </cn>
<ci> Keq </ci>
</apply>
</apply>
</math>
</assignmentRule>
<assignmentRule variable="S2">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci> Keq </ci>
<ci> S1 </ci>
</apply>
</math>
</assignmentRule>
</listOfRules>
<listOfReactions>
<reaction id="in">
<listOfReactants>
<speciesReference species="X0"/>
</listOfReactants>
<listOfProducts>
<speciesReference species="T"/>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci> k1 </ci>
<ci> X0 </ci>
<ci> cell </ci>
</apply>
</math>
<listOfParameters>
<parameter id="k1" value="0.1" units="per_second"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction id="out">
<listOfReactants>
<speciesReference species="T"/>
</listOfReactants>
<listOfProducts>
<speciesReference species="X1"/>
</listOfProducts>
<listOfModifiers>
<modifierSpeciesReference species="S2"/>
</listOfModifiers>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci> k2 </ci>
<ci> S2 </ci>
<ci> cell </ci>
</apply>
</math>
<listOfParameters>
<parameter id="k2" value="0.15" units="per_second"/>
</listOfParameters>
</kineticLaw>
</reaction>
</listOfReactions>
</model>
</sbml>
|