www.mooseframework.org
RichardsRelPermAux.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 "AuxKernel.h"
13 
14 #include "RichardsRelPerm.h"
15 
16 // Forward Declarations
17 class RichardsRelPermAux;
18 
19 template <>
20 InputParameters validParams<RichardsRelPermAux>();
21 
25 class RichardsRelPermAux : public AuxKernel
26 {
27 public:
28  RichardsRelPermAux(const InputParameters & parameters);
29 
30 protected:
31  virtual Real computeValue();
32 
34  const VariableValue & _seff_var;
35 
38 };
39 
RichardsRelPerm
Base class for Richards relative permeability classes that provide relative permeability as a functio...
Definition: RichardsRelPerm.h:23
RichardsRelPermAux::RichardsRelPermAux
RichardsRelPermAux(const InputParameters &parameters)
Definition: RichardsRelPermAux.C:28
RichardsRelPermAux::computeValue
virtual Real computeValue()
Definition: RichardsRelPermAux.C:36
RichardsRelPermAux
Relative Permeability as a function of effective saturation.
Definition: RichardsRelPermAux.h:25
RichardsRelPermAux::_seff_var
const VariableValue & _seff_var
effective saturation
Definition: RichardsRelPermAux.h:34
validParams< RichardsRelPermAux >
InputParameters validParams< RichardsRelPermAux >()
Definition: RichardsRelPermAux.C:18
RichardsRelPerm.h
RichardsRelPermAux::_relperm_UO
const RichardsRelPerm & _relperm_UO
userobject that defines relative permeability function
Definition: RichardsRelPermAux.h:37