Go to the documentation of this file.
20 #ifndef LIBMESH_STEADY_SOLVER_H
21 #define LIBMESH_STEADY_SOLVER_H
24 #include "libmesh/time_solver.h"
33 class DifferentiableSystem;
112 virtual bool is_steady()
const override {
return true; }
130 #endif // LIBMESH_STEADY_SOLVER_H
TimeSolver Parent
The parent class.
bool(DifferentiablePhysics::* ResFuncType)(bool, DiffContext &)
Definitions of argument types for use in refactoring subclasses.
The libMesh namespace provides an interface to certain functionality in the library.
This class provides a specific system class.
DifferentiableSystem sys_type
The type of system.
virtual bool element_residual(bool request_jacobian, DiffContext &) override
This method uses the DifferentiablePhysics' element_time_derivative() and element_constraint() to bui...
virtual bool nonlocal_residual(bool request_jacobian, DiffContext &) override
This method uses the DifferentiablePhysics' nonlocal_time_derivative() and nonlocal_constraint() to b...
virtual Real du(const SystemNorm &) const override
This class provides all data required for a physics package (e.g.
virtual ~SteadySolver()
Destructor.
virtual bool is_steady() const override
This is a steady-state solver.
virtual bool side_residual(bool request_jacobian, DiffContext &) override
This method uses the DifferentiablePhysics' side_time_derivative() and side_constraint() to build a f...
virtual bool _general_residual(bool request_jacobian, DiffContext &, ResFuncType time_deriv, ResFuncType constraint)
This method is the underlying implementation of the public residual methods.
This is a generic class that defines a solver to handle time integration of DifferentiableSystems.
This class defines a norm/seminorm to be applied to a NumericVector which contains coefficients in a ...
This class implements a TimeSolver which does a single solve of the steady state problem.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
virtual Real error_order() const
error convergence order against deltat is not applicable to a steady problem.
SteadySolver(sys_type &s)
Constructor.