https://mooseframework.inl.gov
Loading...
Searching...
No Matches
SolidMechanicsPlasticWeakPlaneTensileN.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
13
19{
20public:
22
24
25 virtual std::string modelName() const override;
26
27protected:
28 Real yieldFunction(const RankTwoTensor & stress, Real intnl) const override;
29
30 RankTwoTensor dyieldFunction_dstress(const RankTwoTensor & stress, Real intnl) const override;
31
32 Real dyieldFunction_dintnl(const RankTwoTensor & stress, Real intnl) const override;
33
34 RankTwoTensor flowPotential(const RankTwoTensor & stress, Real intnl) const override;
35
36 RankFourTensor dflowPotential_dstress(const RankTwoTensor & stress, Real intnl) const override;
37
38 RankTwoTensor dflowPotential_dintnl(const RankTwoTensor & stress, Real intnl) const override;
39
41 RealVectorValue _input_n;
42
45
47 RealTensorValue _rot;
48};
const InputParameters & parameters() const
Rate-independent associative weak-plane tensile failure with hardening/softening, and normal directio...
RankTwoTensor dflowPotential_dintnl(const RankTwoTensor &stress, Real intnl) const override
The derivative of the flow potential with respect to the internal parameter.
RankTwoTensor flowPotential(const RankTwoTensor &stress, Real intnl) const override
The flow potential.
RankTwoTensor dyieldFunction_dstress(const RankTwoTensor &stress, Real intnl) const override
The derivative of yield function with respect to stress.
RankTwoTensor _df_dsig
Flow direction, which is constant in this case.
Real yieldFunction(const RankTwoTensor &stress, Real intnl) const override
The following functions are what you should override when building single-plasticity models.
RealTensorValue _rot
This rotation matrix rotates _input_n to (0, 0, 1)
RealVectorValue _input_n
Unit normal inputted by user.
RankFourTensor dflowPotential_dstress(const RankTwoTensor &stress, Real intnl) const override
The derivative of the flow potential with respect to stress.
Real dyieldFunction_dintnl(const RankTwoTensor &stress, Real intnl) const override
The derivative of yield function with respect to the internal parameter.
Rate-independent associative weak-plane tensile failure with hardening/softening of the tensile stren...