cantera/tools/doc/doxyinput/ex1.cpp
2005-06-18 16:58:39 +00:00

6 lines
152 B
C++

#include <cantera/Cantera.h>
int main() {
ThermoPhase* gas = newPhase("h2o2.cti","ohmech");
cout << gas->temperature() << endl;
return 0;
}