version 3.8
glucose.hh
Go to the documentation of this file.
1// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2// vi: set et ts=4 sw=4 sts=4:
3//
4// SPDX-FileCopyrightInfo: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
5// SPDX-License-Identifier: GPL-3.0-or-later
6//
7
13#ifndef DUMUX_MATERIAL_COMPONENTS_GLUCOSE_HH
14#define DUMUX_MATERIAL_COMPONENTS_GLUCOSE_HH
15
17
18namespace Dumux {
19namespace Components {
20
25template <class Scalar>
27: public Components::Base<Scalar, Glucose<Scalar> >
28{
29public:
30
34 static std::string name()
35 { return "Glucose"; }
36
41 { return 0.18016; } // kg/mol
42};
43
44} // end namespace Components
45} // end namespace Dumux
46
47#endif
Base class for all components Components provide the thermodynamic relations for the liquid,...
Definition: components/base.hh:47
Scalar Scalar
export the scalar type used by the component
Definition: components/base.hh:51
A class for the Glucose component properties.
Definition: glucose.hh:28
static Scalar molarMass()
The molar mass in of Glucose.
Definition: glucose.hh:40
static std::string name()
A human readable name for Glucose.
Definition: glucose.hh:34
Base class for all components Components provide the thermodynamic relations for the liquid,...
Definition: adapt.hh:17