Skip to content

Commit 56acc1f

Browse files
committed
up
1 parent 203a7eb commit 56acc1f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/pages.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pages = Any[
1212
#"model_creation/compositional_modeling.md",
1313
#"model_creation/constraint_equations.md",
1414
# Events.
15-
#"model_creation/parametric_stoichiometry.md",# Distributed parameters, rates, and initial conditions.
15+
"model_creation/parametric_stoichiometry.md",# Distributed parameters, rates, and initial conditions.
1616
# Loading and writing models to files.
1717
"model_creation/model_visualisation.md",
1818
#"model_creation/network_analysis.md",

docs/src/model_creation/parametric_stoichiometry.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use symbolic stoichiometries, and discuss several caveats to be aware of.
77
Let's first consider a simple reversible reaction where the number of reactants
88
is a parameter, and the number of products is the product of two parameters.
99
```@example s1
10-
using Catalyst, Latexify, DifferentialEquations, ModelingToolkit, Plots
10+
using Catalyst, Latexify, OrdinaryDiffEq, ModelingToolkit, Plots
1111
revsys = @reaction_network revsys begin
1212
k₊, m*A --> (m*n)*B
1313
k₋, B --> A
@@ -141,6 +141,7 @@ The parameter `b` does not need to be explicitly declared in the
141141

142142
We next convert our network to a jump process representation
143143
```@example s1
144+
using JumpProcesses
144145
jsys = convert(JumpSystem, burstyrn; combinatoric_ratelaws = false)
145146
jsys = complete(jsys)
146147
equations(jsys)

0 commit comments

Comments
 (0)