www.mooseframework.org
RichardsSeff1RSC.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 "RichardsSeffRSC.h"
14 
15 class RichardsSeff1RSC;
16 
17 template <>
18 InputParameters validParams<RichardsSeff1RSC>();
19 
31 {
32 public:
33  RichardsSeff1RSC(const InputParameters & parameters);
34 
40  Real seff(std::vector<const VariableValue *> p, unsigned int qp) const;
41 
49  void
50  dseff(std::vector<const VariableValue *> p, unsigned int qp, std::vector<Real> & result) const;
51 
59  void d2seff(std::vector<const VariableValue *> p,
60  unsigned int qp,
61  std::vector<std::vector<Real>> & result) const;
62 
63 protected:
66 
69 
71  Real _shift;
72 
74  Real _scale;
75 };
76 
RichardsSeff1RSC::RichardsSeff1RSC
RichardsSeff1RSC(const InputParameters &parameters)
Definition: RichardsSeff1RSC.C:45
RichardsSeff1RSC::_scale
Real _scale
RSC scale.
Definition: RichardsSeff1RSC.h:74
RichardsSeff1RSC::_oil_viscosity
Real _oil_viscosity
oil viscosity
Definition: RichardsSeff1RSC.h:65
RichardsSeff
Base class for effective saturation as a function of porepressure(s) The functions seff,...
Definition: RichardsSeff.h:23
RichardsSeff1RSC::seff
Real seff(std::vector< const VariableValue * > p, unsigned int qp) const
water effective saturation
Definition: RichardsSeff1RSC.C:55
RichardsSeff1RSC::_scale_ratio
Real _scale_ratio
RSC scale ratio.
Definition: RichardsSeff1RSC.h:68
RichardsSeffRSC.h
RichardsSeff1RSC::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: RichardsSeff1RSC.C:71
RichardsSeff.h
RichardsSeff1RSC::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: RichardsSeff1RSC.C:62
RichardsSeff1RSC
Rogers-Stallybrass-Clements version of effective saturation for single-phase simulations as a functio...
Definition: RichardsSeff1RSC.h:30
RichardsSeff1RSC::_shift
Real _shift
RSC shift.
Definition: RichardsSeff1RSC.h:71
validParams< RichardsSeff1RSC >
InputParameters validParams< RichardsSeff1RSC >()
Definition: RichardsSeff1RSC.C:25