https://mooseframework.inl.gov
RichardsSeff.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://mooseframework.inl.gov
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 "GeneralUserObject.h"
13 
19 {
20 public:
22 
24 
25  void initialize();
26  void execute();
27  void finalize();
28 
34  virtual Real seff(std::vector<const VariableValue *> p, unsigned int qp) const = 0;
35 
45  virtual void dseff(std::vector<const VariableValue *> p,
46  unsigned int qp,
47  std::vector<Real> & result) const = 0;
48 
57  // virtual std::vector<std::vector<Real> > d2seff(std::vector<const VariableValue *> p, unsigned
58  // int qp) const = 0;
59  virtual void d2seff(std::vector<const VariableValue *> p,
60  unsigned int qp,
61  std::vector<std::vector<Real>> & result) const = 0;
62 };
virtual void dseff(std::vector< const VariableValue *> p, unsigned int qp, std::vector< Real > &result) const =0
derivative(s) of effective saturation as a function of porepressure(s) at given quadpoint of the elem...
Base class for effective saturation as a function of porepressure(s) The functions seff...
Definition: RichardsSeff.h:18
static InputParameters validParams()
Definition: RichardsSeff.C:15
void initialize()
Definition: RichardsSeff.C:26
virtual void d2seff(std::vector< const VariableValue *> p, unsigned int qp, std::vector< std::vector< Real >> &result) const =0
second derivative(s) of effective saturation as a function of porepressure(s) at given quadpoint of t...
void execute()
Definition: RichardsSeff.C:31
virtual Real seff(std::vector< const VariableValue *> p, unsigned int qp) const =0
effective saturation as a function of porepressure(s) at given quadpoint of the element ...
RichardsSeff(const InputParameters &parameters)
Definition: RichardsSeff.C:23
void finalize()
Definition: RichardsSeff.C:36
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const InputParameters & parameters() const