1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
<?xml version="1.0" encoding="UTF-8"?>
<sbml xmlns="http://www.sbml.org/sbml/level2/version4" level="2" version="4">
<model>
<listOfCompartments>
<compartment id="c" units="litre" constant="false"/>
</listOfCompartments>
<listOfParameters>
<parameter id="p" value="1" units="ampere" constant="false"/>
<parameter id="p1" value="1" units="dimensionless"/>
</listOfParameters>
<listOfRules>
<assignmentRule variable="p">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<apply>
<times/>
<ci> c </ci>
<ci> p1 </ci>
</apply>
</math>
</assignmentRule>
</listOfRules>
</model>
</sbml>
|