www.mooseframework.org
IsotropicPowerLawHardeningStressUpdate.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 #include "MooseMesh.h"
14 
16 
17 template <>
19 
37 {
38 public:
39  static InputParameters validParams();
40 
41  IsotropicPowerLawHardeningStressUpdate(const InputParameters & parameters);
42 
43 protected:
44  virtual void computeStressInitialize(const Real effective_trial_stress,
45  const RankFourTensor & elasticity_tensor) override;
46  virtual void computeYieldStress(const RankFourTensor & elasticity_tensor) override;
47  virtual Real computeHardeningDerivative(Real scalar) override;
48 
50  Real _K;
53 
56 
59 
60  Real getIsotropicLameLambda(const RankFourTensor & elasticity_tensor);
61 };
IsotropicPowerLawHardeningStressUpdate::computeStressInitialize
virtual void computeStressInitialize(const Real effective_trial_stress, const RankFourTensor &elasticity_tensor) override
Perform any necessary initialization before return mapping iterations.
Definition: IsotropicPowerLawHardeningStressUpdate.C:53
IsotropicPowerLawHardeningStressUpdate::computeYieldStress
virtual void computeYieldStress(const RankFourTensor &elasticity_tensor) override
Definition: IsotropicPowerLawHardeningStressUpdate.C:77
IsotropicPowerLawHardeningStressUpdate::IsotropicPowerLawHardeningStressUpdate
IsotropicPowerLawHardeningStressUpdate(const InputParameters &parameters)
Definition: IsotropicPowerLawHardeningStressUpdate.C:44
IsotropicPowerLawHardeningStressUpdate::getIsotropicLameLambda
Real getIsotropicLameLambda(const RankFourTensor &elasticity_tensor)
Definition: IsotropicPowerLawHardeningStressUpdate.C:94
IsotropicPowerLawHardeningStressUpdate::computeHardeningDerivative
virtual Real computeHardeningDerivative(Real scalar) override
Definition: IsotropicPowerLawHardeningStressUpdate.C:66
IsotropicPowerLawHardeningStressUpdate
This class uses the Discrete material in a radial return isotropic plasticity model.
Definition: IsotropicPowerLawHardeningStressUpdate.h:36
IsotropicPlasticityStressUpdate.h
IsotropicPowerLawHardeningStressUpdate::_K
Real _K
Power law hardening coefficients.
Definition: IsotropicPowerLawHardeningStressUpdate.h:50
IsotropicPowerLawHardeningStressUpdate::_effective_trial_stress
Real _effective_trial_stress
Definition: IsotropicPowerLawHardeningStressUpdate.h:58
RankFourTensorTempl< Real >
IsotropicPowerLawHardeningStressUpdate::_strain_hardening_exponent
Real _strain_hardening_exponent
Definition: IsotropicPowerLawHardeningStressUpdate.h:51
validParams< IsotropicPowerLawHardeningStressUpdate >
InputParameters validParams< IsotropicPowerLawHardeningStressUpdate >()
IsotropicPowerLawHardeningStressUpdate::validParams
static InputParameters validParams()
Definition: IsotropicPowerLawHardeningStressUpdate.C:18
IsotropicPowerLawHardeningStressUpdate::_youngs_modulus
Real _youngs_modulus
Elastic constants.
Definition: IsotropicPowerLawHardeningStressUpdate.h:55
IsotropicPlasticityStressUpdate
This class uses the Discrete material in a radial return isotropic plasticity model.
Definition: IsotropicPlasticityStressUpdate.h:37