15 TensorMechanicsPlasticWeakPlaneTensile,
25 "The yield function is stress_coefficient * stress_zz - tensile_strength");
27 "A SolidMechanicsHardening " 28 "UserObject that defines hardening " 29 "of the weak-plane tensile strength");
30 params.
addClassDescription(
"Associative weak-plane tensile plasticity with hardening/softening");
38 _a(getParam<
Real>(
"stress_coefficient")),
43 mooseError(
"Weak plane tensile strength must not be negative");
108 std::vector<bool> & act,
111 act.assign(1,
false);
115 returned_stress = stress;
122 for (
unsigned i = 0; i < 3; ++i)
123 for (
unsigned j = 0;
j < 3; ++
j)
124 n(i,
j) =
_a * Eijkl(i,
j, 2, 2);
130 for (
unsigned i = 0; i < 3; ++i)
131 for (
unsigned j = 0;
j < 3; ++
j)
132 returned_stress(i,
j) =
_a * stress(i,
j) -
alpha * n(i,
j);
140 return "WeakPlaneTensile";
RankTwoTensor dyieldFunction_dstress(const RankTwoTensor &stress, Real intnl) const override
The derivative of yield function with respect to stress.
registerMooseObject("SolidMechanicsApp", SolidMechanicsPlasticWeakPlaneTensile)
RankTwoTensor flowPotential(const RankTwoTensor &stress, Real intnl) const override
The flow potential.
RankFourTensor dflowPotential_dstress(const RankTwoTensor &stress, Real intnl) const override
The derivative of the flow potential with respect to stress.
SolidMechanicsPlasticWeakPlaneTensile(const InputParameters ¶meters)
virtual std::string modelName() const override
Real yieldFunction(const RankTwoTensor &stress, Real intnl) const override
The following functions are what you should override when building single-plasticity models...
virtual Real value(Real intnl) const
static InputParameters validParams()
Real f(Real x)
Test function for Brents method.
Rate-independent associative weak-plane tensile failure with hardening/softening of the tensile stren...
virtual Real tensile_strength(const Real internal_param) const
tensile strength as a function of residual value, rate, and internal_param
const SolidMechanicsHardeningModel & _strength
Yield function = _a * stress_zz - _strength;.
const Real _f_tol
Tolerance on yield function.
virtual Real derivative(Real intnl) const
const Real _a
Yield function = _a * stress_zz - _strength;.
virtual Real dtensile_strength(const Real internal_param) const
d(tensile strength)/d(internal_param) as a function of residual value, rate, and internal_param ...
Hardening Model base class.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
static const std::string alpha
virtual void activeConstraints(const std::vector< Real > &f, const RankTwoTensor &stress, Real intnl, const RankFourTensor &Eijkl, std::vector< bool > &act, RankTwoTensor &returned_stress) const override
The active yield surfaces, given a vector of yield functions.
RankTwoTensor dflowPotential_dintnl(const RankTwoTensor &stress, Real intnl) const override
The derivative of the flow potential with respect to the internal parameter.
void mooseError(Args &&... args) const
Real dyieldFunction_dintnl(const RankTwoTensor &stress, Real intnl) const override
The derivative of yield function with respect to the internal parameter.
static const std::complex< double > j(0, 1)
Complex number "j" (also known as "i")
Plastic Model base class The virtual functions written below must be over-ridden in derived classes t...
registerMooseObjectRenamed("SolidMechanicsApp", TensorMechanicsPlasticWeakPlaneTensile, "01/01/2025 00:00", SolidMechanicsPlasticWeakPlaneTensile)
static InputParameters validParams()