20 "Compute strain increment for small strains in an axisymmetric 1D problem");
21 params.
addParam<UserObjectName>(
"subblock_index_provider",
22 "SubblockIndexProvider user object name");
23 params.
addCoupledVar(
"scalar_out_of_plane_strain",
"Scalar variable for axisymmetric 1D problem");
24 params.
addCoupledVar(
"out_of_plane_strain",
"Nonlinear variable for axisymmetric 1D problem");
32 _disp_old_0(coupledValueOld(
"displacements", 0)),
33 _subblock_id_provider(isParamValid(
"subblock_index_provider")
36 _has_out_of_plane_strain(isCoupled(
"out_of_plane_strain")),
37 _out_of_plane_strain(_has_out_of_plane_strain ? coupledValue(
"out_of_plane_strain") : _zero),
38 _out_of_plane_strain_old(_has_out_of_plane_strain ? coupledValueOld(
"out_of_plane_strain")
40 _has_scalar_out_of_plane_strain(isCoupledScalar(
"scalar_out_of_plane_strain"))
43 mooseError(
"Must define only one of out_of_plane_strain or scalar_out_of_plane_strain");
47 const auto nscalar_strains = coupledScalarComponents(
"scalar_out_of_plane_strain");
50 for (
unsigned int i = 0; i < nscalar_strains; ++i)
64 mooseError(
"The coordinate system must be set to RZ for Axisymmetric 1D simulations");
88 if (!MooseUtils::absoluteFuzzyEqual(_q_point[_qp](0), 0.0))
89 return (*
_disp[0])[_qp] / _q_point[_qp](0);
97 if (!MooseUtils::absoluteFuzzyEqual(_q_point[_qp](0), 0.0))
registerMooseObject("SolidMechanicsApp", ComputeAxisymmetric1DIncrementalStrain)
void mooseError(Args &&... args)
Compute1DIncrementalStrain defines a strain increment only for incremental small strains in 1D proble...
static InputParameters validParams()
ComputeAxisymmetric1DIncrementalStrain defines a strain increment only for incremental small strains ...
const VariableValue & _out_of_plane_strain
Current and old values of the out-of-plane strain variable.
Real computeGradDispZZOld() override
Computes the old dUz/dz for axisymmetric problems, where .
std::vector< const VariableValue * > _scalar_out_of_plane_strain
Current and old values of the out-of-plane strain scalar variable.
std::vector< const VariableValue * > _scalar_out_of_plane_strain_old
Real computeGradDispYY() override
Computes the current dUy/dy for axisymmetric problems.
const VariableValue & _disp_old_0
the old value of the first component of the displacements vector
bool _has_scalar_out_of_plane_strain
Whether an out-of-plane strain scalar variable is coupled.
unsigned int getCurrentSubblockIndex() const
gets its subblock index for current element
void initialSetup() override
Real computeGradDispZZ() override
Computes the current dUz/dz for axisymmetric problems, where .
Real computeGradDispYYOld() override
Computes the old dUy/dy for axisymmetric problems.
ComputeAxisymmetric1DIncrementalStrain(const InputParameters ¶meters)
static InputParameters validParams()
const VariableValue & _out_of_plane_strain_old
bool _has_out_of_plane_strain
Whether an out-of-plane strain variable is coupled.
void initialSetup() override
std::vector< const VariableValue * > _disp
Displacement variables.
Abstract base class for user objects that provide an index for a given element that is independent of...