https://mooseframework.inl.gov
SolidMechanicsPlasticSimpleTester.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 
21 {
22 public:
24 
26 
27  virtual std::string modelName() const override;
28 
29 protected:
30  Real yieldFunction(const RankTwoTensor & stress, Real intnl) const override;
31 
32  RankTwoTensor dyieldFunction_dstress(const RankTwoTensor & stress, Real intnl) const override;
33 
34  Real dyieldFunction_dintnl(const RankTwoTensor & stress, Real intnl) const override;
35 
36  RankTwoTensor flowPotential(const RankTwoTensor & stress, Real intnl) const override;
37 
38  RankFourTensor dflowPotential_dstress(const RankTwoTensor & stress, Real intnl) const override;
39 
40  RankTwoTensor dflowPotential_dintnl(const RankTwoTensor & stress, Real intnl) const override;
41 
44 
47 
50 
53 
56 
59 
62 };
SolidMechanicsPlasticSimpleTester(const InputParameters &parameters)
Class that can be used for testing multi-surface plasticity models.
RankTwoTensor dflowPotential_dintnl(const RankTwoTensor &stress, Real intnl) const override
The derivative of the flow potential with respect to the internal parameter.
RankFourTensor dflowPotential_dstress(const RankTwoTensor &stress, Real intnl) const override
The derivative of the flow potential with respect to stress.
RankTwoTensor flowPotential(const RankTwoTensor &stress, Real intnl) const override
The flow potential.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const InputParameters & parameters() const
Plastic Model base class The virtual functions written below must be over-ridden in derived classes t...
Real yieldFunction(const RankTwoTensor &stress, Real intnl) const override
The following functions are what you should override when building single-plasticity models...
Real dyieldFunction_dintnl(const RankTwoTensor &stress, Real intnl) const override
The derivative of yield function with respect to the internal parameter.
RankTwoTensor dyieldFunction_dstress(const RankTwoTensor &stress, Real intnl) const override
The derivative of yield function with respect to stress.
virtual std::string modelName() const override