www.mooseframework.org
PorousFlowRelativePermeabilityConst.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 
24 {
25 public:
26  PorousFlowRelativePermeabilityConst(const InputParameters & parameters);
27 
28 protected:
29  virtual Real relativePermeability(Real seff) const override;
30  virtual Real dRelativePermeability(Real seff) const override;
31 
33  const Real _relperm;
34 };
35 
PorousFlowRelativePermeabilityConst::_relperm
const Real _relperm
Constant relative permeability.
Definition: PorousFlowRelativePermeabilityConst.h:33
PorousFlowRelativePermeabilityConst::dRelativePermeability
virtual Real dRelativePermeability(Real seff) const override
Derivative of relative permeability with respect to effective saturation.
Definition: PorousFlowRelativePermeabilityConst.C:36
PorousFlowRelativePermeabilityBase.h
PorousFlowRelativePermeabilityBase
Base class for PorousFlow relative permeability materials.
Definition: PorousFlowRelativePermeabilityBase.h:24
validParams< PorousFlowRelativePermeabilityConst >
InputParameters validParams< PorousFlowRelativePermeabilityConst >()
Definition: PorousFlowRelativePermeabilityConst.C:16
PorousFlowRelativePermeabilityConst::PorousFlowRelativePermeabilityConst
PorousFlowRelativePermeabilityConst(const InputParameters &parameters)
Definition: PorousFlowRelativePermeabilityConst.C:25
PorousFlowRelativePermeabilityConst::relativePermeability
virtual Real relativePermeability(Real seff) const override
Relative permeability equation (must be overriden in derived class)
Definition: PorousFlowRelativePermeabilityConst.C:31
PorousFlowRelativePermeabilityConst
This class simply sets a constant relative permeability at the nodes.
Definition: PorousFlowRelativePermeabilityConst.h:23