www.mooseframework.org
Classes | Typedefs | Functions
ElasticEnergyMaterial.h File Reference

Go to the source code of this file.

Classes

class  RankTwoTensorTempl< typename >
 
class  RankFourTensorTempl< typename >
 
class  ElasticEnergyMaterial
 Material class to compute the elastic free energy and its derivatives. More...
 

Typedefs

typedef RankTwoTensorTempl< Real > RankTwoTensor
 
typedef RankFourTensorTempl< Real > RankFourTensor
 

Functions

template<>
InputParameters validParams< ElasticEnergyMaterial > ()
 

Typedef Documentation

◆ RankFourTensor

Definition at line 20 of file ElasticEnergyMaterial.h.

◆ RankTwoTensor

Definition at line 17 of file ElasticEnergyMaterial.h.

Function Documentation

◆ validParams< ElasticEnergyMaterial >()

template<>
InputParameters validParams< ElasticEnergyMaterial > ( )

Definition at line 18 of file ElasticEnergyMaterial.C.

19 {
20  InputParameters params = validParams<DerivativeFunctionMaterialBase>();
21  params.addClassDescription("Free energy material for the elastic energy contributions.");
22  params.addParam<std::string>("base_name", "Material property base name");
23  params.addRequiredCoupledVar("args", "Arguments of F() - use vector coupling");
24  params.addCoupledVar("displacement_gradients",
25  "Vector of displacement gradient variables (see "
26  "Modules/PhaseField/DisplacementGradients "
27  "action)");
28  return params;
29 }