https://mooseframework.inl.gov
Loading...
Searching...
No Matches
PowerLawSoftening.h
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
10#pragma once
11
13
20{
21public:
23
25
26 virtual void computeCrackingRelease(Real & stress,
27 Real & stiffness_ratio,
28 const Real strain,
29 const Real crack_initiation_strain,
30 const Real crack_max_strain,
31 const Real cracking_stress,
32 const Real youngs_modulus,
33 const Real poissons_ratio) override;
34
35protected:
38};
const InputParameters & parameters() const
PowerLawSoftening is a smeared crack softening model that uses a power law equation to soften the ten...
static InputParameters validParams()
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, const Real poissons_ratio) override
Compute the effect of the cracking release model on the stress and stiffness in the direction of a si...
const Real & _stiffness_reduction
Reduction factor applied to the initial stiffness each time a new crack initiates.
SmearedCrackSofteningBase is the base class for a set of models that define the softening behavior of...