www.mooseframework.org
Functions
AdvectiveFluxCalculatorConstantVelocity.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("PorousFlowApp", AdvectiveFluxCalculatorConstantVelocity)
 
template<>
InputParameters validParams< AdvectiveFluxCalculatorConstantVelocity > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PorousFlowApp"  ,
AdvectiveFluxCalculatorConstantVelocity   
)

◆ validParams< AdvectiveFluxCalculatorConstantVelocity >()

template<>
InputParameters validParams< AdvectiveFluxCalculatorConstantVelocity > ( )

Definition at line 17 of file AdvectiveFluxCalculatorConstantVelocity.C.

18 {
19  InputParameters params = validParams<AdvectiveFluxCalculatorBase>();
20  params.addClassDescription(
21  "Compute K_ij (a measure of advective flux from node i to node j) "
22  "and R+ and R- (which quantify amount of antidiffusion to add) in the "
23  "Kuzmin-Turek FEM-TVD multidimensional scheme. Constant advective velocity is assumed");
24  params.addRequiredCoupledVar("u", "The variable that is being advected");
25  params.addRequiredParam<RealVectorValue>("velocity", "Velocity vector");
26  return params;
27 }
validParams< AdvectiveFluxCalculatorBase >
InputParameters validParams< AdvectiveFluxCalculatorBase >()
Definition: AdvectiveFluxCalculatorBase.C:19