29 #define DEPRECATED(func) func __attribute__ ((deprecated))
30 #elif defined(_MSC_VER)
31 #define DEPRECATED(func) __declspec(deprecated) func
33 #pragma message("WARNING: You need to implement DEPRECATED for this compiler")
34 #define DEPRECATED(func) func
43 #undef CHEMKIN_COMPATIBILITY_MODE
47 #define DATA_PTR(vec) &vec[0]
62 const doublereal
Pi = 3.14159265358979323846;
79 const doublereal logGasConstant = std::log(
GasConstant);
91 const doublereal
Planck = 6.62607009e-34;
92 const doublereal Planck_bar =
Planck / (2 *
Pi);
102 const doublereal ElectronCharge = 1.602176565e-19;
103 const doublereal ElectronMass = 9.10938291e-31;
104 const doublereal Faraday = ElectronCharge *
Avogadro;
129 const int TV = 100, HP = 101, SP = 102, PV = 103, TP = 104, UV = 105,
130 ST = 106, SV = 107, UP = 108, VH = 109, TH = 110, SH = 111,
132 const int VT = -100, PH = -101, PS = -102, VP = -103, PT = -104,
133 VU = -105, TS = -106, VS = -107, PU = -108, HV = -109,
134 HT = -110, HS = -111, XP = -112, XT = -113;
165 const doublereal
Tiny = 1.e-20;
183 const size_t npos =
static_cast<size_t>(-1);