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

Go to the source code of this file.

Classes

class  FluxLimitedTVDAdvection
 Advection of the variable with velocity set in the AdvectiveFluxCalculator. More...
 

Functions

template<>
InputParameters validParams< FluxLimitedTVDAdvection > ()
 

Function Documentation

◆ validParams< FluxLimitedTVDAdvection >()

template<>
InputParameters validParams< FluxLimitedTVDAdvection > ( )

Definition at line 18 of file FluxLimitedTVDAdvection.C.

19 {
20  InputParameters params = validParams<Kernel>();
21  params.addClassDescription("Conservative form of $\\nabla \\cdot \\vec{v} u$ (advection), using "
22  "the Flux Limited TVD scheme invented by Kuzmin and Turek");
23  params.addRequiredParam<UserObjectName>("advective_flux_calculator",
24  "AdvectiveFluxCalculator UserObject");
25  return params;
26 }