We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 940861e commit d671621Copy full SHA for d671621
docs/src/faqs.md
@@ -18,6 +18,7 @@ Let's convert it to a system of ODEs, using the conservation laws of the system
18
to eliminate two of the species:
19
```@example faq1
20
osys = convert(ODESystem, rn; remove_conserved = true)
21
+osys = complete(osys)
22
```
23
Notice the resulting ODE system has just one ODE, while algebraic observables
24
have been added for the two removed species (in terms of the conservation law
@@ -221,6 +222,7 @@ rx1 = @reaction k, A --> 0
221
222
rx2 = @reaction $f, 0 --> A
223
eq = f ~ (1 + sin(t))
224
@named rs = ReactionSystem([rx1, rx2, eq], t)
225
+rs = complete(rs)
226
osys = convert(ODESystem, rs)
227
228
In the final ODE model, `f` can be eliminated by using
0 commit comments