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

Go to the source code of this file.

Classes

class  PorousFlowPermeabilityTensorFromVar
 Material designed to provide the permeability tensor which is calculated from a tensor multiplied by a scalar: k = k_ijk * k0 where k_ijk is a tensor providing the anisotropy, and k0 is a scalar variable. More...
 

Functions

template<>
InputParameters validParams< PorousFlowPermeabilityTensorFromVar > ()
 

Function Documentation

◆ validParams< PorousFlowPermeabilityTensorFromVar >()

template<>
InputParameters validParams< PorousFlowPermeabilityTensorFromVar > ( )

Definition at line 16 of file PorousFlowPermeabilityTensorFromVar.C.

17 {
18  InputParameters params = validParams<PorousFlowPermeabilityBase>();
19  params.addRequiredCoupledVar("perm", "The scalar permeability");
20  params.addParam<RealTensorValue>("k_anisotropy",
21  "A tensor to multiply the scalar "
22  "permeability, in order to obtain anisotropy if "
23  "required. Defaults to isotropic permeability "
24  "if not specified.");
25  params.addClassDescription(
26  "This Material calculates the permeability tensor from a coupled variable "
27  "multiplied by a tensor");
28  return params;
29 }
validParams< PorousFlowPermeabilityBase >
InputParameters validParams< PorousFlowPermeabilityBase >()
Definition: PorousFlowPermeabilityBase.C:14