Rheolef  7.1
an efficient C++ finite element environment
runge_kutta_ssp.icc
Go to the documentation of this file.
1 namespace ssp {
26  constexpr size_t pmax = 3;
27  Float alpha[][pmax+1][pmax+1]
28  = { {},
29  { {},
30  {1} },
31  { {},
32  {1},
33  {1./2, 1./2} },
34  { {},
35  {1},
36  {3./4, 1./4},
37  {1./3, 0, 2./3} } };
38 
39  Float beta [][pmax+1][pmax+1]
40  = { {},
41  { {},
42  {1} },
43  { {},
44  {1},
45  {0, 1./2} },
46  { {},
47  {1},
48  {0, 1./4},
49  {0, 0, 2./3} } };
50 } // namespace
ssp::pmax
constexpr size_t pmax
Definition: runge_kutta_ssp.icc:26
ssp::alpha
Float alpha[][pmax+1][pmax+1]
Definition: runge_kutta_ssp.icc:28
ssp::beta
Float beta[][pmax+1][pmax+1]
Definition: runge_kutta_ssp.icc:40
Float
see the Float page for the full documentation
ssp
Definition: runge_kutta_ssp.icc:25