Rheolef  7.2
an efficient C++ finite element environment
 
Loading...
Searching...
No Matches
runge_kutta_ssp.icc

The strong stability preserving Runge-Kutta scheme – coefficients.

The strong stability preserving Runge-Kutta scheme – coefficients

namespace ssp {
constexpr size_t pmax = 3;
Float alpha[][pmax+1][pmax+1]
= { {},
{ {},
{1} },
{ {},
{1},
{1./2, 1./2} },
{ {},
{1},
{3./4, 1./4},
{1./3, 0, 2./3} } };
Float beta [][pmax+1][pmax+1]
= { {},
{ {},
{1} },
{ {},
{1},
{0, 1./2} },
{ {},
{1},
{0, 1./4},
{0, 0, 2./3} } };
} // namespace
see the Float page for the full documentation
Float beta[][pmax+1][pmax+1]
Float alpha[][pmax+1][pmax+1]
constexpr size_t pmax