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