20 params.
addClassDescription(
"Softening model with an abrupt stress release upon cracking. This " 21 "class is intended to be used with ADComputeSmearedCrackingStress and " 22 "relies on automatic differentiation.");
24 "stiffness_reduction",
25 "stiffness_reduction <= 1 & stiffness_reduction >= 0",
26 "Factor multiplied by the current stiffness each time a new crack forms");
32 _stiffness_reduction(getParam<
Real>(
"stiffness_reduction"))
42 const ADReal & cracking_stress,
43 const ADReal & youngs_modulus)
45 if (stress > cracking_stress)
49 stress = stiffness_ratio * youngs_modulus * strain;
static InputParameters validParams()
ADPowerLawSoftening is a smeared crack softening model that uses a power law equation to soften the t...
virtual void computeCrackingRelease(ADReal &stress, ADReal &stiffness_ratio, const ADReal &strain, const ADReal &crack_initiation_strain, const ADReal &crack_max_strain, const ADReal &cracking_stress, const ADReal &youngs_modulus) override
Compute the effect of the cracking release model on the stress and stiffness in the direction of a si...
registerMooseObject("SolidMechanicsApp", ADPowerLawSoftening)
ADPowerLawSoftening(const InputParameters ¶meters)
ADSmearedCrackSofteningBase is the base class for a set of models that define the softening behavior ...
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
static InputParameters validParams()
const Real & _stiffness_reduction
Reduction factor applied to the initial stiffness each time a new crack initiates.