Go to the documentation of this file.
12 #include "Conversion.h"
13 #include "libmesh/utility.h"
21 params.addClassDescription(
"Return-map and Jacobian algorithms for (P, Q) plastic models");
26 const InputParameters & parameters,
unsigned num_yf,
unsigned num_intnl)
43 const std::vector<Real> & intnl,
44 std::vector<Real> & yf)
const
46 const Real p = stress_params[0];
47 const Real q = stress_params[1];
67 const std::vector<Real> & intnl_old,
68 const std::vector<Real> & yf,
71 const Real p_trial = trial_stress_params[0];
72 const Real q_trial = trial_stress_params[1];
73 preReturnMap(p_trial, q_trial, stress_trial, intnl_old, yf, Eijkl);
80 const std::vector<Real> & ,
81 const std::vector<Real> & ,
90 const std::vector<Real> & intnl_old,
94 std::vector<Real> & intnl)
const
99 std::copy(intnl_old.begin(), intnl_old.end(), intnl.begin());
104 const std::vector<Real> & intnl,
105 std::vector<yieldAndFlow> & all_q)
const
107 const Real p = stress_params[0];
108 const Real q = stress_params[1];
114 const std::vector<Real> & intnl_old,
115 std::vector<Real> & stress_params,
117 std::vector<Real> & intnl)
const
119 const Real p_trial = trial_stress_params[0];
120 const Real q_trial = trial_stress_params[1];
124 stress_params[0] = p;
125 stress_params[1] = q;
130 const std::vector<Real> & current_stress_params,
131 const std::vector<Real> & intnl_old,
132 std::vector<Real> & intnl)
const
134 const Real p_trial = trial_stress_params[0];
135 const Real q_trial = trial_stress_params[1];
136 const Real p = current_stress_params[0];
137 const Real q = current_stress_params[1];
143 const std::vector<Real> & trial_stress_params,
144 const std::vector<Real> & current_stress_params,
145 const std::vector<Real> & intnl_old,
146 std::vector<std::vector<Real>> & dintnl)
const
148 const Real p_trial = trial_stress_params[0];
149 const Real q_trial = trial_stress_params[1];
150 const Real p = current_stress_params[0];
151 const Real q = current_stress_params[1];
157 std::vector<Real> & stress_params)
const
162 stress_params[0] = p;
163 stress_params[1] = q;
169 const std::vector<Real> & trial_stress_params,
171 const std::vector<Real> & stress_params,
175 bool compute_full_tangent_operator,
176 const std::vector<std::vector<Real>> & dvar_dtrial,
179 const Real p_trial = trial_stress_params[0];
180 const Real q_trial = trial_stress_params[1];
181 const Real p = stress_params[0];
182 const Real q = stress_params[1];
198 compute_full_tangent_operator,
213 bool compute_full_tangent_operator,
216 cto = elasticity_tensor;
217 if (!compute_full_tangent_operator)
236 cto(i, j, k, l) -= s1(i, j) * t1(k, l) + s2(i, j) * t2(k, l);
242 (smoothed_q.
dg[0] * d2pdsig2 + smoothed_q.
dg[1] * d2qdsig2);
247 inv = inv.transposeMajor().invSymm();
249 catch (
const MooseException & e)
253 mooseWarning(
"TwoParameterPlasticityStressUpdate: Cannot invert 1+T in consistent tangent "
254 "operator computation at quadpoint ",
257 _current_elem->id());
261 cto = (cto.transposeMajor() * inv).transposeMajor();
266 const std::vector<Real> & stress_params,
268 const std::vector<Real> & intnl,
273 const Real p_ok = stress_params[0];
274 const Real q_ok = stress_params[1];
287 inelastic_strain_increment = (gaE /
_Epp) * (smoothed_q.
dg[0] *
dpdstress(returned_stress) +
291 std::vector<RankTwoTensor>
300 std::vector<RankFourTensor>
defineLegacyParams(TwoParameterPlasticityStressUpdate)
virtual RankFourTensor d2qdstress2(const RankTwoTensor &stress) const =0
d2(q)/d(stress)/d(stress) Derived classes must override this
virtual void computeStressParams(const RankTwoTensor &stress, std::vector< Real > &stress_params) const override
Computes stress_params, given stress.
Struct designed to hold info about a single yield function and its derivatives, as well as the flow d...
void setIntnlValuesV(const std::vector< Real > &trial_stress_params, const std::vector< Real > ¤t_stress_params, const std::vector< Real > &intnl_old, std::vector< Real > &intnl) const override
Sets the internal parameters based on the trial values of stress_params, their current values,...
std::vector< std::vector< Real > > _Cij
_Cij[i, j] * _Eij[j, k] = 1 iff j == k
virtual RankFourTensor d2pdstress2(const RankTwoTensor &stress) const =0
d2(p)/d(stress)/d(stress) Derived classes must override this
virtual void yieldFunctionValues(Real p, Real q, const std::vector< Real > &intnl, std::vector< Real > &yf) const =0
Computes the values of the yield functions, given p, q and intnl parameters.
virtual std::vector< RankFourTensor > d2stress_param_dstress(const RankTwoTensor &stress) const override
d2(stress_param[i])/d(stress)/d(stress) at given stress
virtual void setEppEqq(const RankFourTensor &Eijkl, Real &Epp, Real &Eqq) const =0
Set Epp and Eqq based on the elasticity tensor Derived classes must override this.
virtual void setIntnlValues(Real p_trial, Real q_trial, Real p, Real q, const std::vector< Real > &intnl_old, std::vector< Real > &intnl) const =0
Sets the internal parameters based on the trial values of p and q, their current values,...
static InputParameters validParams()
virtual void setEffectiveElasticity(const RankFourTensor &Eijkl) override
Sets _Eij and _En and _Cij.
Real _dp_dqt
derivative of Variable with respect to trial variable (used in consistent-tangent-operator calculatio...
Real _Epp
elasticity tensor in p direction
virtual std::vector< RankTwoTensor > dstress_param_dstress(const RankTwoTensor &stress) const override
d(stress_param[i])/d(stress) at given stress
Real _dgaE_dqt
derivative of Variable with respect to trial variable (used in consistent-tangent-operator calculatio...
virtual void setIntnlDerivativesV(const std::vector< Real > &trial_stress_params, const std::vector< Real > ¤t_stress_params, const std::vector< Real > &intnl, std::vector< std::vector< Real >> &dintnl) const override
Sets the derivatives of internal parameters, based on the trial values of stress_params,...
static InputParameters validParams()
Real _dq_dqt
derivative of Variable with respect to trial variable (used in consistent-tangent-operator calculatio...
void yieldFunctionValuesV(const std::vector< Real > &stress_params, const std::vector< Real > &intnl, std::vector< Real > &yf) const override
Computes the values of the yield functions, given stress_params and intnl parameters.
std::vector< std::vector< Real > > _Eij
E[i, j] in the system of equations to be solved.
TwoParameterPlasticityStressUpdate performs the return-map algorithm and associated stress updates fo...
TwoParameterPlasticityStressUpdate(const InputParameters ¶meters, unsigned num_yf, unsigned num_intnl)
void setStressAfterReturnV(const RankTwoTensor &stress_trial, const std::vector< Real > &stress_params, 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 void computePQ(const RankTwoTensor &stress, Real &p, Real &q) const =0
Computes p and q, given stress.
void initializeVarsV(const std::vector< Real > &trial_stress_params, const std::vector< Real > &intnl_old, std::vector< Real > &stress_params, Real &gaE, std::vector< Real > &intnl) const override
Sets (stress_params, intnl) at "good guesses" of the solution to the Return-Map algorithm.
void computeAllQV(const std::vector< Real > &stress_params, const std::vector< Real > &intnl, std::vector< yieldAndFlow > &all_q) const override
Completely fills all_q with correct values.
void preReturnMapV(const std::vector< Real > &trial_stress_params, const RankTwoTensor &stress_trial, const std::vector< Real > &intnl_old, const std::vector< Real > &yf, const RankFourTensor &Eijkl) override
Derived classes may employ this function to record stuff or do other computations prior to the return...
Real _dp_dpt
derivative of Variable with respect to trial variable (used in consistent-tangent-operator calculatio...
virtual void preReturnMap(Real p_trial, Real q_trial, const RankTwoTensor &stress_trial, const std::vector< Real > &intnl_old, const std::vector< Real > &yf, const RankFourTensor &Eijkl)
Derived classes may employ this function to record stuff or do other computations prior to the return...
virtual RankTwoTensor dpdstress(const RankTwoTensor &stress) const =0
d(p)/d(stress) Derived classes must override this
Real _dgaE_dpt
derivative of Variable with respect to trial variable (used in consistent-tangent-operator calculatio...
RankTwoTensorTempl< Real > RankTwoTensor
virtual void initializeVars(Real p_trial, Real q_trial, const std::vector< Real > &intnl_old, Real &p, Real &q, Real &gaE, std::vector< Real > &intnl) const
Sets (p, q, gaE, intnl) at "good guesses" of the solution to the Return-Map algorithm.
Real _En
normalising factor
constexpr static int _num_pq
Number of variables = 2 = (p, q)
virtual void setIntnlDerivatives(Real p_trial, Real q_trial, Real p, Real q, const std::vector< Real > &intnl, std::vector< std::vector< Real >> &dintnl) const =0
Sets the derivatives of internal parameters, based on the trial values of p and q,...
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 =0
Sets stress from the admissible parameters.
Real _dq_dpt
derivative of Variable with respect to trial variable (used in consistent-tangent-operator calculatio...
void setInelasticStrainIncrementAfterReturn(const RankTwoTensor &stress_trial, Real gaE, const yieldAndFlow &smoothed_q, const RankFourTensor &elasticity_tensor, const RankTwoTensor &returned_stress, RankTwoTensor &inelastic_strain_increment) const override
Sets inelastic strain increment from the returned configuration This is called after the return-map p...
void consistentTangentOperatorV(const RankTwoTensor &stress_trial, const std::vector< Real > &trial_stress_params, const RankTwoTensor &stress, const std::vector< Real > &stress_params, Real gaE, const yieldAndFlow &smoothed_q, const RankFourTensor &Eijkl, bool compute_full_tangent_operator, const std::vector< std::vector< Real >> &dvar_dtrial, RankFourTensor &cto) override
Calculates the consistent tangent operator.
Real _Eqq
elasticity tensor in q direction
MultiParameterPlasticityStressUpdate performs the return-map algorithm and associated stress updates ...
RankFourTensorTempl< Real > RankFourTensor
virtual void computeAllQ(Real p, Real q, const std::vector< Real > &intnl, std::vector< yieldAndFlow > &all_q) const =0
Completely fills all_q with correct values.
constexpr static unsigned _tensor_dimensionality
Internal dimensionality of tensors (currently this is 3 throughout tensor_mechanics)
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
Calculates the consistent tangent operator.
virtual RankTwoTensor dqdstress(const RankTwoTensor &stress) const =0
d(q)/d(stress) Derived classes must override this