www.mooseframework.org
ExponentialSoftening.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
16 
17 template <>
18 InputParameters validParams<ExponentialSoftening>();
19 
26 {
27 public:
28  static InputParameters validParams();
29 
30  ExponentialSoftening(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 
45  const Real & _alpha;
46 
48  const bool _alpha_set_by_user;
49 
51  const Real & _beta;
52 };
ExponentialSoftening::_residual_stress
const Real & _residual_stress
Residual stress after full softening.
Definition: ExponentialSoftening.h:42
SmearedCrackSofteningBase.h
ExponentialSoftening
ExponentialSoftening is a smeared crack softening model that uses an exponential softening curve.
Definition: ExponentialSoftening.h:25
ExponentialSoftening::ExponentialSoftening
ExponentialSoftening(const InputParameters &parameters)
Definition: ExponentialSoftening.C:45
ExponentialSoftening::validParams
static InputParameters validParams()
Definition: ExponentialSoftening.C:19
SmearedCrackSofteningBase
SmearedCrackSofteningBase is the base class for a set of models that define the softening behavior of...
Definition: SmearedCrackSofteningBase.h:28
validParams< ExponentialSoftening >
InputParameters validParams< ExponentialSoftening >()
ExponentialSoftening::_beta
const Real & _beta
Multiplier on alpha to determine the initial softening slope.
Definition: ExponentialSoftening.h:51
ExponentialSoftening::_alpha
const Real & _alpha
Initial slope of the softening curve.
Definition: ExponentialSoftening.h:45
ExponentialSoftening::_alpha_set_by_user
const bool _alpha_set_by_user
Variable to track whether _alpha was set by the user.
Definition: ExponentialSoftening.h:48
ExponentialSoftening::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: ExponentialSoftening.C:55