cantera/test_problems/cathermo/testIAPWS/testIAPWSphi.cpp
2012-02-12 02:47:21 +00:00

20 lines
313 B
C++

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