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

Go to the source code of this file.

Classes

class  SlopeLimitingBase
 Base class for slope limiting to limit the slopes of cell average variables. More...
 

Functions

template<>
InputParameters validParams< SlopeLimitingBase > ()
 

Function Documentation

◆ validParams< SlopeLimitingBase >()

template<>
InputParameters validParams< SlopeLimitingBase > ( )

Definition at line 20 of file SlopeLimitingBase.C.

21 {
22  InputParameters params = validParams<ElementLoopUserObject>();
23  params += validParams<TransientInterface>();
24 
25  params.addClassDescription(
26  "Base class for slope limiting to limit the slopes of cell average variables.");
27 
28  params.addParam<bool>("include_bc", true, "Indicate whether to include bc, default = true");
29 
30  return params;
31 }

Referenced by validParams< AEFVSlopeLimitingOneD >(), and validParams< SlopeLimitingMultiDBase >().

validParams< ElementLoopUserObject >
InputParameters validParams< ElementLoopUserObject >()
Definition: ElementLoopUserObject.C:14