version 3.8
carbonateion.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//
12#ifndef DUMUX_CO3_ION_HH
13#define DUMUX_CO3_ION_HH
14
17
18namespace Dumux {
19namespace Components {
20
25template <class Scalar>
27: public Components::Base<Scalar, CarbonateIon<Scalar> >
28, public Components::Ion<Scalar, CarbonateIon<Scalar> >
29{
30public:
34 static std::string name()
35 { return "CO3-"; }
36
40 static constexpr Scalar molarMass()
41 { return 60.0092e-3; } // kg/mol
42
46 static constexpr int charge()
47 { return -2; }
48
49};
50
51} // end namespace Components
52} // end namespace Dumux
53
54#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 CO3 fluid properties.
Definition: carbonateion.hh:29
static std::string name()
A human readable name for the CO3 ion.
Definition: carbonateion.hh:34
static constexpr int charge()
The charge balance of the CO3 ion.
Definition: carbonateion.hh:46
static constexpr Scalar molarMass()
The molar mass in of the CO3 ion.
Definition: carbonateion.hh:40
Interface for components that are ions.
Definition: ion.hh:28
Base class for all components Components provide the thermodynamic relations for the liquid,...
Interface for components that are ions.
Definition: adapt.hh:17