www.mooseframework.org
RichardsRelPermPower.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<RichardsRelPermPower>();
18 
24 {
25 public:
26  RichardsRelPermPower(const InputParameters & parameters);
27 
32  Real relperm(Real seff) const;
33 
38  Real drelperm(Real seff) const;
39 
44  Real d2relperm(Real seff) const;
45 
46 protected:
48  Real _simm;
49 
51  Real _n;
52 };
53 
RichardsRelPerm
Base class for Richards relative permeability classes that provide relative permeability as a functio...
Definition: RichardsRelPerm.h:23
RichardsRelPermPower::drelperm
Real drelperm(Real seff) const
derivative of relative permeability wrt effective saturation
Definition: RichardsRelPermPower.C:68
RichardsRelPermPower::relperm
Real relperm(Real seff) const
relative permeability as a function of effective saturation
Definition: RichardsRelPermPower.C:44
validParams< RichardsRelPermPower >
InputParameters validParams< RichardsRelPermPower >()
Definition: RichardsRelPermPower.C:18
RichardsRelPermPower::_simm
Real _simm
immobile saturation
Definition: RichardsRelPermPower.h:48
RichardsRelPermPower::_n
Real _n
exponent used in the power relationship
Definition: RichardsRelPermPower.h:51
RichardsRelPerm.h
RichardsRelPermPower
Power form of relative permeability, usually used for water.
Definition: RichardsRelPermPower.h:23
RichardsRelPermPower::RichardsRelPermPower
RichardsRelPermPower(const InputParameters &parameters)
Definition: RichardsRelPermPower.C:38
RichardsRelPermPower::d2relperm
Real d2relperm(Real seff) const
second derivative of relative permeability wrt effective saturation
Definition: RichardsRelPermPower.C:83