www.mooseframework.org
Classes | Functions
SwitchingFunctionMultiPhaseMaterial.h File Reference

Go to the source code of this file.

Classes

class  SwitchingFunctionMultiPhaseMaterial
 SwitchingFunctionMultiPhaseMaterial is a switching function for a multi-phase, multi-order parameter system. More...
 

Functions

template<>
InputParameters validParams< SwitchingFunctionMultiPhaseMaterial > ()
 

Function Documentation

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