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

Go to the source code of this file.

Classes

class  PorousFlowBasicAdvection
 Kernel = grad(test) * darcy_velocity * u. More...
 

Functions

template<>
InputParameters validParams< PorousFlowBasicAdvection > ()
 

Function Documentation

◆ validParams< PorousFlowBasicAdvection >()

template<>
InputParameters validParams< PorousFlowBasicAdvection > ( )

Definition at line 16 of file PorousFlowBasicAdvection.C.

17 {
18  InputParameters params = validParams<Kernel>();
19  params.addRequiredParam<UserObjectName>(
20  "PorousFlowDictator", "The UserObject that holds the list of PorousFlow variable names.");
21  params.addParam<unsigned int>("phase", 0, "Use the Darcy velocity of this fluid phase");
22  params.addClassDescription(
23  "Advective flux of a Variable using the Darcy velocity of the fluid phase");
24  return params;
25 }