www.mooseframework.org
PorousFlowRelativePermeabilityBW.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 
14 
16 
17 template <>
19 
27 {
28 public:
29  PorousFlowRelativePermeabilityBW(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 _sn;
37 
39  const Real _ss;
40 
42  const Real _kn;
43 
45  const Real _ks;
46 
48  const Real _c;
49 };
50 
PorousFlowBroadbridgeWhite.h
PorousFlowRelativePermeabilityBW::_c
const Real _c
BW's C parameter.
Definition: PorousFlowRelativePermeabilityBW.h:48
PorousFlowRelativePermeabilityBW::_ks
const Real _ks
BW's high relative permeability.
Definition: PorousFlowRelativePermeabilityBW.h:45
PorousFlowRelativePermeabilityBase.h
PorousFlowRelativePermeabilityBase
Base class for PorousFlow relative permeability materials.
Definition: PorousFlowRelativePermeabilityBase.h:24
PorousFlowRelativePermeabilityBW::PorousFlowRelativePermeabilityBW
PorousFlowRelativePermeabilityBW(const InputParameters &parameters)
Definition: PorousFlowRelativePermeabilityBW.C:43
PorousFlowRelativePermeabilityBW
Material that calculates the Broadbridge-White relative permeability P Broadbridge,...
Definition: PorousFlowRelativePermeabilityBW.h:26
PorousFlowRelativePermeabilityBW::_kn
const Real _kn
BW's low relative permeability.
Definition: PorousFlowRelativePermeabilityBW.h:42
PorousFlowRelativePermeabilityBW::relativePermeability
virtual Real relativePermeability(Real seff) const override
Relative permeability equation (must be overriden in derived class)
Definition: PorousFlowRelativePermeabilityBW.C:67
PorousFlowRelativePermeabilityBW::dRelativePermeability
virtual Real dRelativePermeability(Real seff) const override
Derivative of relative permeability with respect to effective saturation.
Definition: PorousFlowRelativePermeabilityBW.C:73
validParams< PorousFlowRelativePermeabilityBW >
InputParameters validParams< PorousFlowRelativePermeabilityBW >()
Definition: PorousFlowRelativePermeabilityBW.C:16
PorousFlowRelativePermeabilityBW::_sn
const Real _sn
BW's low saturation.
Definition: PorousFlowRelativePermeabilityBW.h:36
PorousFlowRelativePermeabilityBW::_ss
const Real _ss
BW's high saturation.
Definition: PorousFlowRelativePermeabilityBW.h:39