www.mooseframework.org
RichardsRelPermVG.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 RichardsRelPermVG;
15 
16 template <>
17 InputParameters validParams<RichardsRelPermVG>();
18 
24 {
25 public:
26  RichardsRelPermVG(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 _m;
52 };
53 
RichardsRelPermVG::relperm
Real relperm(Real seff) const
relative permeability as a function of effective saturation
Definition: RichardsRelPermVG.C:44
RichardsRelPerm
Base class for Richards relative permeability classes that provide relative permeability as a functio...
Definition: RichardsRelPerm.h:23
RichardsRelPermVG::drelperm
Real drelperm(Real seff) const
derivative of relative permeability wrt effective saturation
Definition: RichardsRelPermVG.C:66
RichardsRelPermVG::d2relperm
Real d2relperm(Real seff) const
second derivative of relative permeability wrt effective saturation
Definition: RichardsRelPermVG.C:86
RichardsRelPermVG::_simm
Real _simm
immobile saturation
Definition: RichardsRelPermVG.h:48
RichardsRelPermVG::_m
Real _m
van Genuchten m parameter
Definition: RichardsRelPermVG.h:51
RichardsRelPermVG
Van-Genuchten form of relative permeability as a function of effective saturation.
Definition: RichardsRelPermVG.h:23
RichardsRelPerm.h
validParams< RichardsRelPermVG >
InputParameters validParams< RichardsRelPermVG >()
Definition: RichardsRelPermVG.C:17
RichardsRelPermVG::RichardsRelPermVG
RichardsRelPermVG(const InputParameters &parameters)
Definition: RichardsRelPermVG.C:38