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

Go to the source code of this file.

Classes

class  PorousFlowAdvectiveFluxCalculatorSaturated
 Computes the advective flux of fluid of given phase, assuming fully-saturated conditions. More...
 

Functions

template<>
InputParameters validParams< PorousFlowAdvectiveFluxCalculatorSaturated > ()
 

Function Documentation

◆ validParams< PorousFlowAdvectiveFluxCalculatorSaturated >()

template<>
InputParameters validParams< PorousFlowAdvectiveFluxCalculatorSaturated > ( )

Definition at line 16 of file PorousFlowAdvectiveFluxCalculatorSaturated.C.

17 {
18  InputParameters params = validParams<PorousFlowAdvectiveFluxCalculatorBase>();
19  params.addClassDescription(
20  "Computes the advective flux of fluid of given phase, assuming fully-saturated conditions. "
21  "Hence this UserObject is only relevant to single-phase situations. Explicitly, the "
22  "UserObject computes (density / viscosity) * (- permeability * (grad(P) - density * "
23  "gravity)), using the Kuzmin-Turek FEM-TVD multidimensional stabilization scheme");
24  params.addParam<bool>(
25  "multiply_by_density",
26  true,
27  "If true, then the advective flux will be multiplied by density, so it is a mass flux, which "
28  "is the most common way of using PorousFlow. If false, then the advective flux will be a "
29  "volume flux, which is common in poro-mechanics");
30  return params;
31 }

Referenced by validParams< PorousFlowAdvectiveFluxCalculatorSaturatedHeat >(), validParams< PorousFlowAdvectiveFluxCalculatorSaturatedMultiComponent >(), and validParams< PorousFlowAdvectiveFluxCalculatorUnsaturated >().

validParams< PorousFlowAdvectiveFluxCalculatorBase >
InputParameters validParams< PorousFlowAdvectiveFluxCalculatorBase >()
Definition: PorousFlowAdvectiveFluxCalculatorBase.C:17