www.mooseframework.org
Functions
PrimaryConvection.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("ChemicalReactionsApp", PrimaryConvection)
 
template<>
InputParameters validParams< PrimaryConvection > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "ChemicalReactionsApp"  ,
PrimaryConvection   
)

◆ validParams< PrimaryConvection >()

template<>
InputParameters validParams< PrimaryConvection > ( )

Definition at line 16 of file PrimaryConvection.C.

17 {
18  InputParameters params = validParams<Kernel>();
19  params.addRequiredCoupledVar("p", "Pressure");
20  RealVectorValue g(0, 0, 0);
21  params.addParam<RealVectorValue>("gravity", g, "Gravity vector (default is (0, 0, 0))");
22  params.addClassDescription("Convection of primary species");
23  return params;
24 }