www.mooseframework.org
Q2PRelPermPowerGas.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 
12 #include "RichardsRelPerm.h"
13 
14 class Q2PRelPermPowerGas;
15 
16 template <>
17 InputParameters validParams<Q2PRelPermPowerGas>();
18 
26 {
27 public:
28  Q2PRelPermPowerGas(const InputParameters & parameters);
29 
34  Real relperm(Real seff) const;
35 
40  Real drelperm(Real seff) const;
41 
46  Real d2relperm(Real seff) const;
47 
48 protected:
50  Real _simm;
51 
53  Real _n;
54 };
55 
RichardsRelPerm
Base class for Richards relative permeability classes that provide relative permeability as a functio...
Definition: RichardsRelPerm.h:23
validParams< Q2PRelPermPowerGas >
InputParameters validParams< Q2PRelPermPowerGas >()
Definition: Q2PRelPermPowerGas.C:18
Q2PRelPermPowerGas::_n
Real _n
exponent
Definition: Q2PRelPermPowerGas.h:53
Q2PRelPermPowerGas::_simm
Real _simm
immobile saturation
Definition: Q2PRelPermPowerGas.h:50
Q2PRelPermPowerGas::Q2PRelPermPowerGas
Q2PRelPermPowerGas(const InputParameters &parameters)
Definition: Q2PRelPermPowerGas.C:38
Q2PRelPermPowerGas::d2relperm
Real d2relperm(Real seff) const
Second derivative of relative permeability wrt seff.
Definition: Q2PRelPermPowerGas.C:83
Q2PRelPermPowerGas
PowerGas form of relative permeability Define s = seff/(1 - simm).
Definition: Q2PRelPermPowerGas.h:25
Q2PRelPermPowerGas::drelperm
Real drelperm(Real seff) const
Derivative of relative permeability wrt seff.
Definition: Q2PRelPermPowerGas.C:68
RichardsRelPerm.h
Q2PRelPermPowerGas::relperm
Real relperm(Real seff) const
Relative permeability.
Definition: Q2PRelPermPowerGas.C:44