Go to the documentation of this file.
11 #include "RankFourTensor.h"
21 params.addParam<Real>(
"a", 1.0,
"Yield function = a*mean_stress - strength");
22 params.addRequiredParam<UserObjectName>(
"strength",
"Yield function = a*mean_stress - strength");
23 params.addClassDescription(
"Class that limits the mean stress. Yield function = a*mean_stress - "
24 "strength. mean_stress = (stress_xx + stress_yy + stress_zz)/3");
31 _a_over_3(getParam<Real>(
"a") / 3.0),
Real dyieldFunction_dintnl(const RankTwoTensor &stress, Real intnl) const override
The derivative of yield function with respect to the internal parameter.
static InputParameters validParams()
RankTwoTensor flowPotential(const RankTwoTensor &stress, Real intnl) const override
The flow potential.
static InputParameters validParams()
registerMooseObject("TensorMechanicsApp", TensorMechanicsPlasticMeanCap)
RankTwoTensor dflowPotential_dintnl(const RankTwoTensor &stress, Real intnl) const override
The derivative of the flow potential with respect to the internal parameter.
const TensorMechanicsHardeningModel & _strength
strength
RankFourTensor dflowPotential_dstress(const RankTwoTensor &stress, Real intnl) const override
The derivative of the flow potential with respect to stress.
virtual std::string modelName() const override
virtual Real derivative(Real intnl) const
defineLegacyParams(TensorMechanicsPlasticMeanCap)
virtual Real value(Real intnl) const
RankTwoTensorTempl< Real > RankTwoTensor
Class that limits the mean stress Yield function = a*mean_stress - strength mean_stress = (stress_xx ...
Plastic Model base class The virtual functions written below must be over-ridden in derived classes t...
RankFourTensorTempl< Real > RankFourTensor
RankTwoTensor dyieldFunction_dstress(const RankTwoTensor &stress, Real intnl) const override
The derivative of yield function with respect to stress.
TensorMechanicsPlasticMeanCap(const InputParameters ¶meters)
Real yieldFunction(const RankTwoTensor &stress, Real intnl) const override
The following functions are what you should override when building single-plasticity models.
Hardening Model base class.