cantera/test_problems/cathermo/testIAPWS/testIAPWSphi.cpp
2009-07-27 23:17:19 +00:00

20 lines
304 B
C++

/*
* $Id: testIAPWSphi.cpp,v 1.2 2008/12/17 17:31:13 hkmoffa Exp $
*/
#include "WaterPropsIAPWSphi.h"
#include <new>
#include <cstdio>
using namespace std;
int main () {
WaterPropsIAPWSphi *phi = new WaterPropsIAPWSphi();
phi->check1();
phi->check2();
delete phi;
return 0;
}