https://mooseframework.inl.gov
SmearedCrackSofteningBase.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 
12 #include "Conversion.h"
13 #include "InputParameters.h"
14 #include "Material.h"
15 
16 // Forward declaration
17 
25 {
26 public:
28 
30 
44  virtual void computeCrackingRelease(Real & stress,
45  Real & stiffness_ratio,
46  const Real strain,
47  const Real crack_initiation_strain,
48  const Real crack_max_strain,
49  const Real cracking_stress,
50  const Real youngs_modulus) = 0;
51 
53  void resetQpProperties() final {}
54  void resetProperties() final {}
56 };
void resetQpProperties() final
Retained as empty methods to avoid a warning from Material.C in framework. These methods are unused i...
static InputParameters validParams()
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...
SmearedCrackSofteningBase(const InputParameters &parameters)
SmearedCrackSofteningBase is the base class for a set of models that define the softening behavior of...
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const InputParameters & parameters() const