SSPRK3

Contents

SSPRK3#

class brainpy.integrators.ode.SSPRK3(f, var_type=None, dt=None, name=None, show_code=False, state_delays=None, neutral_delays=None)[source]#

Third-order Strong Stability Preserving Runge-Kutta (SSPRK3).

It has the characteristics of:

  • method stage = 3

  • method order = 3

  • Butcher Tables:

\[\begin{split}\begin{array}{c|ccc} 0 & 0 & 0 & 0 \\ 1 & 1 & 0 & 0 \\ 1 / 2 & 1 / 4 & 1 / 4 & 0 \\ \hline & 1 / 6 & 1 / 6 & 2 / 3 \end{array}\end{split}\]