www.mooseframework.org
TensorMechanicsPlasticWeakPlaneTensileN.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 
15 
16 template <>
18 
24 {
25 public:
26  static InputParameters validParams();
27 
28  TensorMechanicsPlasticWeakPlaneTensileN(const InputParameters & parameters);
29 
30  virtual std::string modelName() const override;
31 
32 protected:
33  Real yieldFunction(const RankTwoTensor & stress, Real intnl) const override;
34 
35  RankTwoTensor dyieldFunction_dstress(const RankTwoTensor & stress, Real intnl) const override;
36 
37  Real dyieldFunction_dintnl(const RankTwoTensor & stress, Real intnl) const override;
38 
39  RankTwoTensor flowPotential(const RankTwoTensor & stress, Real intnl) const override;
40 
41  RankFourTensor dflowPotential_dstress(const RankTwoTensor & stress, Real intnl) const override;
42 
43  RankTwoTensor dflowPotential_dintnl(const RankTwoTensor & stress, Real intnl) const override;
44 
46  RealVectorValue _input_n;
47 
50 
52  RealTensorValue _rot;
53 };
TensorMechanicsPlasticWeakPlaneTensileN::TensorMechanicsPlasticWeakPlaneTensileN
TensorMechanicsPlasticWeakPlaneTensileN(const InputParameters &parameters)
Definition: TensorMechanicsPlasticWeakPlaneTensileN.C:30
TensorMechanicsPlasticWeakPlaneTensileN
Rate-independent associative weak-plane tensile failure with hardening/softening, and normal directio...
Definition: TensorMechanicsPlasticWeakPlaneTensileN.h:23
TensorMechanicsPlasticWeakPlaneTensileN::flowPotential
RankTwoTensor flowPotential(const RankTwoTensor &stress, Real intnl) const override
The flow potential.
Definition: TensorMechanicsPlasticWeakPlaneTensileN.C:76
TensorMechanicsPlasticWeakPlaneTensileN::yieldFunction
Real yieldFunction(const RankTwoTensor &stress, Real intnl) const override
The following functions are what you should override when building single-plasticity models.
Definition: TensorMechanicsPlasticWeakPlaneTensileN.C:51
TensorMechanicsPlasticWeakPlaneTensileN::dyieldFunction_dstress
RankTwoTensor dyieldFunction_dstress(const RankTwoTensor &stress, Real intnl) const override
The derivative of yield function with respect to stress.
Definition: TensorMechanicsPlasticWeakPlaneTensileN.C:62
TensorMechanicsPlasticWeakPlaneTensile.h
TensorMechanicsPlasticWeakPlaneTensileN::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: TensorMechanicsPlasticWeakPlaneTensileN.C:90
validParams< TensorMechanicsPlasticWeakPlaneTensileN >
InputParameters validParams< TensorMechanicsPlasticWeakPlaneTensileN >()
TensorMechanicsPlasticWeakPlaneTensileN::dyieldFunction_dintnl
Real dyieldFunction_dintnl(const RankTwoTensor &stress, Real intnl) const override
The derivative of yield function with respect to the internal parameter.
Definition: TensorMechanicsPlasticWeakPlaneTensileN.C:69
TensorMechanicsPlasticWeakPlaneTensileN::_df_dsig
RankTwoTensor _df_dsig
Flow direction, which is constant in this case.
Definition: TensorMechanicsPlasticWeakPlaneTensileN.h:49
TensorMechanicsPlasticWeakPlaneTensileN::modelName
virtual std::string modelName() const override
Definition: TensorMechanicsPlasticWeakPlaneTensileN.C:97
RankFourTensorTempl< Real >
TensorMechanicsPlasticWeakPlaneTensileN::validParams
static InputParameters validParams()
Definition: TensorMechanicsPlasticWeakPlaneTensileN.C:19
RankTwoTensorTempl< Real >
TensorMechanicsPlasticWeakPlaneTensileN::_rot
RealTensorValue _rot
This rotation matrix rotates _input_n to (0, 0, 1)
Definition: TensorMechanicsPlasticWeakPlaneTensileN.h:52
TensorMechanicsPlasticWeakPlaneTensileN::_input_n
RealVectorValue _input_n
Unit normal inputted by user.
Definition: TensorMechanicsPlasticWeakPlaneTensileN.h:46
TensorMechanicsPlasticWeakPlaneTensileN::dflowPotential_dstress
RankFourTensor dflowPotential_dstress(const RankTwoTensor &stress, Real intnl) const override
The derivative of the flow potential with respect to stress.
Definition: TensorMechanicsPlasticWeakPlaneTensileN.C:83
TensorMechanicsPlasticWeakPlaneTensile
Rate-independent associative weak-plane tensile failure with hardening/softening of the tensile stren...
Definition: TensorMechanicsPlasticWeakPlaneTensile.h:24