www.mooseframework.org
Functions
PorousFlowBrine.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PorousFlowApp"  ,
PorousFlowBrine   
)

◆ validParams< PorousFlowBrine >()

template<>
InputParameters validParams< PorousFlowBrine > ( )

Definition at line 16 of file PorousFlowBrine.C.

17 {
18  InputParameters params = validParams<PorousFlowFluidPropertiesBase>();
19  params.addParam<bool>(
20  "compute_density_and_viscosity", true, "Compute the fluid density and viscosity");
21  params.addParam<bool>("compute_internal_energy", true, "Compute the fluid internal energy");
22  params.addParam<bool>("compute_enthalpy", true, "Compute the fluid enthalpy");
23  params.addParam<UserObjectName>("water_fp",
24  "The name of the FluidProperties UserObject for water");
25  params.addCoupledVar("xnacl", 0, "The salt mass fraction in the brine (kg/kg)");
26  params.addClassDescription(
27  "This Material calculates fluid properties for brine at the quadpoints or nodes");
28  return params;
29 }
validParams< PorousFlowFluidPropertiesBase >
InputParameters validParams< PorousFlowFluidPropertiesBase >()
Definition: PorousFlowFluidPropertiesBase.C:14