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

Go to the source code of this file.

Classes

class  RichardsExcavFlow
 Records total mass flow into an excavation defined by a RichardsExcavGeom function. More...
 

Functions

template<>
InputParameters validParams< RichardsExcavFlow > ()
 

Function Documentation

◆ validParams< RichardsExcavFlow >()

template<>
InputParameters validParams< RichardsExcavFlow > ( )

Definition at line 18 of file RichardsExcavFlow.C.

19 {
20  InputParameters params = validParams<SideIntegralVariablePostprocessor>();
21  params.addRequiredParam<FunctionName>(
22  "excav_geom_function",
23  "The function describing the excavation geometry (type RichardsExcavGeom)");
24  params.addRequiredParam<UserObjectName>(
25  "richardsVarNames_UO", "The UserObject that holds the list of Richards variable names.");
26  params.addClassDescription("Records total flow INTO an excavation (if quantity is positive then "
27  "flow has occured from rock into excavation void)");
28  return params;
29 }