www.mooseframework.org
PorousFlowPermeabilityTensorFromVar.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #pragma once
11 
13 
15 
16 template <>
18 
27 {
28 public:
29  PorousFlowPermeabilityTensorFromVar(const InputParameters & parameters);
30 
31 protected:
32  void computeQpProperties() override;
33 
35  const VariableValue & _perm;
36 
38  const RealTensorValue _k_anisotropy;
39 };
40 
PorousFlowPermeabilityBase
Base class Material designed to provide the permeability tensor.
Definition: PorousFlowPermeabilityBase.h:22
validParams< PorousFlowPermeabilityTensorFromVar >
InputParameters validParams< PorousFlowPermeabilityTensorFromVar >()
Definition: PorousFlowPermeabilityTensorFromVar.C:16
PorousFlowPermeabilityTensorFromVar::PorousFlowPermeabilityTensorFromVar
PorousFlowPermeabilityTensorFromVar(const InputParameters &parameters)
Definition: PorousFlowPermeabilityTensorFromVar.C:31
PorousFlowPermeabilityTensorFromVar::computeQpProperties
void computeQpProperties() override
Definition: PorousFlowPermeabilityTensorFromVar.C:42
PorousFlowPermeabilityTensorFromVar::_k_anisotropy
const RealTensorValue _k_anisotropy
Tensor multiplier k_ijk.
Definition: PorousFlowPermeabilityTensorFromVar.h:38
PorousFlowPermeabilityTensorFromVar
Material designed to provide the permeability tensor which is calculated from a tensor multiplied by ...
Definition: PorousFlowPermeabilityTensorFromVar.h:26
PorousFlowPermeabilityTensorFromVar::_perm
const VariableValue & _perm
Permeability components.
Definition: PorousFlowPermeabilityTensorFromVar.h:35
PorousFlowPermeabilityBase.h