www.mooseframework.org
PowerLawSoftening.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 
14 // Forward declaration
15 class PowerLawSoftening;
16 
17 template <>
18 InputParameters validParams<PowerLawSoftening>();
19 
26 {
27 public:
28  static InputParameters validParams();
29 
30  PowerLawSoftening(const InputParameters & parameters);
31 
32  virtual void computeCrackingRelease(Real & stress,
33  Real & stiffness_ratio,
34  const Real strain,
35  const Real crack_initiation_strain,
36  const Real crack_max_strain,
37  const Real cracking_stress,
38  const Real youngs_modulus) override;
39 
40 protected:
42  const Real & _stiffness_reduction;
43 };
SmearedCrackSofteningBase.h
PowerLawSoftening
PowerLawSoftening is a smeared crack softening model that uses a power law equation to soften the ten...
Definition: PowerLawSoftening.h:25
SmearedCrackSofteningBase
SmearedCrackSofteningBase is the base class for a set of models that define the softening behavior of...
Definition: SmearedCrackSofteningBase.h:28
PowerLawSoftening::PowerLawSoftening
PowerLawSoftening(const InputParameters &parameters)
Definition: PowerLawSoftening.C:31
PowerLawSoftening::validParams
static InputParameters validParams()
Definition: PowerLawSoftening.C:19
PowerLawSoftening::_stiffness_reduction
const Real & _stiffness_reduction
Reduction factor applied to the initial stiffness each time a new crack initiates.
Definition: PowerLawSoftening.h:42
validParams< PowerLawSoftening >
InputParameters validParams< PowerLawSoftening >()
PowerLawSoftening::computeCrackingRelease
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 si...
Definition: PowerLawSoftening.C:38