www.mooseframework.org
RichardsSeff2gasVGshifted.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 
16 
17 template <>
19 
29 {
30 public:
31  RichardsSeff2gasVGshifted(const InputParameters & parameters);
32 
39  Real seff(std::vector<const VariableValue *> p, unsigned int qp) const;
40 
48  void
49  dseff(std::vector<const VariableValue *> p, unsigned int qp, std::vector<Real> & result) const;
50 
58  void d2seff(std::vector<const VariableValue *> p,
59  unsigned int qp,
60  std::vector<std::vector<Real>> & result) const;
61 
62 protected:
64  Real _al;
65 
67  Real _m;
68 
70  Real _shift;
71 
73  Real _scale;
74 };
75 
RichardsSeff2gasVGshifted::seff
Real seff(std::vector< const VariableValue * > p, unsigned int qp) const
gas effective saturation
Definition: RichardsSeff2gasVGshifted.C:57
RichardsSeff2gasVGshifted::_m
Real _m
van Genuchten m parameter
Definition: RichardsSeff2gasVGshifted.h:67
RichardsSeff2gasVGshifted::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: RichardsSeff2gasVGshifted.C:65
RichardsSeffVG.h
RichardsSeff2gasVGshifted::_scale
Real _scale
scale
Definition: RichardsSeff2gasVGshifted.h:73
RichardsSeff
Base class for effective saturation as a function of porepressure(s) The functions seff,...
Definition: RichardsSeff.h:23
RichardsSeff2gasVGshifted::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: RichardsSeff2gasVGshifted.C:76
RichardsSeff.h
validParams< RichardsSeff2gasVGshifted >
InputParameters validParams< RichardsSeff2gasVGshifted >()
Definition: RichardsSeff2gasVGshifted.C:19
RichardsSeff2gasVGshifted::RichardsSeff2gasVGshifted
RichardsSeff2gasVGshifted(const InputParameters &parameters)
Definition: RichardsSeff2gasVGshifted.C:47
RichardsSeff2gasVGshifted::_shift
Real _shift
shift
Definition: RichardsSeff2gasVGshifted.h:70
RichardsSeff2gasVGshifted
Shifted van-Genuchten water effective saturation as a function of (Pwater, Pgas), and its derivs wrt ...
Definition: RichardsSeff2gasVGshifted.h:28
RichardsSeff2gasVGshifted::_al
Real _al
van Genuchten alpha parameter
Definition: RichardsSeff2gasVGshifted.h:64