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

Go to the source code of this file.

Classes

class  AEFVFreeOutflowBoundaryFlux
 Free outflow BC based boundary flux user object for the advection equation using a cell-centered finite volume method. More...
 

Functions

template<>
InputParameters validParams< AEFVFreeOutflowBoundaryFlux > ()
 

Function Documentation

◆ validParams< AEFVFreeOutflowBoundaryFlux >()

template<>
InputParameters validParams< AEFVFreeOutflowBoundaryFlux > ( )

Definition at line 16 of file AEFVFreeOutflowBoundaryFlux.C.

17 {
18  InputParameters params = validParams<BoundaryFluxBase>();
19  params.addParam<Real>("velocity", 1.0, "Advective velocity");
20  params.addClassDescription("Free outflow BC based boundary flux user object for the advection "
21  "equation using a cell-centered finite volume method.");
22  return params;
23 }
validParams< BoundaryFluxBase >
InputParameters validParams< BoundaryFluxBase >()
Definition: BoundaryFluxBase.C:14