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