Go to the documentation of this file.
12 #include "FEProblem.h"
13 #include "MooseMesh.h"
23 params.addClassDescription(
24 "Compute a strain increment for finite strains under axisymmetric assumptions.");
29 const InputParameters & parameters)
39 if (getBlockCoordSystem() != Moose::COORD_RZ)
40 mooseError(
"The coordinate system must be set to RZ for Axisymmetric geometries.");
43 paramError(
"out_of_plane_direction",
44 "The out-of-plane direction for axisymmetric systems is currently restricted to z");
50 if (!MooseUtils::absoluteFuzzyEqual(_q_point[_qp](0), 0.0))
51 return (*
_disp[0])[_qp] / _q_point[_qp](0);
59 if (!MooseUtils::absoluteFuzzyEqual(_q_point[_qp](0), 0.0))
void initialSetup() override
ComputeAxisymmetricRZFiniteStrain defines a strain increment and rotation increment for finite strain...
std::vector< const VariableValue * > _disp
Compute2DFiniteStrain defines a strain increment and a rotation increment for finite strains in 2D ge...
Real computeOutOfPlaneGradDisp() override
Computes the current out-of-plane component of the displacement gradient; as a virtual function,...
const VariableValue & _disp_old_0
the old value of the first component of the displacements vector
void initialSetup() override
static InputParameters validParams()
defineLegacyParams(ComputeAxisymmetricRZFiniteStrain)
ComputeAxisymmetricRZFiniteStrain(const InputParameters ¶meters)
registerMooseObject("TensorMechanicsApp", ComputeAxisymmetricRZFiniteStrain)
Real computeOutOfPlaneGradDispOld() override
Computes the old out-of-plane component of the displacement gradient; as a virtual function,...
const unsigned int _out_of_plane_direction
static InputParameters validParams()