www.mooseframework.org
AbruptSoftening.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 AbruptSoftening;
16 
17 template <>
18 InputParameters validParams<AbruptSoftening>();
19 
26 {
27 public:
28  static InputParameters validParams();
29 
30  AbruptSoftening(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 & _residual_stress;
43 };
SmearedCrackSofteningBase.h
AbruptSoftening
AbruptSoftening is a smeared crack softening model that abruptly drops the stress upon crack initiati...
Definition: AbruptSoftening.h:25
SmearedCrackSofteningBase
SmearedCrackSofteningBase is the base class for a set of models that define the softening behavior of...
Definition: SmearedCrackSofteningBase.h:28
AbruptSoftening::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: AbruptSoftening.C:38
validParams< AbruptSoftening >
InputParameters validParams< AbruptSoftening >()
AbruptSoftening::validParams
static InputParameters validParams()
Definition: AbruptSoftening.C:19
AbruptSoftening::_residual_stress
const Real & _residual_stress
Residual stress after full softening.
Definition: AbruptSoftening.h:42
AbruptSoftening::AbruptSoftening
AbruptSoftening(const InputParameters &parameters)
Definition: AbruptSoftening.C:32