Cantera  2.0
thermoFunctions.h
Go to the documentation of this file.
1 /**
2  * @file thermoFunctions.h
3  *
4  * Thermodynamic properties. Note that these functions are used only
5  * for validation purposes by CKReader. They are not used by Cantera.
6  */
7 
8 // Copyright 2001 California Institute of Technology
9 
10 #ifndef CKR_THERMOFUNCTIONS_H
11 #define CKR_THERMOFUNCTIONS_H
12 
13 #include "Species.h"
14 
15 namespace ckr
16 {
17 
18 double enthalpy(double t, const Species& s);
19 double cp(double t, const Species& s);
20 double entropy(double t, const Species& s);
21 double gibbs(double t, const Species& s);
22 
23 }
24 
25 #endif
26