www.mooseframework.org
Functions
SoretDiffusion.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PhaseFieldApp"  ,
SoretDiffusion   
)

◆ validParams< SoretDiffusion >()

template<>
InputParameters validParams< SoretDiffusion > ( )

Definition at line 19 of file SoretDiffusion.C.

20 {
21  InputParameters params = validParams<Kernel>();
22  params.addClassDescription("Add Soret effect to Split formulation Cahn-Hilliard Kernel");
23  params.addRequiredCoupledVar("T", "Temperature");
24  params.addCoupledVar("c", "Concentration");
25  params.addRequiredParam<MaterialPropertyName>("diff_name",
26  "The diffusivity used with the kernel");
27  params.addParam<MaterialPropertyName>(
28  "Q_name", "Qheat", "The material name for the heat of transport");
29  return params;
30 }