https://mooseframework.inl.gov
ComputeThermalExpansionEigenstrainBeam.C
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 
11 
13 
16 {
18  params.addClassDescription("Computes eigenstrain due to thermal expansion "
19  "with a constant coefficient");
20  params.addParam<Real>("thermal_expansion_coeff", "Thermal expansion coefficient");
21 
22  return params;
23 }
24 
26  const InputParameters & parameters)
28  _thermal_expansion_coeff(getParam<Real>("thermal_expansion_coeff"))
29 {
30 }
31 
32 Real
34 {
36 }
void addParam(const std::string &name, const std::initializer_list< typename T::value_type > &value, const std::string &doc_string)
const VariableValue & _stress_free_temperature
Value of stress free temperature at each quadrature point.
ComputeThermalExpansionEigenstrainBeamBase is a base class for all models that compute beam eigenstra...
ComputeThermalExpansionEigenstrainBeam(const InputParameters &parameters)
unsigned int _qp
ComputeThermalExpansionEigenstrainBeam computes an eigenstrain for thermal expansion with a constant ...
const VariableValue & _temperature
Value of temperature at each quadrature point.
registerMooseObject("SolidMechanicsApp", ComputeThermalExpansionEigenstrainBeam)
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const Real & _thermal_expansion_coeff
Constant thermal expansion coefficient.
void addClassDescription(const std::string &doc_string)