www.mooseframework.org
RichardsSeffAux.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 "RichardsSeff.h"
15 
16 // Forward Declarations
17 class RichardsSeffAux;
18 
19 template <>
20 InputParameters validParams<RichardsSeffAux>();
21 
25 class RichardsSeffAux : public AuxKernel
26 {
27 public:
28  RichardsSeffAux(const InputParameters & parameters);
29 
30 protected:
31  virtual Real computeValue();
32 
39 
45  std::vector<const VariableValue *> _pressure_vals;
46 };
47 
RichardsSeffAux
Calculates effective saturation for a specified variable.
Definition: RichardsSeffAux.h:25
RichardsSeffAux::computeValue
virtual Real computeValue()
Definition: RichardsSeffAux.C:39
RichardsSeffAux::_pressure_vals
std::vector< const VariableValue * > _pressure_vals
the porepressure values (this will be length N where N is the number of arguments that the _seff_UO r...
Definition: RichardsSeffAux.h:45
RichardsSeff
Base class for effective saturation as a function of porepressure(s) The functions seff,...
Definition: RichardsSeff.h:23
RichardsSeffAux::RichardsSeffAux
RichardsSeffAux(const InputParameters &parameters)
Definition: RichardsSeffAux.C:28
validParams< RichardsSeffAux >
InputParameters validParams< RichardsSeffAux >()
Definition: RichardsSeffAux.C:18
RichardsSeffAux::_seff_UO
const RichardsSeff & _seff_UO
The user object that defines effective saturation as function of porepressure (or porepressures in th...
Definition: RichardsSeffAux.h:38
RichardsSeff.h