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

Go to the source code of this file.

Classes

class  RankTwoTensorTempl< typename >
 
class  AllenCahnElasticEnergyOffDiag
 This kernel computes the off-diagonal jacobian of elastic energy in AllenCahn respect to displacements. More...
 

Typedefs

typedef RankTwoTensorTempl< Real > RankTwoTensor
 

Functions

template<>
InputParameters validParams< AllenCahnElasticEnergyOffDiag > ()
 

Typedef Documentation

◆ RankTwoTensor

Definition at line 19 of file AllenCahnElasticEnergyOffDiag.h.

Function Documentation

◆ validParams< AllenCahnElasticEnergyOffDiag >()

template<>
InputParameters validParams< AllenCahnElasticEnergyOffDiag > ( )

Definition at line 18 of file AllenCahnElasticEnergyOffDiag.C.

19 {
20  InputParameters params = validParams<Kernel>();
21  params.addClassDescription("This kernel calculates off-diagonal Jacobian of elastic energy in "
22  "AllenCahn with respect to displacements");
23  params.addCoupledVar("displacements",
24  "The vector of displacements suitable for the problem statement");
25  params.addParam<MaterialPropertyName>(
26  "F_name", "E_el", "Name of material property storing the elastic energy");
27  params.addParam<MaterialPropertyName>("mob_name", "L", "The mobility used with the kernel");
28  return params;
29 }