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

Go to the source code of this file.

Classes

class  MassConvectiveFlux
 Mass convective flux: \(\rho \vec u \cdot \nabla v\). More...
 

Functions

template<>
InputParameters validParams< MassConvectiveFlux > ()
 

Function Documentation

◆ validParams< MassConvectiveFlux >()

template<>
InputParameters validParams< MassConvectiveFlux > ( )

Definition at line 16 of file MassConvectiveFlux.C.

17 {
18  InputParameters params = validParams<Kernel>();
19  params.addRequiredCoupledVar("vel_x", "x-component of the velocity vector");
20  params.addCoupledVar("vel_y", "y-component of the velocity vector");
21  params.addCoupledVar("vel_z", "z-component of the velocity vector");
22  return params;
23 }