version 3.11-dev
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
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-FileCopyrightText: 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::Components {
19
24template <class Scalar>
26: public Components::Base<Scalar, Glucose<Scalar> >
27{
28public:
29
33 static std::string name()
34 { return "Glucose"; }
35
40 { return 0.18016; } // kg/mol
41};
42
43} // end namespace Dumux::Components
44
45#endif
Base class for all components Components provide the thermodynamic relations for the liquid,...
Definition: components/base.hh:46
Scalar Scalar
export the scalar type used by the component
Definition: components/base.hh:50
A class for the Glucose component properties.
Definition: glucose.hh:27
static Scalar molarMass()
The molar mass in of Glucose.
Definition: glucose.hh:39
static std::string name()
A human readable name for Glucose.
Definition: glucose.hh:33
Base class for all components Components provide the thermodynamic relations for the liquid,...
Definition: air.hh:22