File: simple-L2.xml

package info (click to toggle)
libsbml 5.17.2%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 156,336 kB
  • sloc: cpp: 1,012,766; xml: 314,374; cs: 58,129; ansic: 54,053; python: 27,299; java: 27,152; makefile: 9,721; perl: 9,039; sh: 8,777; ruby: 4,760; php: 202; csh: 3
file content (44 lines) | stat: -rw-r--r-- 1,343 bytes parent folder | download | duplicates (2)
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>