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
|
<?xml version="1.0" encoding="utf-8"?>
<sbml xmlns="http://www.sbml.org/sbml/level2" level="2" version="1" >
<model>
<notes>
<p xmlns="http://www.w3.org/1999/xhtml">
Simple Model one compartment, with two species.
</p>
</notes>
<listOfCompartments>
<compartment id="compartment" size="1" />
<compartment id="vol1" size="1" />
</listOfCompartments>
<listOfSpecies>
<species id="Node0" boundaryCondition="false" initialConcentration="0" compartment="vol1" />
<species id="Node1" boundaryCondition="false" initialConcentration="0" compartment="vol1" />
</listOfSpecies>
<listOfParameters>
<parameter id="J0_k" value="0.1" />
</listOfParameters>
<listOfReactions>
<reaction id="J0" reversible="false">
<listOfReactants>
<speciesReference species="Node0" stoichiometry="1" />
</listOfReactants>
<listOfProducts>
<speciesReference species="Node1" stoichiometry="1" />
</listOfProducts>
<kineticLaw>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times />
<ci>
J0_k
</ci>
<ci>
Node0
</ci>
</apply>
</math>
</kineticLaw>
</reaction>
</listOfReactions>
</model>
</sbml>
|