Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
TorkelE committed May 29, 2024
1 parent 203a7eb commit 56acc1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/pages.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pages = Any[
#"model_creation/compositional_modeling.md",
#"model_creation/constraint_equations.md",
# Events.
#"model_creation/parametric_stoichiometry.md",# Distributed parameters, rates, and initial conditions.
"model_creation/parametric_stoichiometry.md",# Distributed parameters, rates, and initial conditions.
# Loading and writing models to files.
"model_creation/model_visualisation.md",
#"model_creation/network_analysis.md",
Expand Down
3 changes: 2 additions & 1 deletion docs/src/model_creation/parametric_stoichiometry.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use symbolic stoichiometries, and discuss several caveats to be aware of.
Let's first consider a simple reversible reaction where the number of reactants
is a parameter, and the number of products is the product of two parameters.
```@example s1
using Catalyst, Latexify, DifferentialEquations, ModelingToolkit, Plots
using Catalyst, Latexify, OrdinaryDiffEq, ModelingToolkit, Plots
revsys = @reaction_network revsys begin
k₊, m*A --> (m*n)*B
k₋, B --> A
Expand Down Expand Up @@ -141,6 +141,7 @@ The parameter `b` does not need to be explicitly declared in the

We next convert our network to a jump process representation
```@example s1
using JumpProcesses
jsys = convert(JumpSystem, burstyrn; combinatoric_ratelaws = false)
jsys = complete(jsys)
equations(jsys)
Expand Down

0 comments on commit 56acc1f

Please sign in to comment.