www.mooseframework.org
StressDivergenceRSpherical.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 
12 #include "Kernel.h"
13 
14 // Forward Declarations
16 class SymmTensor;
17 
18 class StressDivergenceRSpherical : public Kernel
19 {
20 public:
21  StressDivergenceRSpherical(const InputParameters & parameters);
23 
24 protected:
25  virtual Real computeQpResidual();
26 
27  virtual Real computeQpJacobian();
28 
29  virtual Real computeQpOffDiagJacobian(unsigned int jvar);
30 
31  const MaterialProperty<SymmTensor> & _stress;
32  const MaterialProperty<SymmElasticityTensor> & _Jacobian_mult;
33  const MaterialProperty<SymmTensor> & _d_stress_dT;
34 
35 private:
36  const unsigned int _component;
37  const bool _temp_coupled;
38  const unsigned int _temp_var;
39 };
40 
41 template <>
43 
StressDivergenceRSpherical::computeQpOffDiagJacobian
virtual Real computeQpOffDiagJacobian(unsigned int jvar)
Definition: StressDivergenceRSpherical.C:98
StressDivergenceRSpherical::_d_stress_dT
const MaterialProperty< SymmTensor > & _d_stress_dT
Definition: StressDivergenceRSpherical.h:33
StressDivergenceRSpherical::_temp_var
const unsigned int _temp_var
Definition: StressDivergenceRSpherical.h:38
StressDivergenceRSpherical::_temp_coupled
const bool _temp_coupled
Definition: StressDivergenceRSpherical.h:37
StressDivergenceRSpherical::computeQpResidual
virtual Real computeQpResidual()
Definition: StressDivergenceRSpherical.C:61
SymmElasticityTensor
This class defines a basic set of capabilities any elasticity tensor should have.
Definition: SymmElasticityTensor.h:55
StressDivergenceRSpherical
Definition: StressDivergenceRSpherical.h:18
StressDivergenceRSpherical::_Jacobian_mult
const MaterialProperty< SymmElasticityTensor > & _Jacobian_mult
Definition: StressDivergenceRSpherical.h:32
StressDivergenceRSpherical::computeQpJacobian
virtual Real computeQpJacobian()
Definition: StressDivergenceRSpherical.C:74
SymmTensor
Definition: SymmTensor.h:21
StressDivergenceRSpherical::StressDivergenceRSpherical
StressDivergenceRSpherical(const InputParameters &parameters)
Definition: StressDivergenceRSpherical.C:43
StressDivergenceRSpherical::~StressDivergenceRSpherical
virtual ~StressDivergenceRSpherical()
Definition: StressDivergenceRSpherical.h:22
validParams< StressDivergenceRSpherical >
InputParameters validParams< StressDivergenceRSpherical >()
Definition: StressDivergenceRSpherical.C:19
StressDivergenceRSpherical::_stress
const MaterialProperty< SymmTensor > & _stress
Definition: StressDivergenceRSpherical.h:31
StressDivergenceRSpherical::_component
const unsigned int _component
Definition: StressDivergenceRSpherical.h:36