https://mooseframework.inl.gov
ComputePlasticHeatEnergy.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 #include "Material.h"
14 #include "RankTwoTensor.h"
15 #include "RankFourTensor.h"
16 
22 {
23 public:
25 
27 
28 protected:
29  virtual void computeQpProperties() override;
30 
32  const std::string _base_name;
33 
36 
39 
42 
45 
48 
51 
54 };
const MaterialProperty< RankFourTensor > & _Jacobian_mult
d(stress)/d(total strain)
ComputePlasticHeatEnergy(const InputParameters &parameters)
const MaterialProperty< RankTwoTensor > & _stress
stress
const MaterialProperty< RankFourTensor > & _elasticity_tensor
elasticity tensor
const MaterialProperty< RankTwoTensor > & _plastic_strain
plastic strain
const MaterialProperty< RankTwoTensor > & _plastic_strain_old
old value of plastic strain
const std::string _base_name
optional parameter that allows multiple mechanics materials to be defined
MaterialProperty< Real > & _plastic_heat
computed property: stress * (plastic_strain - plastic_strain_old) / dt
virtual void computeQpProperties() override
ComputePlasticHeatEnergy computes stress * (plastic_strain - plastic_strain_old) and, if currentlyComputingJacobian, then the derivative of this quantity wrt total strain.
static InputParameters validParams()
MaterialProperty< RankTwoTensor > & _dplastic_heat_dstrain
d(plastic_heat)/d(total strain)
const InputParameters & parameters() const