Skip to content

Commit f1f5dec

Browse files
committed
fix
1 parent 3a4c8d7 commit f1f5dec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/catalyst_applications/nonlinear_solve.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ sol ≈ sol_ntr
5858
The `NonlinearProblem`s generated by Catalyst corresponds to ODEs. A common method of solving these is to simulate the ODE from an initial condition until a steady state is reached. NonlinearSolve supports this through the `DynamicSS` method. To use it, an appropriate ODE solver (and any options you wish it to use) must also be supplied (with [a large number being available](https://docs.sciml.ai/DiffEqDocs/stable/solvers/ode_solve/)). Here, we will use the `Tsit5` ODE solver to find the steady states of our dimerisation system.
5959
```@example nonlinear_solve1
6060
using OrdinaryDiffEq, SteadyStateDiffEq
61-
solve(nprob, DynamicSS(Tsit5()))
61+
solve(nl_prob, DynamicSS(Tsit5()))
6262
```
6363
Here, we had to import [OrdinaryDiffEq.jl](https://github.com/SciML/OrdinaryDiffEq.jl) (to use `Tsit5`) and [SteadyStateDiffEq.jl](https://github.com/SciML/SteadyStateDiffEq.jl) (to use `DynamicSS`).
6464

@@ -96,7 +96,7 @@ sol[X2]
9696
```
9797

9898
---
99-
## [Citations](@id nonlinear_solve_citations)
99+
## [Citations](@id nonlinear_solve_citation)
100100
If you use this functionality in your research, [in addition to Catalyst](@ref catalyst_citation), please cite the following papers to support the authors of the NonlinearSolve.jl package:
101101
```
102102
A NonlinearSolve. jl-related publication is in preparation, once it is available, its details will be added here.

0 commit comments

Comments
 (0)