www.mooseframework.org
RichardsSeff1VG.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 "RichardsSeff.h"
13 #include "RichardsSeffVG.h"
14 
15 class RichardsSeff1VG;
16 
17 template <>
18 InputParameters validParams<RichardsSeff1VG>();
19 
27 {
28 public:
29  RichardsSeff1VG(const InputParameters & parameters);
30 
37  Real seff(std::vector<const VariableValue *> p, unsigned int qp) const;
38 
46  void
47  dseff(std::vector<const VariableValue *> p, unsigned int qp, std::vector<Real> & result) const;
48 
56  void d2seff(std::vector<const VariableValue *> p,
57  unsigned int qp,
58  std::vector<std::vector<Real>> & result) const;
59 
60 protected:
62  Real _al;
63 
65  Real _m;
66 };
67 
RichardsSeff1VG::_al
Real _al
van Genuchten alpha parameter
Definition: RichardsSeff1VG.h:62
validParams< RichardsSeff1VG >
InputParameters validParams< RichardsSeff1VG >()
Definition: RichardsSeff1VG.C:19
RichardsSeff1VG::_m
Real _m
van Genuchten m parameter
Definition: RichardsSeff1VG.h:65
RichardsSeffVG.h
RichardsSeff1VG::d2seff
void d2seff(std::vector< const VariableValue * > p, unsigned int qp, std::vector< std::vector< Real >> &result) const
second derivative of effective saturation as a function of porepressure
Definition: RichardsSeff1VG.C:59
RichardsSeff
Base class for effective saturation as a function of porepressure(s) The functions seff,...
Definition: RichardsSeff.h:23
RichardsSeff1VG::dseff
void dseff(std::vector< const VariableValue * > p, unsigned int qp, std::vector< Real > &result) const
derivative of effective saturation as a function of porepressure
Definition: RichardsSeff1VG.C:51
RichardsSeff1VG
Effective saturation as a function of porepressure using the van Genuchten formula.
Definition: RichardsSeff1VG.h:26
RichardsSeff.h
RichardsSeff1VG::seff
Real seff(std::vector< const VariableValue * > p, unsigned int qp) const
effective saturation as a function of porepressure
Definition: RichardsSeff1VG.C:45
RichardsSeff1VG::RichardsSeff1VG
RichardsSeff1VG(const InputParameters &parameters)
Definition: RichardsSeff1VG.C:39