58 virtual int order()
override {
return 4; }
61 const dof_id_type & dof,
62 ADReal & ad_u_dotdot)
const override;
63 virtual void solve()
override;
64 virtual void postResidual(NumericVector<Number> & residual)
override;
71 template <
typename T,
typename T2>
94template <
typename T,
typename T2>
DualNumber< Real, DNDerivativeType, true > ADReal
Fourth-order diagonally implicit Runge Kutta method (Dirk) with five stages.
virtual bool overridesSolve() const override
NumericVector< Number > * _stage_residuals[_n_stages]
static const Real _a[_n_stages][_n_stages]
static InputParameters validParams()
virtual int order() override
virtual void computeTimeDerivatives() override
Computes the time derivative and the Jacobian of the time derivative.
static const Real _c[_n_stages]
virtual void solve() override
Solves the time step and sets the number of nonlinear and linear iterations.
void computeTimeDerivativeHelper(T &u_dot, const T2 &u_old) const
Helper function that actually does the math for computing the time derivative.
virtual void postResidual(NumericVector< Number > &residual) override
Callback to the NonLinearTimeIntegratorInterface called immediately after the residuals are computed ...
virtual void computeADTimeDerivatives(ADReal &ad_u_dot, const dof_id_type &dof, ADReal &ad_u_dotdot) const override
method for computing local automatic differentiation time derivatives
static const unsigned int _n_stages
const InputParameters & parameters() const
Get the parameters of the object.
Base class for time integrators.
Real & _dt
The current time step size.