Skip to content

Commit

Permalink
update some recommendations
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Jul 7, 2017
1 parent 04cb157 commit b33155d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/src/solvers/ode_solve.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ very large (`>10,000` ODEs?) or the function calculation is very expensive.

For stiff problems at high tolerances (`>1e-2`?) it is recommended that you use
`Rosenbrock23`. At medium tolerances (`>1e-8`?) it is recommended you use `Rodas4`
or `Rodas4P` (the former is slightly more efficient but the later is much more reliable).
As native DifferentialEquations.jl solvers, many Julia numeric types
(such as BigFloats, [ArbFloats](https://github.com/JuliaArbTypes/ArbFloats.jl), or
[DecFP](https://github.com/stevengj/DecFP.jl)) will work. When the equation is
Expand Down
1 change: 1 addition & 0 deletions docs/src/tutorials/ode_example.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ In DifferentialEquations.jl, some good "go-to" choices for ODEs are:
most cases.
- `Vern7()` for high accuracy non-stiff.
- `Rodas4()` for stiff equations with Julia-defined types, events, etc.
- `radau()` for really high accuracy stiff equations (requires installing ODEInterfaceDiffEq.jl)

For a comprehensive list of the available algorithms and detailed recommendations,
[Please see the solver documentation](../../solvers/ode_solve.html). Every problem
Expand Down

0 comments on commit b33155d

Please sign in to comment.