#include "cantera/thermo/WaterPropsIAPWSphi.h" #include #include using namespace std; using namespace Cantera; int main() { #if defined(_MSC_VER) && _MSC_VER < 1900 _set_output_format(_TWO_DIGIT_EXPONENT); #endif WaterPropsIAPWSphi* phi = new WaterPropsIAPWSphi(); phi->check1(); phi->check2(); delete phi; return 0; }