Go to the source code of this file.
|
class | Advection |
| This class is responsible for solving the scalar advection equation, possibly with a forcing function. More...
|
|
◆ 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.");