18 params.
addClassDescription(
"Limits the value of a variable to be within user-specified bounds.");
20 std::numeric_limits<Real>::max(),
21 "The maximum permissible iterative value for the variable.");
23 std::numeric_limits<Real>::lowest(),
24 "The minimum permissible iterative value for the variable.");
30 _max_value(parameters.get<Real>(
"max_value")),
31 _min_value(parameters.get<Real>(
"min_value"))
34 mooseError(
"max_value must be greater than min_value");
registerMooseObject("MooseApp", BoundingValueNodalDamper)
void mooseError(Args &&... args)
Emit an error message with the given stringified, concatenated args and terminate the application.
This class implements a damper that limits the value of a variable to be within user-specified bounds...
BoundingValueNodalDamper(const InputParameters ¶meters)
const Real & _min_value
The minimum permissible value of the variable.
static InputParameters validParams()
const Real & _max_value
The maximum permissible value of the variable.
virtual Real computeQpDamping() override
Compute the damping for the current node.
Base class for deriving nodal dampers.
static InputParameters validParams()
unsigned int _qp
Quadrature point index.
const VariableValue & _u_increment
The current Newton increment.
const VariableValue & _u
Holds the current solution at the current node.