www.mooseframework.org
Functions
RichardsFullyUpwindFlux.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("RichardsApp", RichardsFullyUpwindFlux)
 
template<>
InputParameters validParams< RichardsFullyUpwindFlux > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "RichardsApp"  ,
RichardsFullyUpwindFlux   
)

◆ validParams< RichardsFullyUpwindFlux >()

template<>
InputParameters validParams< RichardsFullyUpwindFlux > ( )

Definition at line 23 of file RichardsFullyUpwindFlux.C.

24 {
25  InputParameters params = validParams<Kernel>();
26  params.addRequiredParam<std::vector<UserObjectName>>(
27  "relperm_UO", "List of names of user objects that define relative permeability");
28  params.addRequiredParam<std::vector<UserObjectName>>(
29  "seff_UO",
30  "List of name of user objects that define effective saturation as a function of "
31  "pressure list");
32  params.addRequiredParam<std::vector<UserObjectName>>(
33  "density_UO", "List of names of user objects that define the fluid density");
34  params.addRequiredParam<UserObjectName>(
35  "richardsVarNames_UO", "The UserObject that holds the list of Richards variable names.");
36  return params;
37 }