Go to the documentation of this file.
37 safeScale_(
dict.lookupOrDefault<scalar>(
"safeScale", 0.9)),
38 alphaInc_(
dict.lookupOrDefault<scalar>(
"alphaIncrease", 0.2)),
39 alphaDec_(
dict.lookupOrDefault<scalar>(
"alphaDecrease", 0.25)),
40 minScale_(
dict.lookupOrDefault<scalar>(
"minScale", 0.2)),
41 maxScale_(
dict.lookupOrDefault<scalar>(
"maxScale", 10)),
67 err =
solve(
x,
y, dydx0_, dx, yTemp_);
72 scalar scale =
max(safeScale_*
pow(err, -alphaDec_), minScale_);
78 <<
"stepsize underflow"
89 if (err >
pow(maxScale_/safeScale_, -1.0/alphaInc_))
92 min(
max(safeScale_*
pow(err, -alphaInc_), minScale_), maxScale_)*dx;
96 dxTry = safeScale_*maxScale_*dx;
virtual scalar solve(const scalar x0, const scalarField &y0, const scalarField &dydx0, const scalar dx, scalarField &y) const =0
Solve a single step dx and return the error.
Pre-declare SubField and related Field type.
dimensionedScalar pow(const dimensionedScalar &ds, const dimensionedScalar &expt)
An ODE solver for chemistry.
A list of keyword definitions, which are a keyword followed by any number of values (e....
Macros for easy insertion into run-time selection tables.
errorManipArg< error, int > exit(error &err, const int errNo=1)
dimensioned< Type > max(const dimensioned< Type > &, const dimensioned< Type > &)
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
virtual void derivatives(const scalar x, const scalarField &y, scalarField &dydx) const =0
Calculate the derivatives in dydx.
Abstract base class for the systems of ordinary differential equations.
adaptiveSolver(const ODESystem &ode, const dictionary &dict)
Construct from ODESystem.
dimensioned< Type > min(const dimensioned< Type > &, const dimensioned< Type > &)