www.mooseframework.org
PorousFlowRelativePermeabilityBC.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  PorousFlowRelativePermeabilityBC(const InputParameters & parameters);
30 
31 protected:
32  virtual Real relativePermeability(Real seff) const override;
33  virtual Real dRelativePermeability(Real seff) const override;
34 
36  const Real _lambda;
38  const bool _is_nonwetting;
39 };
40 
PorousFlowRelativePermeabilityBC::_is_nonwetting
const bool _is_nonwetting
Flag that is set to true if this is the non-wetting (gas) phase.
Definition: PorousFlowRelativePermeabilityBC.h:38
PorousFlowRelativePermeabilityBase.h
PorousFlowRelativePermeabilityBC
Material to calculate Brooks-Corey relative permeability of an arbitrary phase given the effective sa...
Definition: PorousFlowRelativePermeabilityBC.h:26
PorousFlowRelativePermeabilityBC::dRelativePermeability
virtual Real dRelativePermeability(Real seff) const override
Derivative of relative permeability with respect to effective saturation.
Definition: PorousFlowRelativePermeabilityBC.C:44
PorousFlowRelativePermeabilityBC::_lambda
const Real _lambda
Brooks-Corey exponent lambda.
Definition: PorousFlowRelativePermeabilityBC.h:36
PorousFlowRelativePermeabilityBase
Base class for PorousFlow relative permeability materials.
Definition: PorousFlowRelativePermeabilityBase.h:24
validParams< PorousFlowRelativePermeabilityBC >
InputParameters validParams< PorousFlowRelativePermeabilityBC >()
Definition: PorousFlowRelativePermeabilityBC.C:17
PorousFlowRelativePermeabilityBC::relativePermeability
virtual Real relativePermeability(Real seff) const override
Relative permeability equation (must be overriden in derived class)
Definition: PorousFlowRelativePermeabilityBC.C:35
PorousFlowRelativePermeabilityBC::PorousFlowRelativePermeabilityBC
PorousFlowRelativePermeabilityBC(const InputParameters &parameters)
Definition: PorousFlowRelativePermeabilityBC.C:26