www.mooseframework.org
Functions
AllenCahnElasticEnergyOffDiag.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("PhaseFieldApp", AllenCahnElasticEnergyOffDiag)
 
template<>
InputParameters validParams< AllenCahnElasticEnergyOffDiag > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PhaseFieldApp"  ,
AllenCahnElasticEnergyOffDiag   
)

◆ 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 }