Go to the source code of this file.
◆ registerMooseObject()
registerMooseObject |
( |
"NavierStokesTestApp" |
, |
|
|
Advection |
|
|
) |
| |
◆ validParams< Advection >()
Definition at line 17 of file Advection.C.
21 params.addClassDescription(
"This class solves the scalar advection equation, "
22 "$\\vec{a}\\cdot\\nabla u = f$ with SUPG stabilization.");
23 params.addParam<FunctionName>(
"forcing_func", 0,
"The forcing function, typically used for MMS.");
24 MooseEnum tau_type(
"opt mod");
25 params.addRequiredParam<MooseEnum>(
26 "tau_type", tau_type,
"The type of stabilization parameter to use.");