You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We might additionally want to support different dts per state variables per node, due to explicit time scale separations. It is also likely we should take into account different noise models per state variable, since applying the same noise to every state variable is not tenable for complex models.
The text was updated successfully, but these errors were encountered:
maedoc
changed the title
Adaptive stochastic scheme
Adaptive stochastic functionality
Apr 3, 2024
There are a few related functionalities to adaptive stochastic schemes, which can be done with the Heun scheme we're accustomed to,
sum(square(x1 - x2))
err > tol
dt *= tol / err
and try againCovered in detail by Rackauckas & Nie and their followup paper on stability optimized methods. The older Lamba technique is a useful warm up.
We might additionally want to support different dts per state variables per node, due to explicit time scale separations. It is also likely we should take into account different noise models per state variable, since applying the same noise to every state variable is not tenable for complex models.
The text was updated successfully, but these errors were encountered: