Skip to content

Commit 8a3cc5b

Browse files
authored
Merge pull request #1147 from SciML/add_tutorial_setup_sections
Add tutorial set-up code
2 parents d71d11a + d800497 commit 8a3cc5b

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

docs/src/model_creation/examples/basic_CRN_library.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
# [Library of Basic Chemical Reaction Network Models](@id basic_CRN_library)
2+
```@raw html
3+
<details><summary><strong>Environment setup and package installation</strong></summary>
4+
```
5+
The following code sets up an environment for running the code on this page.
6+
```julia
7+
using Pkg
8+
Pkg.activate(".")
9+
Pkg.add("Catalyst")
10+
Pkg.add("OrdinaryDiffEqDefault")
11+
Pkg.add("StochasticDiffEq")
12+
Pkg.add("JumpProcesses")
13+
Pkg.add("Plots")
14+
```
15+
```@raw html
16+
</details>
17+
```
18+
\
19+
220
Below we will present various simple and established chemical reaction network (CRN) models. Each model is given some brief background, implemented using the `@reaction_network` DSL, and basic simulations are performed.
321

422
## [Birth-death process](@id basic_CRN_library_bd)

0 commit comments

Comments
 (0)