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
|
<?xml version="1.0" encoding="UTF-8"?>
<sbml xmlns="http://www.sbml.org/sbml/level3/version1/core" xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version1" level="3" version="1" fbc:required="true">
<model id="m" volumeUnits="litre" substanceUnits="mole" timeUnits="second" extentUnits="mole">
<listOfUnitDefinitions>
<unitDefinition id="vol_per_time">
<listOfUnits>
<unit kind="litre" exponent="1" scale="0" multiplier="1"/>
<unit kind="second" exponent="-1" scale="0" multiplier="1"/>
</listOfUnits>
</unitDefinition>
</listOfUnitDefinitions>
<listOfCompartments>
<compartment id="c" spatialDimensions="3" constant="true" size="1"/>
</listOfCompartments>
<listOfSpecies>
<species id="S" compartment="c" initialAmount="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false" fbc:charge="2" fbc:chemicalFormula="s20"/>
<species id="S1" compartment="c" initialAmount="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false" fbc:charge="2" fbc:chemicalFormula="s20"/>
<species id="S2" compartment="c" initialAmount="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false" fbc:charge="2" fbc:chemicalFormula="s20"/>
<species id="S3" compartment="c" initialAmount="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false" fbc:charge="2" fbc:chemicalFormula="s20"/>
<species id="S4" compartment="c" initialAmount="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false" fbc:charge="2" fbc:chemicalFormula="s20"/>
</listOfSpecies>
<listOfReactions>
<reaction id="R1" reversible="false" fast="false">
<listOfReactants>
<speciesReference species="S1" constant="false" stoichiometry="1"/>
</listOfReactants>
<listOfProducts>
<speciesReference species="S2" constant="true" stoichiometry="1"/>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci> k </ci>
<ci> S1 </ci>
</apply>
</math>
<listOfLocalParameters>
<localParameter id="k" value="0.1" units="vol_per_time"/>
</listOfLocalParameters>
</kineticLaw>
</reaction>
<reaction id="R2" reversible="false" fast="false">
<listOfReactants>
<speciesReference species="S2" constant="false" stoichiometry="1"/>
</listOfReactants>
<listOfProducts>
<speciesReference species="S4" constant="true" stoichiometry="1"/>
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci> k </ci>
<ci> S2 </ci>
</apply>
</math>
<listOfLocalParameters>
<localParameter id="k" value="0.1" units="vol_per_time"/>
</listOfLocalParameters>
</kineticLaw>
</reaction>
</listOfReactions>
<fbc:listOfFluxBounds>
<fbc:fluxBound fbc:id="s" fbc:reaction="J0" fbc:operation="equal" fbc:value="10"/>
</fbc:listOfFluxBounds>
<fbc:listOfObjectives fbc:activeObjective="obj1">
<fbc:objective fbc:id="c" fbc:type="maximize">
<fbc:listOfFluxes>
<fbc:fluxObjective fbc:reaction="J8" fbc:coefficient="1"/>
</fbc:listOfFluxes>
</fbc:objective>
</fbc:listOfObjectives>
</model>
</sbml>
|