https://mooseframework.inl.gov
Loading...
Searching...
No Matches
ADExponentialEnergyBasedSoftening.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(ADReal & stress,
27 ADReal & stiffness_ratio,
28 const ADReal & strain,
29 const ADReal & crack_initiation_strain,
30 const ADReal & crack_max_strain,
31 const ADReal & cracking_stress,
32 const ADReal & youngs_modulus,
33 const ADReal & poissons_ratio) override;
34
35protected:
37 const Real & _residual_stress;
38
40 const Real & _fracture_toughness;
41};
DualNumber< Real, DNDerivativeType, true > ADReal
ExponentialEnergyBasedSoftening is a smeared crack softening model that uses an exponential softening...
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, const ADReal &poissons_ratio) override
Compute the effect of the cracking release model on the stress and stiffness in the direction of a si...
const Real & _fracture_toughness
Fracture toughness.
const Real & _residual_stress
Residual stress after full softening.
ADSmearedCrackSofteningBase is the base class for a set of models that define the softening behavior ...
const InputParameters & parameters() const