cantera/test_problems/spectroscopy/spectratest.cpp
2007-12-15 23:13:55 +00:00

14 lines
239 B
C++

#include "Cantera.h"
#include "spectra.h"
#include <iostream>
using namespace std;
using namespace Cantera;
int main() {
Rotor* r = new Rotor(1.0);
double w = 8065.0;
cout << "eV: " << wnum_to_eV(w) << endl;
delete r;
}