www.mooseframework.org
Functions
PorousFlowFluxLimitedTVDAdvection.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("PorousFlowApp", PorousFlowFluxLimitedTVDAdvection)
 
template<>
InputParameters validParams< PorousFlowFluxLimitedTVDAdvection > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PorousFlowApp"  ,
PorousFlowFluxLimitedTVDAdvection   
)

◆ validParams< PorousFlowFluxLimitedTVDAdvection >()

template<>
InputParameters validParams< PorousFlowFluxLimitedTVDAdvection > ( )

Definition at line 18 of file PorousFlowFluxLimitedTVDAdvection.C.

19 {
20  InputParameters params = validParams<Kernel>();
21  params.addClassDescription("Advective flux of fluid species or heat using "
22  "the Flux Limited TVD scheme invented by Kuzmin and Turek");
23  params.addRequiredParam<UserObjectName>(
24  "PorousFlowDictator", "The UserObject that holds the list of PorousFlow variable names");
25  params.addRequiredParam<UserObjectName>(
26  "advective_flux_calculator",
27  "PorousFlowAdvectiveFluxCalculator UserObject. This determines whether the advection "
28  "describes a movement of a fluid component in a fluid phase, or movement of heat energy in a "
29  "fluid phase");
30  return params;
31 }