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

Go to the source code of this file.

Classes

class  AEFVSlopeLimitingOneD
 One-dimensional slope limiting to get the limited slope of cell average variable for the advection equation using a cell-centered finite volume method. More...
 

Functions

template<>
InputParameters validParams< AEFVSlopeLimitingOneD > ()
 

Function Documentation

◆ 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