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

Go to the source code of this file.

Classes

class  PorousFlowFluxLimitedTVDAdvection
 Advection of a quantity with velocity set in the PorousFlowAdvectiveFluxCalculator Depending on the PorousFlowAdvectiveFluxCalculator, the quantity may be either a fluid component in a fluid phase, or heat energy in a fluid phase. More...
 

Functions

template<>
InputParameters validParams< PorousFlowFluxLimitedTVDAdvection > ()
 

Function Documentation

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