https://mooseframework.inl.gov
Loading...
Searching...
No Matches
CappedWeakPlaneCosseratStressUpdate.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
24{
25public:
27
29
33 bool requiresIsotropicTensor() override { return false; }
34
35protected:
36 virtual void consistentTangentOperator(const RankTwoTensor & stress_trial,
37 Real p_trial,
38 Real q_trial,
39 const RankTwoTensor & stress,
40 Real p,
41 Real q,
42 Real gaE,
43 const yieldAndFlow & smoothed_q,
44 const RankFourTensor & Eijkl,
45 bool compute_full_tangent_operator,
46 RankFourTensor & cto) const override;
47
48 virtual void setStressAfterReturn(const RankTwoTensor & stress_trial,
49 Real p_ok,
50 Real q_ok,
51 Real gaE,
52 const std::vector<Real> & intnl,
53 const yieldAndFlow & smoothed_q,
54 const RankFourTensor & Eijkl,
55 RankTwoTensor & stress) const override;
56
57 virtual RankTwoTensor dqdstress(const RankTwoTensor & stress) const override;
58
59 virtual RankFourTensor d2qdstress2(const RankTwoTensor & stress) const override;
60};
const Real p
CappedWeakPlaneCosseratStressUpdate performs the return-map algorithm and associated stress updates f...
virtual void consistentTangentOperator(const RankTwoTensor &stress_trial, Real p_trial, Real q_trial, const RankTwoTensor &stress, Real p, Real q, Real gaE, const yieldAndFlow &smoothed_q, const RankFourTensor &Eijkl, bool compute_full_tangent_operator, RankFourTensor &cto) const override
Calculates the consistent tangent operator.
virtual RankFourTensor d2qdstress2(const RankTwoTensor &stress) const override
d2(q)/d(stress)/d(stress) Derived classes must override this
bool requiresIsotropicTensor() override
Does the model require the elasticity tensor to be isotropic?
virtual void setStressAfterReturn(const RankTwoTensor &stress_trial, Real p_ok, Real q_ok, Real gaE, const std::vector< Real > &intnl, const yieldAndFlow &smoothed_q, const RankFourTensor &Eijkl, RankTwoTensor &stress) const override
Sets stress from the admissible parameters.
virtual RankTwoTensor dqdstress(const RankTwoTensor &stress) const override
d(q)/d(stress) Derived classes must override this
CappedWeakPlaneStressUpdate performs the return-map algorithm and associated stress updates for plast...
const InputParameters & parameters() const