21 lines
363 B
C++
21 lines
363 B
C++
#include "cantera/thermo/WaterPropsIAPWSphi.h"
|
|
#include <new>
|
|
|
|
#include <cstdio>
|
|
|
|
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;
|
|
}
|