*** empty log message ***

This commit is contained in:
Dave Goodwin
2003-04-18 23:20:16 +00:00
parent 6c28f55fd0
commit e93289bcef
26 changed files with 456 additions and 166 deletions

View File

@@ -39,10 +39,10 @@ LCXX_END_LIBS = @LCXX_END_LIBS@
CANTERA_LIBDIR=@ctroot@/lib
# required Cantera libraries
CANTERA_LIBS = -lcantera
CANTERA_LIBS =
# the directory where Cantera include files may be found.
CANTERA_INCDIR=@ctroot@/include
CANTERA_INCDIR=@ctroot@/build/include/cantera
# flags passed to the C++ compiler/linker for the linking step
LCXX_FLAGS = -L$(CANTERA_LIBDIR) @CXXFLAGS@

View File

@@ -29,4 +29,3 @@
SI3H8 1.244730e-28 5.189160e-27
SI2 1.619905e-05 4.108919e-04
SI3 1.121605e-06 4.267458e-05

View File

@@ -10,14 +10,14 @@
//#include "Cantera.h"
#include "IdealGasMix.h"
#include "ChemEquil.h"
#include "equilibrium.h"
int main(int argc, char **argv) {
try {
IdealGasMix g("silane.xml");
g.setState_TPX(2000.0, 100.0, "SIH4:0.01, H2:0.99");
equilibrate(g, TP);
printSummary(g, cout);
cout << g;
return 0;
}
catch (CanteraError) {