Skip to content

Commit 29ce43a

Browse files
Merge pull request #477 from sharanry/patch-1
Update common solver options link
2 parents 2206769 + d474ef6 commit 29ce43a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/introduction/01-ode_introduction.jmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ sol(0.45)
110110

111111
#### Controlling the Solver
112112

113-
DifferentialEquations.jl has a common set of solver controls among its algorithms which can be found [at the Common Solver Options](https://docs.sciml.ai/dev/basics/common_solver_opts/) page. We will detail some of the most widely used options.
113+
DifferentialEquations.jl has a common set of solver controls among its algorithms which can be found [at the Common Solver Options](https://diffeq.sciml.ai/stable/basics/common_solver_opts/) page. We will detail some of the most widely used options.
114114

115115
The most useful options are the tolerances `abstol` and `reltol`. These tell the internal adaptive time stepping engine how precise of a solution you want. Generally, `reltol` is the relative accuracy while `abstol` is the accuracy when `u` is near zero. These tolerances are local tolerances and thus are not global guarantees. However, a good rule of thumb is that the total solution accuracy is 1-2 digits less than the relative tolerances. Thus for the defaults `abstol=1e-6` and `reltol=1e-3`, you can expect a global accuracy of about 1-2 digits. If we want to get around 6 digits of accuracy, we can use the commands:
116116

0 commit comments

Comments
 (0)