www.mooseframework.org
Public Member Functions | Static Public Member Functions | Protected Attributes | List of all members
AbruptSoftening Class Reference

AbruptSoftening is a smeared crack softening model that abruptly drops the stress upon crack initiation. More...

#include <AbruptSoftening.h>

Inheritance diagram for AbruptSoftening:
[legend]

Public Member Functions

 AbruptSoftening (const InputParameters &parameters)
 
virtual void computeCrackingRelease (Real &stress, Real &stiffness_ratio, const Real strain, const Real crack_initiation_strain, const Real crack_max_strain, const Real cracking_stress, const Real youngs_modulus) override
 Compute the effect of the cracking release model on the stress and stiffness in the direction of a single crack. More...
 
void resetQpProperties () final
 Retained as empty methods to avoid a warning from Material.C in framework. These methods are unused in all inheriting classes and should not be overwritten. More...
 
void resetProperties () final
 

Static Public Member Functions

static InputParameters validParams ()
 

Protected Attributes

const Real & _residual_stress
 Residual stress after full softening. More...
 

Detailed Description

AbruptSoftening is a smeared crack softening model that abruptly drops the stress upon crack initiation.

It is for use with ComputeSmearedCrackingStress.

Definition at line 25 of file AbruptSoftening.h.

Constructor & Destructor Documentation

◆ AbruptSoftening()

AbruptSoftening::AbruptSoftening ( const InputParameters &  parameters)

Definition at line 32 of file AbruptSoftening.C.

33  : SmearedCrackSofteningBase(parameters), _residual_stress(getParam<Real>("residual_stress"))
34 {
35 }

Member Function Documentation

◆ computeCrackingRelease()

void AbruptSoftening::computeCrackingRelease ( Real &  stress,
Real &  stiffness_ratio,
const Real  strain,
const Real  crack_initiation_strain,
const Real  crack_max_strain,
const Real  cracking_stress,
const Real  youngs_modulus 
)
overridevirtual

Compute the effect of the cracking release model on the stress and stiffness in the direction of a single crack.

Parameters
stressStress in direction of crack
stiffness_ratioRatio of damaged to original stiffness in cracking direction
strainStrain in the current crack direction
crack_initiation_strainStrain in crack direction when crack first initiated
crack_max_strainMaximum strain in crack direction
cracking_stressThreshold tensile stress for crack initiation
youngs_modulusYoung's modulus

Implements SmearedCrackSofteningBase.

Definition at line 38 of file AbruptSoftening.C.

45 {
46  if (_residual_stress == 0.0)
47  {
48  const Real tiny = 1.e-16;
49  stiffness_ratio = tiny;
50  stress = tiny * crack_initiation_strain * youngs_modulus;
51  }
52  else
53  {
54  stress = _residual_stress * cracking_stress;
55  stiffness_ratio = stress / (crack_max_strain * youngs_modulus);
56  }
57 }

◆ resetProperties()

void SmearedCrackSofteningBase::resetProperties ( )
inlinefinalinherited

Definition at line 58 of file SmearedCrackSofteningBase.h.

58 {}

◆ resetQpProperties()

void SmearedCrackSofteningBase::resetQpProperties ( )
inlinefinalinherited

Retained as empty methods to avoid a warning from Material.C in framework. These methods are unused in all inheriting classes and should not be overwritten.

Definition at line 57 of file SmearedCrackSofteningBase.h.

57 {}

◆ validParams()

InputParameters AbruptSoftening::validParams ( )
static

Definition at line 19 of file AbruptSoftening.C.

20 {
21  InputParameters params = SmearedCrackSofteningBase::validParams();
22  params.addClassDescription("Softening model with an abrupt stress release upon cracking. This "
23  "class is intended to be used with ComputeSmearedCrackingStress.");
24  params.addRangeCheckedParam<Real>(
25  "residual_stress",
26  0.0,
27  "residual_stress <= 1 & residual_stress >= 0",
28  "The fraction of the cracking stress allowed to be maintained following a crack.");
29  return params;
30 }

Member Data Documentation

◆ _residual_stress

const Real& AbruptSoftening::_residual_stress
protected

Residual stress after full softening.

Definition at line 42 of file AbruptSoftening.h.

Referenced by computeCrackingRelease().


The documentation for this class was generated from the following files:
SmearedCrackSofteningBase::SmearedCrackSofteningBase
SmearedCrackSofteningBase(const InputParameters &parameters)
Definition: SmearedCrackSofteningBase.C:28
SmearedCrackSofteningBase::validParams
static InputParameters validParams()
Definition: SmearedCrackSofteningBase.C:17
AbruptSoftening::_residual_stress
const Real & _residual_stress
Residual stress after full softening.
Definition: AbruptSoftening.h:42