www.mooseframework.org
SmearedCrackSofteningBase.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 
12 #include "Conversion.h"
13 #include "InputParameters.h"
14 #include "Material.h"
15 
16 // Forward declaration
18 
19 template <>
21 
28 class SmearedCrackSofteningBase : public Material
29 {
30 public:
31  static InputParameters validParams();
32 
33  SmearedCrackSofteningBase(const InputParameters & parameters);
34 
48  virtual void computeCrackingRelease(Real & stress,
49  Real & stiffness_ratio,
50  const Real strain,
51  const Real crack_initiation_strain,
52  const Real crack_max_strain,
53  const Real cracking_stress,
54  const Real youngs_modulus) = 0;
55 
57  void resetQpProperties() final {}
58  void resetProperties() final {}
60 };
SmearedCrackSofteningBase::SmearedCrackSofteningBase
SmearedCrackSofteningBase(const InputParameters &parameters)
Definition: SmearedCrackSofteningBase.C:28
SmearedCrackSofteningBase::resetProperties
void resetProperties() final
Definition: SmearedCrackSofteningBase.h:58
SmearedCrackSofteningBase::resetQpProperties
void resetQpProperties() final
Retained as empty methods to avoid a warning from Material.C in framework. These methods are unused i...
Definition: SmearedCrackSofteningBase.h:57
SmearedCrackSofteningBase
SmearedCrackSofteningBase is the base class for a set of models that define the softening behavior of...
Definition: SmearedCrackSofteningBase.h:28
SmearedCrackSofteningBase::validParams
static InputParameters validParams()
Definition: SmearedCrackSofteningBase.C:17
SmearedCrackSofteningBase::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)=0
Compute the effect of the cracking release model on the stress and stiffness in the direction of a si...
validParams< SmearedCrackSofteningBase >
InputParameters validParams< SmearedCrackSofteningBase >()