/usr/share/SBMLToolbox/Test/test-data/l1v2-all.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 | <?xml version="1.0" encoding="UTF-8"?>
<sbml xmlns="http://www.sbml.org/sbml/level1" level="1" version="2">
<model name="l1v2_all">
<listOfUnitDefinitions>
<unitDefinition name="ud1">
<listOfUnits>
<unit kind="mole"/>
<unit kind="second" exponent="-1"/>
</listOfUnits>
</unitDefinition>
<unitDefinition name="vol_per_time_per_mol">
<listOfUnits>
<unit kind="litre" exponent="2"/>
<unit kind="second" exponent="-1"/>
<unit kind="mole" exponent="-1"/>
</listOfUnits>
</unitDefinition>
</listOfUnitDefinitions>
<listOfCompartments>
<compartment name="c" volume="1"/>
</listOfCompartments>
<listOfSpecies>
<species name="S1" compartment="c" initialAmount="1"/>
<species name="S2" compartment="c" initialAmount="2"/>
<species name="S3" compartment="c" initialAmount="1"/>
<species name="S4" compartment="c" initialAmount="1"/>
<species name="s" compartment="c" initialAmount="0"/>
</listOfSpecies>
<listOfParameters>
<parameter name="p" value="2" units="dimensionless"/>
<parameter name="k_c" value="3" units="litre"/>
<parameter name="k_s" value="2" units="mole"/>
<parameter name="k_t" value="2" units="second"/>
<parameter name="k_p" value="2" units="dimensionless"/>
</listOfParameters>
<listOfRules>
<algebraicRule formula="p*4"/>
<speciesConcentrationRule formula="k_s/k_c" species="s"/>
<compartmentVolumeRule formula="p*k_c" compartment="c"/>
<parameterRule formula="k_p/k_t" type="rate" name="p"/>
</listOfRules>
<listOfReactions>
<reaction name="R1" reversible="false">
<listOfReactants>
<speciesReference species="S1"/>
<speciesReference species="S2"/>
</listOfReactants>
<listOfProducts>
<speciesReference species="S3"/>
</listOfProducts>
<kineticLaw formula="kf*S1*S2">
<listOfParameters>
<parameter name="kf" value="750000000000000" units="vol_per_time_per_mol"/>
</listOfParameters>
</kineticLaw>
</reaction>
<reaction name="r">
<listOfReactants>
<speciesReference species="S4"/>
</listOfReactants>
<kineticLaw formula="k">
<listOfParameters>
<parameter name="k" value="9" units="ud1"/>
</listOfParameters>
</kineticLaw>
</reaction>
</listOfReactions>
</model>
</sbml>
|