4.5.1 pde.solvers.adams_bashforth module
Defines an explicit Adams-Bashforth solver.
- class AdamsBashforthSolver(pde, *, backend='auto')[source]
Bases:
SolverBaseExplicit Adams-Bashforth multi-step solver.
- Parameters:
pde (
PDEBase) – The partial differential equation that should be solvedbackend (str or
BackendBase) – Determines how the function is created. Accepted values are ‘numpy` and ‘numba’. Alternatively, ‘auto’ lets the PDE decide for the most optimal backend.
- name = 'adams–bashforth'