www.mooseframework.org
ADPowerLawCreepStressUpdate.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 
14 template <ComputeStage compute_stage>
16 
18 
29 template <ComputeStage compute_stage>
31 {
32 public:
33  static InputParameters validParams();
34 
35  ADPowerLawCreepStressUpdate<compute_stage>(const InputParameters & parameters);
36 
37 protected:
38  virtual void computeStressInitialize(const ADReal & effective_trial_stress,
39  const ADRankFourTensor & elasticity_tensor) override;
40  virtual ADReal computeResidual(const ADReal & effective_trial_stress,
41  const ADReal & scalar) override;
42  virtual ADReal computeDerivative(const ADReal & effective_trial_stress,
43  const ADReal & scalar) override;
44 
46  const ADVariableValue * _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 
67  ADReal _exponential;
68 
70  Real _exp_time;
71 
73 };
ADPowerLawCreepStressUpdate::_m_exponent
const Real _m_exponent
Exponent on time.
Definition: ADPowerLawCreepStressUpdate.h:55
ADPowerLawCreepStressUpdate::usingRadialReturnCreepStressUpdateBaseMembers
usingRadialReturnCreepStressUpdateBaseMembers
Definition: ADPowerLawCreepStressUpdate.h:72
declareADValidParams
declareADValidParams(ADPowerLawCreepStressUpdate)
ADPowerLawCreepStressUpdate::computeStressInitialize
virtual void computeStressInitialize(const ADReal &effective_trial_stress, const ADRankFourTensor &elasticity_tensor) override
Perform any necessary initialization before return mapping iterations.
Definition: ADPowerLawCreepStressUpdate.C:58
ADPowerLawCreepStressUpdate::_gas_constant
const Real _gas_constant
Gas constant for exp term.
Definition: ADPowerLawCreepStressUpdate.h:61
ADPowerLawCreepStressUpdate::computeDerivative
virtual ADReal computeDerivative(const ADReal &effective_trial_stress, const ADReal &scalar) override
Compute the derivative of the residual as a function of the scalar variable.
Definition: ADPowerLawCreepStressUpdate.C:80
ADPowerLawCreepStressUpdate::validParams
static InputParameters validParams()
Definition: ADPowerLawCreepStressUpdate.C:18
ADPowerLawCreepStressUpdate::_start_time
const Real _start_time
Simulation start time.
Definition: ADPowerLawCreepStressUpdate.h:64
ADPowerLawCreepStressUpdate::_temperature
const ADVariableValue * _temperature
Temperature variable value.
Definition: ADPowerLawCreepStressUpdate.h:46
ADPowerLawCreepStressUpdate::computeResidual
virtual ADReal computeResidual(const ADReal &effective_trial_stress, const ADReal &scalar) override
Compute the residual for a predicted value of the scalar.
Definition: ADPowerLawCreepStressUpdate.C:69
ADPowerLawCreepStressUpdate::_n_exponent
const Real _n_exponent
Exponent on the effective stress.
Definition: ADPowerLawCreepStressUpdate.h:52
ADPowerLawCreepStressUpdate
This class uses the stress update material in a radial return isotropic creep model.
Definition: ADPowerLawCreepStressUpdate.h:15
ADRadialReturnCreepStressUpdateBase
This class provides baseline functionallity for creep models based on the stress update material in a...
Definition: ADRadialReturnCreepStressUpdateBase.h:21
ADRadialReturnCreepStressUpdateBase.h
ADPowerLawCreepStressUpdate::_exponential
ADReal _exponential
Exponential calculated from activiaction, gas constant, and temperature.
Definition: ADPowerLawCreepStressUpdate.h:67
ADPowerLawCreepStressUpdate::_exp_time
Real _exp_time
Exponential calculated from current time.
Definition: ADPowerLawCreepStressUpdate.h:70
ADPowerLawCreepStressUpdate::_activation_energy
const Real _activation_energy
Activation energy for exp term.
Definition: ADPowerLawCreepStressUpdate.h:58
ADPowerLawCreepStressUpdate::_coefficient
const Real _coefficient
Leading coefficient.
Definition: ADPowerLawCreepStressUpdate.h:49