https://mooseframework.inl.gov
RichardsSeff.C
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 // Base class for effective saturation as a function of pressure(s)
11 //
12 #include "RichardsSeff.h"
13 
16 {
18  params.addClassDescription(
19  "Fluid seff base class. Override seff, dseff and d2seff in your class");
20  return params;
21 }
22 
23 RichardsSeff::RichardsSeff(const InputParameters & parameters) : GeneralUserObject(parameters) {}
24 
25 void
27 {
28 }
29 
30 void
32 {
33 }
34 
35 void
37 {
38 }
static InputParameters validParams()
static InputParameters validParams()
Definition: RichardsSeff.C:15
void initialize()
Definition: RichardsSeff.C:26
void execute()
Definition: RichardsSeff.C:31
RichardsSeff(const InputParameters &parameters)
Definition: RichardsSeff.C:23
void finalize()
Definition: RichardsSeff.C:36
void addClassDescription(const std::string &doc_string)