www.mooseframework.org
ComputeEigenstrain.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 "ComputeEigenstrainBase.h"
13 
14 #include "RankTwoTensor.h"
15 
16 class ComputeEigenstrain;
17 
18 template <>
19 InputParameters validParams<ComputeEigenstrain>();
20 
26 {
27 public:
28  static InputParameters validParams();
29 
30  ComputeEigenstrain(const InputParameters & parameters);
31 
32 protected:
33  virtual void computeQpEigenstrain();
34 
35  const MaterialProperty<Real> & _prefactor;
36 
38 };
ComputeEigenstrain::computeQpEigenstrain
virtual void computeQpEigenstrain()
Compute the eigenstrain and store in _eigenstrain.
Definition: ComputeEigenstrain.C:35
ComputeEigenstrain::_prefactor
const MaterialProperty< Real > & _prefactor
Definition: ComputeEigenstrain.h:35
validParams< ComputeEigenstrain >
InputParameters validParams< ComputeEigenstrain >()
ComputeEigenstrain::ComputeEigenstrain
ComputeEigenstrain(const InputParameters &parameters)
Definition: ComputeEigenstrain.C:28
ComputeEigenstrain
ComputeEigenstrain computes an Eigenstrain that is a function of a single variable defined by a base ...
Definition: ComputeEigenstrain.h:25
ComputeEigenstrain::_eigen_base_tensor
RankTwoTensor _eigen_base_tensor
Definition: ComputeEigenstrain.h:37
ComputeEigenstrainBase.h
ComputeEigenstrain::validParams
static InputParameters validParams()
Definition: ComputeEigenstrain.C:17
ComputeEigenstrainBase
ComputeEigenstrainBase is the base class for eigenstrain tensors.
Definition: ComputeEigenstrainBase.h:26
RankTwoTensorTempl< Real >