www.mooseframework.org
ComputeThermalExpansionEigenstrainBeamBase.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 
19 {
20 public:
22 
24 
25 protected:
26  virtual void computeQpEigenstrain() override;
27  /*
28  * Compute the total thermal strain relative to the stress-free temperature at
29  * the current temperature
30  *
31  * param thermal_strain The current total linear thermal strain
32  * (\delta L / L)
33  */
34  virtual Real computeThermalStrain() = 0;
35 
38 
41 
44 };
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...
RealGradient _initial_axis
Initial orientation of the beam.
virtual void computeQpEigenstrain() override
Compute the eigenstrain and store in _disp_eigenstrain and _rot_eigenstrain.
const VariableValue & _temperature
Value of temperature at each quadrature point.
OutputTools< Real >::VariableValue VariableValue
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const InputParameters & parameters() const
ComputeEigenstrainBeamBase is the base class for beam eigenstrain vectors.
ComputeThermalExpansionEigenstrainBeamBase(const InputParameters &parameters)