File: multicomp.xml

package info (click to toggle)
libsbml 5.20.5%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 117,108 kB
  • sloc: cpp: 469,781; xml: 364,270; ansic: 54,078; python: 12,540; makefile: 9,759; sh: 9,245; cs: 8,586; java: 8,151; perl: 6,133; ruby: 4,760; javascript: 1,605; php: 202; csh: 3
file content (120 lines) | stat: -rw-r--r-- 5,922 bytes parent folder | download | duplicates (7)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?xml version="1.0" encoding="UTF-8"?>
<sbml xmlns="http://www.sbml.org/sbml/level3/version1/core" level="3" version="1">
    <model name="LotkaVolterra_tranport" substanceUnits="mole" volumeUnits="litre"
           extentUnits="mole" timeUnits="second">
        <listOfUnitDefinitions>
            <unitDefinition id="per_second">
                <listOfUnits>
                    <unit kind="second" exponent="-1" scale="0" multiplier="1"/>
                </listOfUnits>
            </unitDefinition>
            <unitDefinition id="litre_per_mole_per_second">
                <listOfUnits>
                    <unit kind="mole"   exponent="-1" scale="0" multiplier="1"/>
                    <unit kind="litre"  exponent="1"  scale="0" multiplier="1"/>
                    <unit kind="second" exponent="-1" scale="0" multiplier="1"/>
                </listOfUnits>
            </unitDefinition>
        </listOfUnitDefinitions>
        <listOfCompartments>
            <compartment id="cytoplasm" size="5" constant="true"/>
            <compartment id="nucleus" size="1" constant="true"/>
        </listOfCompartments>
        <listOfSpecies>
            <species id="X"   compartment="nucleus" initialAmount="1" constant="false"
                              boundaryCondition="true"  hasOnlySubstanceUnits="false"/>
            <species id="Y1n" compartment="nucleus" initialAmount="1" constant="false"
                              boundaryCondition="false" hasOnlySubstanceUnits="false"/>
            <species id="Y1c" compartment="cytoplasm"   initialAmount="0" constant="false"
                              boundaryCondition="false" hasOnlySubstanceUnits="false"/>
            <species id="Y2"  compartment="cytoplasm"   initialAmount="1" constant="false"
                              boundaryCondition="false" hasOnlySubstanceUnits="false"/>
        </listOfSpecies>
        <listOfParameters>
            <parameter id="k1" value="2500"  units="litre_per_mole_per_second" constant="true"/>
            <parameter id="k2" value="2500"  units="litre_per_mole_per_second" constant="true"/>
            <parameter id="KT" value="25000" units="per_second"                constant="true"/>
            <parameter id="k3" value="2500"  units="per_second"                constant="true"/>
        </listOfParameters>
        <listOfReactions>
            <reaction id="production" reversible="false" fast="false">
                <listOfReactants>
                    <speciesReference species="X"   stoichiometry="1" constant="true"/>
                    <speciesReference species="Y1n" stoichiometry="1" constant="true"/>
                </listOfReactants>
                <listOfProducts>
                    <speciesReference species="Y1n" stoichiometry="1" constant="true"/>
                    <speciesReference species="Y1n" stoichiometry="1" constant="true"/>
                </listOfProducts>
                <kineticLaw>
                    <math xmlns="http://www.w3.org/1998/Math/MathML">
                        <apply>
                            <times/>
                            <ci>nucleus</ci>
                            <ci>k1</ci>
                            <ci>X</ci>
                            <ci>Y1n</ci>
                        </apply>
                    </math>
                </kineticLaw>
            </reaction>
            <reaction id="transport" reversible="true" fast="false">
                <listOfReactants>
                    <speciesReference species="Y1n" stoichiometry="1" constant="true"/>
                </listOfReactants>
                <listOfProducts>
                    <speciesReference species="Y1c" stoichiometry="1" constant="true"/>
                </listOfProducts>
                <kineticLaw>
                    <math xmlns="http://www.w3.org/1998/Math/MathML">
                        <apply>
                            <times/>
                            <ci>cytoplasm</ci>
                            <ci>KT</ci>
                            <apply>
                                <minus/>
                                <ci>Y1n</ci>
                                <ci>Y1c</ci>
                            </apply>
                        </apply>
                    </math>
                </kineticLaw>
            </reaction>
            <reaction id="transformation" reversible="false" fast="false">
                <listOfReactants>
                    <speciesReference species="Y1c" stoichiometry="1" constant="true"/>
                    <speciesReference species="Y2"  stoichiometry="1" constant="true"/>
                </listOfReactants>
                <listOfProducts>
                    <speciesReference species="Y2"  stoichiometry="2" constant="true"/>
                </listOfProducts>
                <kineticLaw>
                    <math xmlns="http://www.w3.org/1998/Math/MathML">
                        <apply>
                            <times/>
                            <ci>cytoplasm</ci>
                            <ci>k2</ci>
                            <ci>Y1c</ci>
                            <ci>Y2</ci>
                        </apply>
                    </math>
                </kineticLaw>
            </reaction>
            <reaction id="degradation" reversible="false" fast="false">
                <listOfReactants>
                    <speciesReference species="Y2" stoichiometry="1" constant="true"/>
                </listOfReactants>
                <kineticLaw>
                    <math xmlns="http://www.w3.org/1998/Math/MathML">
                        <apply>
                            <times/>
                            <ci>cytoplasm</ci>
                            <ci>k3</ci>
                            <ci>Y2</ci>
                        </apply>
                    </math>
                </kineticLaw>
            </reaction>
        </listOfReactions>
    </model>
</sbml>