Reaktoro  v2.11.0
A unified framework for modeling chemically reactive systems
WaterConstants.hpp
1 // Reaktoro is a unified framework for modeling chemically reactive systems.
2 //
3 // Copyright © 2014-2024 Allan Leal
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // Lesser General Public License for more details.
14 //
15 // You should have received a copy of the GNU Lesser General Public License
16 // along with this library. If not, see <http://www.gnu.org/licenses/>.
17 
18 #pragma once
19 
20 namespace Reaktoro {
21 
23 const double waterMolarMass = 0.018015268;
24 
26 const double waterCriticalTemperature = 647.096;
27 
29 const double waterCriticalPressure = 22.064e+06;
30 
32 const double waterCriticalDensity = 322.0;
33 
35 const double waterTriplePointTemperature = 273.16;
36 
38 const double waterTriplePointPressure = 611.655;
39 
41 const double waterTriplePointDensityLiquid = 999.793;
42 
44 const double waterTriplePointDensityVapour = 0.00485458;
45 
46 } // namespace Reaktoro
The namespace containing all components of the Reaktoro library.
Definition: Algorithms.hpp:29
const double waterCriticalDensity
The critical density of water in units of kg/m3.
Definition: WaterConstants.hpp:32
const double waterTriplePointDensityLiquid
The triple point liquid-density of water in units of kg/m3.
Definition: WaterConstants.hpp:41
const double waterMolarMass
The molar mass of water in units of kg/mol.
Definition: WaterConstants.hpp:23
const double waterTriplePointTemperature
The triple point temperature of water in units of K.
Definition: WaterConstants.hpp:35
const double waterCriticalTemperature
The critical temperature of water in units of K.
Definition: WaterConstants.hpp:26
const double waterTriplePointDensityVapour
The triple point vapour-density of water in units of kg/m3.
Definition: WaterConstants.hpp:44
const double waterTriplePointPressure
The triple point pressure of water in units of Pa.
Definition: WaterConstants.hpp:38
const double waterCriticalPressure
The critical pressure of water in units of Pa.
Definition: WaterConstants.hpp:29