https://mooseframework.inl.gov
PureElasticTractionSeparation.C
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 
11 
13 
16 {
18  params.addClassDescription("Pure elastic traction separation law.");
19  params.addRequiredParam<Real>("normal_stiffness", "The value of K in the normal direction");
20  params.addRequiredParam<Real>("tangent_stiffness", "The value of K in the tangent direction");
21  return params;
22 }
23 
26  _K(std::vector<Real>{getParam<Real>("normal_stiffness"),
27  getParam<Real>("tangent_stiffness"),
28  getParam<Real>("tangent_stiffness")})
29 {
30 }
31 
32 void
34 {
37 }
const RankTwoTensor _K
the vector representing the maximum allowed traction in each direction
PureElasticTractionSeparation(const InputParameters &parameters)
MaterialProperty< RealVectorValue > & _interface_traction
the value of the traction in local coordinates
void addRequiredParam(const std::string &name, const std::string &doc_string)
unsigned int _qp
registerMooseObject("SolidMechanicsApp", PureElasticTractionSeparation)
Base class used to implement traction separetion laws for materials whose beahvior can be described u...
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
void computeInterfaceTractionAndDerivatives() override
method computing the total traction and its derivatives
void addClassDescription(const std::string &doc_string)
const MaterialProperty< RealVectorValue > & _interface_displacement_jump
The displacment jump in local coordaintes.
Implementation of the non-stateful exponential traction separation law proposed by Salehani...
MaterialProperty< RankTwoTensor > & _dinterface_traction_djump
the traction&#39;s derivatives wrt the displacement jump in local coordinates