pathsim.solvers.ssprk33 module
- class pathsim.solvers.ssprk33.SSPRK33(*solver_args, **solver_kwargs)[source]
Bases:
ExplicitRungeKuttaThree-stage, 3rd order, Strong Stability Preserving (SSP) explicit Runge-Kutta method.
Offers higher accuracy than SSPRK22 while maintaining the SSP property. A popular choice for problems where TVD properties are important or when a simple, stable 3rd order explicit method is needed.
- Characteristics:
Order: 3
Stages: 3
Explicit (SSP)
Fixed timestep only
Good stability properties for an explicit 3rd order method.