Loading [MathJax]/extensions/tex2jax.js
www.mooseframework.org
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends
Functions
RichardsMultiphaseProblem.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "RichardsApp"  ,
RichardsMultiphaseProblem   
)

◆ validParams< RichardsMultiphaseProblem >()

template<>
InputParameters validParams< RichardsMultiphaseProblem > ( )

Definition at line 21 of file RichardsMultiphaseProblem.C.

22 {
23  InputParameters params = validParams<FEProblemBase>();
24  params.addRequiredParam<NonlinearVariableName>(
25  "bounded_var", "Variable whose value will be constrained to be greater than lower_var");
26  params.addRequiredParam<NonlinearVariableName>(
27  "lower_var",
28  "Variable that acts as a lower bound to bounded_var. It will not be "
29  "constrained during the solution procedure");
30  return params;
31 }