-
-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
73b86a7
commit 7f24d16
Showing
4 changed files
with
66 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# [OrdinaryDiffEqVerner](@id OrdinaryDiffEqVerner) | ||
|
||
Preferred solvers for non-stiff problems at low tolerance. | ||
`Vern6`, `Vern7`, or `Vern8` are good methods for tolerances between `~1e-8-1e-12`, | ||
and using `Float64` numbers for the state of the differential equation. | ||
For even lower tolerances,`Vern9` should be used, combined with the more precise `BigFloat` number type. | ||
|
||
```@eval | ||
first_steps = evalfile("./common_first_steps.jl") | ||
first_steps("OrdinaryDiffEqVerner", "Vern6") | ||
``` | ||
|
||
## Full list of solvers | ||
|
||
```@docs | ||
Vern6 | ||
Vern7 | ||
Vern8 | ||
Vern9 | ||
``` | ||
|
||
```@docs | ||
AutoVern6 | ||
AutoVern7 | ||
AutoVern8 | ||
AutoVern9 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters