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

Base class for scalar damage models. More...

#include <ScalarDamageBase.h>

Inheritance diagram for ScalarDamageBase:
[legend]

Public Member Functions

 ScalarDamageBase (const InputParameters &parameters)
 
virtual void initQpStatefulProperties () override
 
virtual void updateDamage () override
 Update the internal variable(s) that evolve the damage. More...
 
virtual void updateStressForDamage (RankTwoTensor &stress_new) override
 Update the current stress tensor for effects of damage. More...
 
virtual void updateJacobianMultForDamage (RankFourTensor &jacobian_mult) override
 Update the material constitutive matrix. More...
 
virtual void computeUndamagedOldStress (RankTwoTensor &stress_old) override
 
virtual Real computeTimeStepLimit () override
 Compute the limiting value of the time step for this material. More...
 
const Real & getQpDamageIndex (unsigned int qp)
 
const std::string getDamageIndexName () const
 
virtual void finiteStrainRotation (const RankTwoTensor &rotation_increment)
 Perform any necessary rotation of internal variables for finite strain. More...
 
void setQp (unsigned int qp)
 Sets the value of the member variable _qp for use in inheriting classes. 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 Member Functions

virtual void updateQpDamageIndex ()=0
 Update the damage index at the current qpoint. More...
 

Protected Attributes

const std::string _damage_index_name
 Name of the material property where the damage index is stored. More...
 
const bool _use_old_damage
 If true, use the damage index from the old state (rather than the current state) More...
 
const Real & _residual_stiffness_fraction
 Residual fraction of stiffness used for material that is fully damaged. More...
 
const Real & _maximum_damage_increment
 Maximum damage increment allowed for the time step. More...
 
const std::string _base_name
 Base name optionally used as prefix to material tensor names. More...
 
MaterialProperty< Real > & _damage_index
 Material property that provides the damage index. More...
 
const MaterialProperty< Real > & _damage_index_old
 
const MaterialProperty< Real > & _damage_index_older
 

Detailed Description

Base class for scalar damage models.

Definition at line 23 of file ScalarDamageBase.h.

Constructor & Destructor Documentation

◆ ScalarDamageBase()

ScalarDamageBase::ScalarDamageBase ( const InputParameters &  parameters)

Definition at line 41 of file ScalarDamageBase.C.

42  : DamageBase(parameters),
43  _damage_index_name(getParam<std::string>("damage_index_name")),
44  _damage_index(declareProperty<Real>(_base_name + _damage_index_name)),
45  _damage_index_old(getMaterialPropertyOld<Real>(_base_name + _damage_index_name)),
46  _damage_index_older(getMaterialPropertyOlder<Real>(_base_name + _damage_index_name)),
47  _use_old_damage(getParam<bool>("use_old_damage")),
48  _residual_stiffness_fraction(getParam<Real>("residual_stiffness_fraction")),
49  _maximum_damage_increment(getParam<Real>("maximum_damage_increment"))
50 {
51 }

Member Function Documentation

◆ computeTimeStepLimit()

Real ScalarDamageBase::computeTimeStepLimit ( )
overridevirtual

Compute the limiting value of the time step for this material.

Returns
Limiting time step

Reimplemented from DamageBase.

Definition at line 100 of file ScalarDamageBase.C.

101 {
102  Real current_damage_increment = (_damage_index[_qp] - _damage_index_old[_qp]);
103  if (MooseUtils::absoluteFuzzyEqual(current_damage_increment, 0.0))
104  return std::numeric_limits<Real>::max();
105 
106  return _dt * _maximum_damage_increment / current_damage_increment;
107 }

◆ computeUndamagedOldStress()

void ScalarDamageBase::computeUndamagedOldStress ( RankTwoTensor stress_old)
overridevirtual

Implements DamageBase.

Definition at line 83 of file ScalarDamageBase.C.

84 {
85  Real damage_index_old =
86  std::max((1.0 - (_use_old_damage ? _damage_index_older[_qp] : _damage_index_old[_qp])), 0.0);
87 
88  if (damage_index_old > 0.0)
89  stress_old /= damage_index_old;
90 }

◆ finiteStrainRotation()

void DamageBase::finiteStrainRotation ( const RankTwoTensor rotation_increment)
virtualinherited

Perform any necessary rotation of internal variables for finite strain.

Parameters
rotation_incrementThe finite-strain rotation increment

Definition at line 57 of file DamageBase.C.

58 {
59 }

Referenced by ComputeDamageStress::computeQpStress(), and ComputeMultipleInelasticStress::computeQpStress().

◆ getDamageIndexName()

const std::string ScalarDamageBase::getDamageIndexName ( ) const
inline

Definition at line 44 of file ScalarDamageBase.h.

44 { return _damage_index_name; }

◆ getQpDamageIndex()

const Real & ScalarDamageBase::getQpDamageIndex ( unsigned int  qp)

Definition at line 60 of file ScalarDamageBase.C.

61 {
62  setQp(qp);
64  return _damage_index[_qp];
65 }

Referenced by CombinedScalarDamage::updateQpDamageIndex().

◆ initQpStatefulProperties()

void ScalarDamageBase::initQpStatefulProperties ( )
overridevirtual

Definition at line 54 of file ScalarDamageBase.C.

55 {
56  _damage_index[_qp] = 0.0;
57 }

◆ resetProperties()

void DamageBase::resetProperties ( )
inlinefinalinherited

Definition at line 72 of file DamageBase.h.

72 {}

◆ resetQpProperties()

void DamageBase::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 71 of file DamageBase.h.

71 {}

◆ setQp()

void DamageBase::setQp ( unsigned int  qp)
inherited

Sets the value of the member variable _qp for use in inheriting classes.

Definition at line 40 of file DamageBase.C.

41 {
42  _qp = qp;
43 }

Referenced by ComputeDamageStress::computeQpStress(), ComputeMultipleInelasticStress::computeQpStress(), and getQpDamageIndex().

◆ updateDamage()

void ScalarDamageBase::updateDamage ( )
overridevirtual

Update the internal variable(s) that evolve the damage.

Reimplemented from DamageBase.

Definition at line 68 of file ScalarDamageBase.C.

69 {
71 }

◆ updateJacobianMultForDamage()

void ScalarDamageBase::updateJacobianMultForDamage ( RankFourTensor jacobian_mult)
overridevirtual

Update the material constitutive matrix.

Parameters
jacobian_multMaterial constitutive matrix to be modified for effects of damage

Implements DamageBase.

Definition at line 93 of file ScalarDamageBase.C.

