https://mooseframework.inl.gov
Loading...
Searching...
No Matches
SolidMechanicsPlasticMeanCap.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
14
23{
24public:
26
28
29 virtual std::string modelName() const override;
30
31protected:
32 Real yieldFunction(const RankTwoTensor & stress, Real intnl) const override;
33
34 RankTwoTensor dyieldFunction_dstress(const RankTwoTensor & stress, Real intnl) const override;
35
36 Real dyieldFunction_dintnl(const RankTwoTensor & stress, Real intnl) const override;
37
38 RankTwoTensor flowPotential(const RankTwoTensor & stress, Real intnl) const override;
39
40 RankFourTensor dflowPotential_dstress(const RankTwoTensor & stress, Real intnl) const override;
41
42 RankTwoTensor dflowPotential_dintnl(const RankTwoTensor & stress, Real intnl) const override;
43
46
49};
const InputParameters & parameters() const
Class that limits the mean stress Yield function = a*mean_stress - strength mean_stress = (stress_xx ...
RankTwoTensor dyieldFunction_dstress(const RankTwoTensor &stress, Real intnl) const override
The derivative of yield function with respect to stress.
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.
Real yieldFunction(const RankTwoTensor &stress, Real intnl) const override
The following functions are what you should override when building single-plasticity models.
const SolidMechanicsHardeningModel & _strength
strength
virtual std::string modelName() const override
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.
Plastic Model base class The virtual functions written below must be over-ridden in derived classes t...