Reaktoro
A unified framework for modeling chemically reactive systems
ScalarTypes.hpp
1 // Reaktoro is a unified framework for modeling chemically reactive systems.
2 //
3 // Copyright (C) 2014-2018 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 // Reaktoro includes
21 #include <Reaktoro/Math/Matrix.hpp>
22 
23 namespace Reaktoro {
24 
25 class Temperature;
26 class Pressure;
27 
28 template<typename V>
29 class ThermoScalarBase;
30 
31 template<typename V, typename T, typename P>
32 class ThermoVectorBase;
33 
34 template<typename V, typename N>
35 class ChemicalScalarBase;
36 
37 template<typename V, typename T, typename P, typename N>
38 class ChemicalVectorBase;
39 
42 
45 
46 using ThermoScalarFunction = std::function<ThermoScalar(Temperature, Pressure)>;
47 using ThermoVectorFunction = std::function<ThermoVector(Temperature, Pressure)>;
48 
49 using ChemicalScalarFunction = std::function<ChemicalScalar(Temperature, Pressure, VectorConstRef)>;
50 using ChemicalVectorFunction = std::function<ChemicalVector(Temperature, Pressure, VectorConstRef)>;
51 
52 } // namespace Reaktoro
A template base class to represent a chemical scalar and its partial derivatives.
Definition: ChemicalScalar.hpp:49
ThermoVectorBase< Vector, Vector, Vector > ThermoVector
A type that defines a vector of thermodynamic properties.
Definition: ScalarTypes.hpp:41
A type that describes pressure in units of Pa.
Definition: ThermoScalar.hpp:194
The namespace containing all components of the Reaktoro library.
Definition: ChemicalScalar.hpp:24
A type that describes temperature in units of K.
Definition: ThermoScalar.hpp:177
ChemicalScalarBase< double, RowVector > ChemicalScalar
A type that represents a chemical property and its derivatives.
Definition: ChemicalScalar.hpp:35
A template base class to represent a thermodynamic scalar and its partial derivatives.
Definition: ThermoScalar.hpp:45
ChemicalVectorBase< Vector, Vector, Vector, Matrix > ChemicalVector
A type that represents a vector of chemical properties and their derivatives.
Definition: ChemicalVector.hpp:39
Eigen::Ref< const Eigen::VectorXd > VectorConstRef
< Alias to Eigen type Ref<VectorXd>.
Definition: Matrix.hpp:31
ThermoScalarBase< double > ThermoScalar
A type that defines a scalar thermo property.
Definition: ScalarTypes.hpp:40