www.mooseframework.org
RichardsDensityMethane20degC.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 "RichardsDensity.h"
13 
15 
16 template <>
18 
31 {
32 public:
33  RichardsDensityMethane20degC(const InputParameters & parameters);
34 
39  Real density(Real p) const;
40 
45  Real ddensity(Real p) const;
46 
51  Real d2density(Real p) const;
52 
53 private:
55  Real _p_unit;
56 };
57 
RichardsDensityMethane20degC::density
Real density(Real p) const
fluid density as a function of porepressure
Definition: RichardsDensityMethane20degC.C:44
RichardsDensityMethane20degC::RichardsDensityMethane20degC
RichardsDensityMethane20degC(const InputParameters &parameters)
Definition: RichardsDensityMethane20degC.C:38
RichardsDensityMethane20degC::_p_unit
Real _p_unit
Unit of measurement for pressure (should be 1 for pressure in Pa, 1E6 for pressure in MPa,...
Definition: RichardsDensityMethane20degC.h:55
RichardsDensityMethane20degC::ddensity
Real ddensity(Real p) const
derivative of fluid density wrt porepressure
Definition: RichardsDensityMethane20degC.C:53
RichardsDensityMethane20degC::d2density
Real d2density(Real p) const
second derivative of fluid density wrt porepressure
Definition: RichardsDensityMethane20degC.C:62
validParams< RichardsDensityMethane20degC >
InputParameters validParams< RichardsDensityMethane20degC >()
Definition: RichardsDensityMethane20degC.C:24
RichardsDensity
Base class for fluid density as a function of porepressure The functions density, ddensity and d2dens...
Definition: RichardsDensity.h:24
RichardsDensity.h
RichardsDensityMethane20degC
Methane density - a quadratic fit to expressions in: "Results of (pressure, density,...
Definition: RichardsDensityMethane20degC.h:30