www.mooseframework.org
Functions
SwitchingFunctionMultiPhaseMaterial.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PhaseFieldApp"  ,
SwitchingFunctionMultiPhaseMaterial   
)

◆ validParams< SwitchingFunctionMultiPhaseMaterial >()

template<>
InputParameters validParams< SwitchingFunctionMultiPhaseMaterial > ( )

Definition at line 16 of file SwitchingFunctionMultiPhaseMaterial.C.

17 {
18  InputParameters params = validParams<Material>();
19  params.addRequiredParam<MaterialPropertyName>(
20  "h_name", "Name of the switching function material property for the given phase");
21  params.addRequiredCoupledVar("phase_etas", "Vector of order parameters for the given phase");
22  params.addRequiredCoupledVar("all_etas", "Vector of all order parameters for all phases");
23  params.addClassDescription("Calculates the switching function for a given phase for a "
24  "multi-phase, multi-order parameter model");
25  return params;
26 }