38 RKDP45::c3 = 3.0/10.0,
42 RKDP45::a21 = 1.0/5.0,
44 RKDP45::a31 = 3.0/40.0,
45 RKDP45::a32 = 9.0/40.0,
47 RKDP45::a41 = 44.0/45.0,
48 RKDP45::a42 = -56.0/15.0,
49 RKDP45::a43 = 32.0/9.0,
51 RKDP45::a51 = 19372.0/6561.0,
52 RKDP45::a52 = -25360.0/2187.0,
53 RKDP45::a53 = 64448.0/6561.0,
54 RKDP45::a54 = -212.0/729.0,
56 RKDP45::a61 = 9017.0/3168.0,
57 RKDP45::a62 = -355.0/33.0,
58 RKDP45::a63 = 46732.0/5247.0,
59 RKDP45::a64 = 49.0/176.0,
60 RKDP45::a65 = -5103.0/18656.0,
62 RKDP45::b1 = 35.0/384.0,
63 RKDP45::b3 = 500.0/1113.0,
64 RKDP45::b4 = 125.0/192.0,
65 RKDP45::b5 = -2187.0/6784.0,
66 RKDP45::b6 = 11.0/84.0,
68 RKDP45::e1 = 5179.0/57600.0 - RKDP45::b1,
69 RKDP45::e3 = 7571.0/16695.0 - RKDP45::b3,
70 RKDP45::e4 = 393.0/640.0 - RKDP45::b4,
71 RKDP45::e5 = -92097.0/339200.0 - RKDP45::b5,
72 RKDP45::e6 = 187.0/2100.0 - RKDP45::b6,
73 RKDP45::e7 = 1.0/40.0;
130 yTemp_[i] =
y0[i] + a21*dx*dydx0[i];
133 odes_.derivatives(x0 +
c2*dx, yTemp_, li, k2_);
137 yTemp_[i] =
y0[i] + dx*(a31*dydx0[i] + a32*k2_[i]);
140 odes_.derivatives(x0 + c3*dx, yTemp_, li, k3_);
144 yTemp_[i] =
y0[i] + dx*(a41*dydx0[i] + a42*k2_[i] + a43*k3_[i]);
147 odes_.derivatives(x0 + c4*dx, yTemp_, li, k4_);
152 + dx*(a51*dydx0[i] + a52*k2_[i] + a53*k3_[i] + a54*k4_[i]);
155 odes_.derivatives(x0 + c5*dx, yTemp_, li, k5_);
161 *(a61*dydx0[i] + a62*k2_[i] + a63*k3_[i] + a64*k4_[i] + a65*k5_[i]);
164 odes_.derivatives(x0 + dx, yTemp_, li, k6_);
169 + dx*(b1*dydx0[i] + b3*k3_[i] + b4*k4_[i] + b5*k5_[i] + b6*k6_[i]);
173 odes_.derivatives(x0 + dx,
y, li, k2_);
179 *(e1*dydx0[i] + e3*k3_[i] + e4*k4_[i] + e5*k5_[i] + e6*k6_[i]
183 return normaliseError(
y0,
y, err_);
#define forAll(list, i)
Loop across all elements in list.
Macros for easy insertion into run-time selection tables.
Abstract base-class for ODE system solvers.
virtual bool resize()=0
Resize the ODE solver.
Abstract base class for the systems of ordinary differential equations.
4/5th Order Dormand–Prince Runge-Kutta ODE solver.
virtual bool resize()
Resize the ODE solver.
virtual void solve(scalar &x, scalarField &y, const label li, scalar &dxTry) const
Inherit solve from ODESolver.
RKDP45(const ODESystem &ode, const dictionary &dict)
Construct from ODESystem.
virtual scalar solve(const scalar x0, const scalarField &y0, const label li, const scalarField &dydx0, const scalar dx, scalarField &y) const =0
Solve a single step dx and return the error.
bool resize(const label n)
Resize the ODE solver.
A list of keyword definitions, which are a keyword followed by any number of values (e....
An ODE solver for chemistry.
const dimensionedScalar c2
Second radiation constant: default SI units: [m K].
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
addToRunTimeSelectionTable(polyPatch, mergedCyclicPolyPatch, word)
dimensionedScalar y0(const dimensionedScalar &ds)
defineTypeNameAndDebug(combustionModel, 0)