www.mooseframework.org
TensorMechanicsPlasticWeakPlaneTensile.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 
14 
16 
17 template <>
19 
25 {
26 public:
27  static InputParameters validParams();
28 
29  TensorMechanicsPlasticWeakPlaneTensile(const InputParameters & parameters);
30 
31  virtual void activeConstraints(const std::vector<Real> & f,
32  const RankTwoTensor & stress,
33  Real intnl,
34  const RankFourTensor & Eijkl,
35  std::vector<bool> & act,
36  RankTwoTensor & returned_stress) const override;
37 
38  virtual std::string modelName() const override;
39 
40 protected:
42  const Real _a;
43 
46 
47  Real yieldFunction(const RankTwoTensor & stress, Real intnl) const override;
48 
49  RankTwoTensor dyieldFunction_dstress(const RankTwoTensor & stress, Real intnl) const override;
50 
51  Real dyieldFunction_dintnl(const RankTwoTensor & stress, Real intnl) const override;
52 
53  RankTwoTensor flowPotential(const RankTwoTensor & stress, Real intnl) const override;
54 
55  RankFourTensor dflowPotential_dstress(const RankTwoTensor & stress, Real intnl) const override;
56 
57  RankTwoTensor dflowPotential_dintnl(const RankTwoTensor & stress, Real intnl) const override;
58 
60  virtual Real tensile_strength(const Real internal_param) const;
61 
63  virtual Real dtensile_strength(const Real internal_param) const;
64 };
TensorMechanicsPlasticWeakPlaneTensile::yieldFunction
Real yieldFunction(const RankTwoTensor &stress, Real intnl) const override
The following functions are what you should override when building single-plasticity models.
Definition: TensorMechanicsPlasticWeakPlaneTensile.C:45
TensorMechanicsPlasticWeakPlaneTensile::flowPotential
RankTwoTensor flowPotential(const RankTwoTensor &stress, Real intnl) const override
The flow potential.
Definition: TensorMechanicsPlasticWeakPlaneTensile.C:68
TensorMechanicsPlasticWeakPlaneTensile::tensile_strength
virtual Real tensile_strength(const Real internal_param) const
tensile strength as a function of residual value, rate, and internal_param
Definition: TensorMechanicsPlasticWeakPlaneTensile.C:91
TensorMechanicsPlasticWeakPlaneTensile::dflowPotential_dintnl
RankTwoTensor dflowPotential_dintnl(const RankTwoTensor &stress, Real intnl) const override
The derivative of the flow potential with respect to the internal parameter.
Definition: TensorMechanicsPlasticWeakPlaneTensile.C:84
TensorMechanicsPlasticModel.h
TensorMechanicsPlasticWeakPlaneTensile::TensorMechanicsPlasticWeakPlaneTensile
TensorMechanicsPlasticWeakPlaneTensile(const InputParameters &parameters)
Definition: TensorMechanicsPlasticWeakPlaneTensile.C:33
TensorMechanicsPlasticWeakPlaneTensile::_strength
const TensorMechanicsHardeningModel & _strength
Yield function = _a * stress_zz - _strength;.
Definition: TensorMechanicsPlasticWeakPlaneTensile.h:45
TensorMechanicsPlasticWeakPlaneTensile::_a
const Real _a
Yield function = _a * stress_zz - _strength;.
Definition: TensorMechanicsPlasticWeakPlaneTensile.h:42
TensorMechanicsPlasticWeakPlaneTensile::validParams
static InputParameters validParams()
Definition: TensorMechanicsPlasticWeakPlaneTensile.C:18
validParams< TensorMechanicsPlasticWeakPlaneTensile >
InputParameters validParams< TensorMechanicsPlasticWeakPlaneTensile >()
TensorMechanicsPlasticWeakPlaneTensile::modelName
virtual std::string modelName() const override
Definition: TensorMechanicsPlasticWeakPlaneTensile.C:137
TensorMechanicsPlasticWeakPlaneTensile::dyieldFunction_dintnl
Real dyieldFunction_dintnl(const RankTwoTensor &stress, Real intnl) const override
The derivative of yield function with respect to the internal parameter.
Definition: TensorMechanicsPlasticWeakPlaneTensile.C:61
RankFourTensorTempl< Real >
TensorMechanicsPlasticWeakPlaneTensile::dyieldFunction_dstress
RankTwoTensor dyieldFunction_dstress(const RankTwoTensor &stress, Real intnl) const override
The derivative of yield function with respect to stress.
Definition: TensorMechanicsPlasticWeakPlaneTensile.C:52
TensorMechanicsPlasticModel
Plastic Model base class The virtual functions written below must be over-ridden in derived classes t...
Definition: TensorMechanicsPlasticModel.h:42
TensorMechanicsPlasticWeakPlaneTensile::activeConstraints
virtual void activeConstraints(const std::vector< Real > &f, const RankTwoTensor &stress, Real intnl, const RankFourTensor &Eijkl, std::vector< bool > &act, RankTwoTensor &returned_stress) const override
The active yield surfaces, given a vector of yield functions.
Definition: TensorMechanicsPlasticWeakPlaneTensile.C:103
TensorMechanicsPlasticWeakPlaneTensile::dtensile_strength
virtual Real dtensile_strength(const Real internal_param) const
d(tensile strength)/d(internal_param) as a function of residual value, rate, and internal_param
Definition: TensorMechanicsPlasticWeakPlaneTensile.C:97
RankTwoTensorTempl< Real >
TensorMechanicsHardeningModel.h
TensorMechanicsPlasticWeakPlaneTensile::dflowPotential_dstress
RankFourTensor dflowPotential_dstress(const RankTwoTensor &stress, Real intnl) const override
The derivative of the flow potential with respect to stress.
Definition: TensorMechanicsPlasticWeakPlaneTensile.C:77
TensorMechanicsHardeningModel
Hardening Model base class.
Definition: TensorMechanicsHardeningModel.h:27
TensorMechanicsPlasticWeakPlaneTensile
Rate-independent associative weak-plane tensile failure with hardening/softening of the tensile stren...
Definition: TensorMechanicsPlasticWeakPlaneTensile.h:24