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
Currently, the time integrator takes seven arguments as follow
time_integrator%step(u, v, w, du, dv, dw, dt)
We should consider instead to create a general interface taking flist_t as arguments such that the time integrator can be used for an arbitrary number of variables
time_integrator%step(sol, deriv, dt)
This will also simply the addition of unit test for the time integrator
EDIT:
We should also consider to generalize the method member variable to consider various type of integration techniques (AB, RK, IMEX, etc.)
The text was updated successfully, but these errors were encountered:
Currently, the time integrator takes seven arguments as follow
time_integrator%step(u, v, w, du, dv, dw, dt)
We should consider instead to create a general interface taking
flist_t
as arguments such that the time integrator can be used for an arbitrary number of variablestime_integrator%step(sol, deriv, dt)
This will also simply the addition of unit test for the time integrator
EDIT:
We should also consider to generalize the
method
member variable to consider various type of integration techniques (AB, RK, IMEX, etc.)The text was updated successfully, but these errors were encountered: