SciML / DiffEqDocs.jl

Documentation for the DiffEq differential equations and scientific machine learning (SciML) ecosystem
https://docs.sciml.ai/DiffEqDocs/stable/
Other
264 stars 238 forks source link

Minor improvements #711

Closed navdeeprana closed 6 months ago

navdeeprana commented 6 months ago

@ChrisRackauckas I am just rewriting parts of the documentation as I read along. Mostly rephrasing things I find confusing at first read.

I need your input for the following. Specifying adaptive = false in solve turns off adapting time step over the course of numerical integration, but it still chooses the initial time step on it's own right?

ChrisRackauckas commented 6 months ago

I need your input for the following. Specifying adaptive = false in solve turns off adapting time step over the course of numerical integration, but it still chooses the initial time step on it's own right?

I believe if adaptive=false then you need to supply dt, though I haven't checked that in a long time. dt is the initial time step and if it's not adaptive then it's all time steps.

navdeeprana commented 6 months ago

Got it, I missed that we need to supply dt with adaptive=false here.