94 {
95  jacobian_mult *= std::max((1.0 - (_use_old_damage ? _damage_index_old[_qp] : _damage_index[_qp])),
97 }

◆ updateQpDamageIndex()

virtual void ScalarDamageBase::updateQpDamageIndex ( )
protectedpure virtual

Update the damage index at the current qpoint.

Implemented in CombinedScalarDamage, and ScalarMaterialDamage.

Referenced by getQpDamageIndex(), and updateDamage().

◆ updateStressForDamage()

void ScalarDamageBase::updateStressForDamage ( RankTwoTensor stress_new)
overridevirtual

Update the current stress tensor for effects of damage.

Parameters
stress_newUndamaged stress to be modified by the damage model

Implements DamageBase.

Definition at line 74 of file ScalarDamageBase.C.

75 {
76  // Avoid multiplying by a small negative number, which could occur if damage_index
77  // is slightly greater than 1.0
78  stress_new *=
79  std::max((1.0 - (_use_old_damage ? _damage_index_old[_qp] : _damage_index[_qp])), 0.0);
80 }

◆ validParams()

InputParameters ScalarDamageBase::validParams ( )
static

Definition at line 16 of file ScalarDamageBase.C.

17 {
18  InputParameters params = DamageBase::validParams();
19  params.addClassDescription("Base class for damage model based on a scalar damage parameter");
20  params.addParam<bool>(
21  "use_old_damage",
22  false,
23  "Whether to use the damage index from the previous step in the stress computation");
24  params.addRangeCheckedParam<Real>(
25  "residual_stiffness_fraction",
26  1.e-8,
27  "residual_stiffness_fraction>=0 & residual_stiffness_fraction<1",
28  "Minimum fraction of original material stiffness retained for fully "
29  "damaged material (when damage_index=1)");
30  params.addRangeCheckedParam<Real>(
31  "maximum_damage_increment",
32  0.1,
33  "maximum_damage_increment>0 & maximum_damage_increment<1",
34  "maximum damage increment allowed for simulations with adaptive time step");
35  params.addParam<std::string>("damage_index_name",
36  "damage_index",
37  "name of the material property where the damage index is stored");
38  return params;
39 }

Referenced by CombinedScalarDamage::validParams(), and ScalarMaterialDamage::validParams().

Member Data Documentation

◆ _base_name

const std::string DamageBase::_base_name
protectedinherited

Base name optionally used as prefix to material tensor names.

Definition at line 77 of file DamageBase.h.

Referenced by ScalarMaterialDamage::updateQpDamageIndex().

◆ _damage_index

MaterialProperty<Real>& ScalarDamageBase::_damage_index
protected

◆ _damage_index_name

const std::string ScalarDamageBase::_damage_index_name
protected

Name of the material property where the damage index is stored.

Definition at line 48 of file ScalarDamageBase.h.

Referenced by getDamageIndexName().

◆ _damage_index_old

const MaterialProperty<Real>& ScalarDamageBase::_damage_index_old
protected

◆ _damage_index_older

const MaterialProperty<Real>& ScalarDamageBase::_damage_index_older
protected

Definition at line 56 of file ScalarDamageBase.h.

Referenced by computeUndamagedOldStress().

◆ _maximum_damage_increment

const Real& ScalarDamageBase::_maximum_damage_increment
protected

Maximum damage increment allowed for the time step.

Definition at line 66 of file ScalarDamageBase.h.

Referenced by computeTimeStepLimit().

◆ _residual_stiffness_fraction

const Real& ScalarDamageBase::_residual_stiffness_fraction
protected

Residual fraction of stiffness used for material that is fully damaged.

Definition at line 63 of file ScalarDamageBase.h.

Referenced by updateJacobianMultForDamage().

◆ _use_old_damage

const bool ScalarDamageBase::_use_old_damage
protected

If true, use the damage index from the old state (rather than the current state)

Definition at line 60 of file ScalarDamageBase.h.

Referenced by computeUndamagedOldStress(), updateJacobianMultForDamage(), and updateStressForDamage().


The documentation for this class was generated from the following files:
ScalarDamageBase::_residual_stiffness_fraction
const Real & _residual_stiffness_fraction
Residual fraction of stiffness used for material that is fully damaged.
Definition: ScalarDamageBase.h:63
ScalarDamageBase::_damage_index_old
const MaterialProperty< Real > & _damage_index_old
Definition: ScalarDamageBase.h:55
ScalarDamageBase::_use_old_damage
const bool _use_old_damage
If true, use the damage index from the old state (rather than the current state)
Definition: ScalarDamageBase.h:60
DamageBase::validParams
static InputParameters validParams()
Definition: DamageBase.C:15
DamageBase::_base_name
const std::string _base_name
Base name optionally used as prefix to material tensor names.
Definition: DamageBase.h:77
DamageBase::DamageBase
DamageBase(const InputParameters &parameters)
Definition: DamageBase.C:33
ScalarDamageBase::_maximum_damage_increment
const Real & _maximum_damage_increment
Maximum damage increment allowed for the time step.
Definition: ScalarDamageBase.h:66
ScalarDamageBase::_damage_index_older
const MaterialProperty< Real > & _damage_index_older
Definition: ScalarDamageBase.h:56
ScalarDamageBase::_damage_index
MaterialProperty< Real > & _damage_index
Material property that provides the damage index.
Definition: ScalarDamageBase.h:54
ScalarDamageBase::updateQpDamageIndex
virtual void updateQpDamageIndex()=0
Update the damage index at the current qpoint.
ScalarDamageBase::_damage_index_name
const std::string _damage_index_name
Name of the material property where the damage index is stored.
Definition: ScalarDamageBase.h:48
DamageBase::setQp
void setQp(unsigned int qp)
Sets the value of the member variable _qp for use in inheriting classes.
Definition: DamageBase.C:40