23 params.
addClassDescription(
"Fourth-order diagonally implicit Runge Kutta method (Dirk) with "
24 "three stages plus an update.");
25 params.
addParam<
bool>(
"safe_start",
true,
"If true, use LStableDirk4 to bootstrap this method.");
32 _gamma(0.5 +
std::sqrt(3) / 3. *
std::cos(
libMesh::pi / 18.)),
33 _safe_start(getParam<bool>(
"safe_start"))
35 mooseInfo(
"AStableDirk4 and other multistage TimeIntegrators are known not to work with "
36 "Materials/AuxKernels that accumulate 'state' and should be used with caution.");
39 for (
unsigned int stage = 0; stage < 3; ++stage)
41 std::ostringstream oss;
42 oss <<
"residual_stage" << stage + 1;
88 mooseError(
"AStableDirk4: Time derivative of solution (`u_dot`) is not stored. Please set "
89 "uDotRequested() to true in FEProblemBase befor requesting `u_dot`.");
100 const dof_id_type & dof,
127 for (
unsigned int current_stage = 1; current_stage < 5; ++current_stage)
137 if (current_stage < 4)
144 _console <<
"Update Stage." << std::endl;
172 mooseError(
"AStableDirk4::postResidual(): Member variable _stage can only have values 1-4.");
193 for (
unsigned int j = 0; j <
_stage; ++j)
208 for (
unsigned int j = 0; j < 3; ++j)
DualNumber< Real, DNDerivativeType, true > ADReal
registerMooseObject("MooseApp", AStableDirk4)
Fourth-order diagonally implicit Runge Kutta method (Dirk) with three stages plus an update.
virtual void postResidual(NumericVector< Number > &residual) override
Callback to the NonLinearTimeIntegratorInterface called immediately after the residuals are computed ...
std::shared_ptr< LStableDirk4 > _bootstrap_method
void computeTimeDerivativeHelper(T &u_dot, const T2 &u_old) const
Helper function that actually does the math for computing the time derivative.
static InputParameters validParams()
NumericVector< Number > * _stage_residuals[3]
AStableDirk4(const InputParameters ¶meters)
virtual void solve() override
Solves the time step and sets the number of nonlinear and linear iterations.
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
virtual void computeTimeDerivatives() override
Computes the time derivative and the Jacobian of the time derivative.
const ConsoleStream _console
An instance of helper class to write streams to the Console objects.
virtual Real & timeOld() const
virtual Real & time() const
virtual void initPetscOutputAndSomeSolverSettings()
Reinitialize PETSc output for proper linear/nonlinear iteration display.
Generic factory class for build all sorts of objects.
std::shared_ptr< MooseObject > create(const std::string &obj_name, const std::string &name, const InputParameters ¶meters, THREAD_ID tid=0, bool print_deprecated=true)
InputParameters getValidParams(const std::string &name) const
Get valid parameters for the object.
Fourth-order diagonally implicit Runge Kutta method (Dirk) with five stages.
Factory & getFactory()
Retrieve a writable reference to the Factory associated with this App.
const std::string & name() const
Get the name of the class.
void mooseError(Args &&... args) const
Emits an error prefixed with object name and type and optionally a file path to the top-level block p...
void mooseInfo(Args &&... args) const
MooseApp & _app
The MOOSE application this is associated with.
virtual libMesh::System & system() override
Get the reference to the libMesh system.
NonlinearSystemBase * _nl
Pointer to the nonlinear system, can happen that we dont have any.
NumericVector< Number > * _Re_non_time
residual vector for non-time contributions
NumericVector< Number > * addVector(const std::string &name, const bool project, const libMesh::ParallelType type)
Wrapper around vector addition for nonlinear time integrators.
NumericVector< Number > * _Re_time
residual vector for time contributions
virtual bool converged(const unsigned int sys_num)
Eventually we want to convert this virtual over to taking a solver system number argument.
Base class for a system (of equations)
virtual NumericVector< Number > * solutionUDot()
unsigned int number() const
Gets the number of this system.
Base class for time integrators.
void computeDuDotDu()
Compute _du_dot_du.
unsigned int getNumLinearIterationsLastSolve() const
Gets the number of linear iterations in the most recent solve.
const NumericVector< Number > *const & _solution
unsigned int _n_linear_iterations
Total number of linear iterations over all stages of the time step.
unsigned int _n_nonlinear_iterations
Total number of nonlinear iterations over all stages of the time step.
static InputParameters validParams()
FEProblemBase & _fe_problem
Reference to the problem.
unsigned int getNumNonlinearIterationsLastSolve() const
Gets the number of nonlinear iterations in the most recent solve.
SystemBase & _sys
Reference to the system this time integrator operates on.
Real & _dt
The current time step size.
int & _t_step
The current time step number.
const NumericVector< Number > & _solution_old
virtual void add(const numeric_index_type i, const T value)=0
The following methods are specializations for using the libMesh::Parallel::packed_range_* routines fo...