-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdimer_decay_mixed.xml
95 lines (93 loc) · 2.6 KB
/
dimer_decay_mixed.xml
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
<!-- Stochkit 2.0 text input format
reference:
M. Rathinam, L.R. Petzold, Y. Cao, and D.T. Gillespie. J Chem Phys 119, 12784 (2003).
-->
<Model>
<Description>Dimer Decay</Description>
<NumberOfReactions>4</NumberOfReactions>
<NumberOfSpecies>3</NumberOfSpecies>
<ParametersList>
<Parameter>
<Id>c1</Id>
<Expression>1.0</Expression>
</Parameter>
<Parameter>
<Id>c2</Id>
<Expression>0.002</Expression>
</Parameter>
<Parameter>
<Id>c3</Id>
<Expression>0.5</Expression>
</Parameter>
<Parameter>
<Id>c4</Id>
<Expression>0.04</Expression>
</Parameter>
</ParametersList>
<ReactionsList>
<Reaction>
<Id>R1</Id>
<Description> S1 -> null </Description>
<Type>customized</Type>
<PropensityFunction>c1*S1</PropensityFunction>
<Reactants>
<SpeciesReference id="S1" stoichiometry="1"/>
</Reactants>
<Products>
</Products> <!-- no product -->
</Reaction>
<Reaction>
<Id>R2</Id>
<Description> 2 * S1 -> S2 </Description>
<Type>customized</Type>
<PropensityFunction>c2*S1*(S1-1)/2</PropensityFunction>
<Reactants>
<SpeciesReference id="S1" stoichiometry="2"/>
</Reactants>
<Products>
<SpeciesReference id="S2" stoichiometry="1"/>
</Products>
</Reaction>
<Reaction>
<Id>R3</Id>
<Description> S2 -> 2 * S1 </Description>
<Type>customized</Type>
<PropensityFunction>c3*S2</PropensityFunction>
<Reactants>
<SpeciesReference id="S2" stoichiometry="1"/>
</Reactants>
<Products>
<SpeciesReference id="S1" stoichiometry="2"/>
</Products>
</Reaction>
<Reaction>
<Id>R4</Id>
<Description> S2 -> S3 </Description>
<Type>customized</Type>
<PropensityFunction>c4*S2</PropensityFunction>
<Reactants>
<SpeciesReference id="S2" stoichiometry="1"/>
</Reactants>
<Products>
<SpeciesReference id="S3" stoichiometry="1"/>
</Products>
</Reaction>
</ReactionsList>
<SpeciesList>
<Species>
<Id>S1</Id>
<Description>Species #1</Description>
<InitialPopulation>10000</InitialPopulation>
</Species>
<Species>
<Id>S2</Id>
<Description>Species #2</Description>
<InitialPopulation>0</InitialPopulation>
</Species>
<Species>
<Id>S3</Id>
<Description>Species #3</Description>
<InitialPopulation>0</InitialPopulation>
</Species>
</SpeciesList>
</Model>