-
-
Notifications
You must be signed in to change notification settings - Fork 235
Open
Labels
Description
Question❓
I am a bit stuck with the internals of the interaction between the time step loop and the controller. Here are some questions:
- What exactly are
qandqold? I could not find the mentioned work by Cechino. I probably also misread the latter variable as$q_{old}$ , but it does not store some q. Instead it seems to store some time step lengthintegrator.qold = DiffEqBase.value(integrator.dt) / q - What is the purpose of spliting the accept logic into two functions
stepsize_controller!andstep_accept_controller!? - On the docs page for the controller (https://docs.sciml.ai/DiffEqDocs/stable/extras/timestepping/), should the first equation just be a
err^{scaled}or is there really some index involved that I missed? - Is
accept_step_controllerconsidered internal API? If not, should it be included in the docs page?