www.mooseframework.org
Functions
AEFVSlopeLimitingOneD.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("RdgApp", AEFVSlopeLimitingOneD)
 
template<>
InputParameters validParams< AEFVSlopeLimitingOneD > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "RdgApp"  ,
AEFVSlopeLimitingOneD   
)

◆ validParams< AEFVSlopeLimitingOneD >()

template<>
InputParameters validParams< AEFVSlopeLimitingOneD > ( )

Definition at line 16 of file AEFVSlopeLimitingOneD.C.

17 {
18  InputParameters params = validParams<SlopeLimitingBase>();
19  params.addClassDescription("One-dimensional slope limiting to get the limited slope of cell "
20  "average variable for the advection equation using a cell-centered "
21  "finite volume method.");
22  params.addRequiredCoupledVar("u", "constant monomial variable");
23  MooseEnum scheme("none minmod mc superbee", "none");
24  params.addParam<MooseEnum>("scheme", scheme, "TVD-type slope limiting scheme");
25  return params;
26 }
validParams< SlopeLimitingBase >
InputParameters validParams< SlopeLimitingBase >()
Definition: SlopeLimitingBase.C:20