www.mooseframework.org
PowerLawCreepStressUpdate.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 
15 
16 template <>
18 
30 {
31 public:
32  static InputParameters validParams();
33 
34  PowerLawCreepStressUpdate(const InputParameters & parameters);
35 
36 protected:
37  virtual void computeStressInitialize(const Real effective_trial_stress,
38  const RankFourTensor & elasticity_tensor) override;
39  virtual Real computeResidual(const Real effective_trial_stress, const Real scalar) override;
40  virtual Real computeDerivative(const Real effective_trial_stress, const Real scalar) override;
41 
43  const bool _has_temp;
44 
46  const VariableValue & _temperature;
47 
49  const Real _coefficient;
50 
52  const Real _n_exponent;
53 
55  const Real _m_exponent;
56 
58  const Real _activation_energy;
59 
61  const Real _gas_constant;
62 
64  const Real _start_time;
65 
68 
70  Real _exp_time;
71 };
PowerLawCreepStressUpdate::_activation_energy
const Real _activation_energy
Activation energy for exp term.
Definition: PowerLawCreepStressUpdate.h:58
PowerLawCreepStressUpdate::_has_temp
const bool _has_temp
Flag to determine if temperature is supplied by the user.
Definition: PowerLawCreepStressUpdate.h:43
PowerLawCreepStressUpdate
This class uses the stress update material in a radial return isotropic creep model.
Definition: PowerLawCreepStressUpdate.h:29
PowerLawCreepStressUpdate::PowerLawCreepStressUpdate
PowerLawCreepStressUpdate(const InputParameters &parameters)
Definition: PowerLawCreepStressUpdate.C:37
PowerLawCreepStressUpdate::_gas_constant
const Real _gas_constant
Gas constant for exp term.
Definition: PowerLawCreepStressUpdate.h:61
PowerLawCreepStressUpdate::_m_exponent
const Real _m_exponent
Exponent on time.
Definition: PowerLawCreepStressUpdate.h:55
validParams< PowerLawCreepStressUpdate >
InputParameters validParams< PowerLawCreepStressUpdate >()
PowerLawCreepStressUpdate::_temperature
const VariableValue & _temperature
Temperature variable value.
Definition: PowerLawCreepStressUpdate.h:46
PowerLawCreepStressUpdate::_n_exponent
const Real _n_exponent
Exponent on the effective stress.
Definition: PowerLawCreepStressUpdate.h:52
PowerLawCreepStressUpdate::computeResidual
virtual Real computeResidual(const Real effective_trial_stress, const Real scalar) override
Compute the residual for a predicted value of the scalar.
Definition: PowerLawCreepStressUpdate.C:67
PowerLawCreepStressUpdate::_exponential
Real _exponential
Exponential calculated from activiaction, gas constant, and temperature.
Definition: PowerLawCreepStressUpdate.h:67
PowerLawCreepStressUpdate::_exp_time
Real _exp_time
Exponential calculated from current time.
Definition: PowerLawCreepStressUpdate.h:70
PowerLawCreepStressUpdate::_coefficient
const Real _coefficient
Leading coefficient.
Definition: PowerLawCreepStressUpdate.h:49
PowerLawCreepStressUpdate::_start_time
const Real _start_time
Simulation start time.
Definition: PowerLawCreepStressUpdate.h:64
RankFourTensorTempl< Real >
PowerLawCreepStressUpdate::computeDerivative
virtual Real computeDerivative(const Real effective_trial_stress, const Real scalar) override
Compute the derivative of the residual as a function of the scalar variable.
Definition: PowerLawCreepStressUpdate.C:76
RadialReturnCreepStressUpdateBase.h
PowerLawCreepStressUpdate::validParams
static InputParameters validParams()
Definition: PowerLawCreepStressUpdate.C:17
PowerLawCreepStressUpdate::computeStressInitialize
virtual void computeStressInitialize(const Real effective_trial_stress, const RankFourTensor &elasticity_tensor) override
Perform any necessary initialization before return mapping iterations.
Definition: PowerLawCreepStressUpdate.C:55
RadialReturnCreepStressUpdateBase
This class provides baseline functionallity for creep models based on the stress update material in a...
Definition: RadialReturnCreepStressUpdateBase.h:23