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

Go to the source code of this file.

Classes

class  RichardsMassChange
 Kernel = (mass - mass_old)/dt where mass = porosity*density*saturation This is used for the time derivative in Richards simulations Note that it is not lumped, so usually you want to use RichardsLumpedMassChange instead. More...
 

Functions

template<>
InputParameters validParams< RichardsMassChange > ()
 

Function Documentation

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