www.mooseframework.org
Functions
PorousFlowThermalConductivityFromPorosity.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PorousFlowApp"  ,
PorousFlowThermalConductivityFromPorosity   
)

◆ validParams< PorousFlowThermalConductivityFromPorosity >()

template<>
InputParameters validParams< PorousFlowThermalConductivityFromPorosity > ( )

Definition at line 16 of file PorousFlowThermalConductivityFromPorosity.C.

17 {
18  InputParameters params = validParams<PorousFlowThermalConductivityBase>();
19  params.addRequiredParam<RealTensorValue>("lambda_s",
20  "The thermal conductivity of the solid matrix material");
21  params.addRequiredParam<RealTensorValue>("lambda_f",
22  "The thermal conductivity of the single fluid phase");
23  params.addClassDescription("This Material calculates rock-fluid combined thermal conductivity "
24  "for the single phase, fully saturated case by using a linear "
25  "weighted average. "
26  "Thermal conductivity = phi * lambda_f + (1 - phi) * lambda_s, "
27  "where phi is porosity, and lambda_f, lambda_s are "
28  "thermal conductivities of the fluid and solid (assumed constant)");
29  return params;
30 }
validParams< PorousFlowThermalConductivityBase >
InputParameters validParams< PorousFlowThermalConductivityBase >()
Definition: PorousFlowThermalConductivityBase.C:14