/usr/share/SBMLToolbox/Test/test-data/l1v1.xml is in sbmltoolbox 4.1.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <?xml version="1.0" encoding="UTF-8"?>
<sbml xmlns="http://www.sbml.org/sbml/level1" level="1" version="1">
<model name="basic_model_l1v1">
<listOfUnitDefinitions>
<unitDefinition name="substance">
<listOfUnits>
<unit kind="mole" scale="-3"/>
</listOfUnits>
</unitDefinition>
<unitDefinition name="mmls">
<listOfUnits>
<unit kind="mole" scale="-3"/>
<unit kind="litre" exponent="-1"/>
<unit kind="second" exponent="-1"/>
</listOfUnits>
</unitDefinition>
<unitDefinition name="mm">
<listOfUnits>
<unit kind="mole" scale="-3"/>
</listOfUnits>
</unitDefinition>
<unitDefinition name="vol_per_time">
<listOfUnits>
<unit kind="litre"/>
<unit kind="second" exponent="-1"/>
</listOfUnits>
</unitDefinition>
</listOfUnitDefinitions>
<listOfCompartments>
<compartment name="compartment" volume="1"/>
</listOfCompartments>
<listOfSpecies>
<specie name="S1" compartment="compartment" initialAmount="1.5"/>
<specie name="S2" compartment="compartment" initialAmount="1.45"/>
<specie name="x0" compartment="compartment" initialAmount="1"/>
</listOfSpecies>
<listOfParameters>
<parameter name="vm" value="2" units="mmls"/>
<parameter name="km" value="2" units="mm"/>
</listOfParameters>
<listOfReactions>
<reaction name="R1" reversible="false">
<listOfReactants>
<specieReference specie="S1"/>
</listOfReactants>
<listOfProducts>
<specieReference specie="S2"/>
</listOfProducts>
<kineticLaw formula="k_1*S1">
<listOfParameters>
<parameter name="k_1" value="1" units="vol_per_time"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction name="R2" reversible="false">
<listOfReactants>
<specieReference specie="S2"/>
</listOfReactants>
<listOfProducts>
<specieReference specie="S1"/>
</listOfProducts>
<kineticLaw formula="k_2*S2">
<listOfParameters>
<parameter name="k_2" value="0" units="vol_per_time"/>
</listOfParameters>
</kineticLaw>
</reaction>
</listOfReactions>
</model>
</sbml>
|