www.mooseframework.org
Functions
RichardsMassChange.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "RichardsApp"  ,
RichardsMassChange   
)

◆ validParams< RichardsMassChange >()

template<>
InputParameters validParams< RichardsMassChange > ( )

Definition at line 23 of file RichardsMassChange.C.

24 {
25  InputParameters params = validParams<TimeDerivative>();
26  params.addParam<bool>("use_supg",
27  false,
28  "True for using SUPG in this kernel, false otherwise. "
29  "This has no effect if the material does not use SUPG.");
30  params.addRequiredParam<UserObjectName>(
31  "richardsVarNames_UO", "The UserObject that holds the list of Richards variable names.");
32  return params;
33 }