[cantera]: adding multigastransport test

This commit is contained in:
Nicholas Malaya 2012-02-07 16:47:30 +00:00
parent 343906be99
commit 26f81ad26a
4 changed files with 27 additions and 3 deletions

View file

@ -100,6 +100,7 @@ AC_OUTPUT(Makefile \
test_problems/diamondSurf/Makefile \
test_problems/diamondSurf_dupl/Makefile \
test_problems/fracCoeff/Makefile \
test_problems/multiGasTransport/Makefile \
test_problems/cathermo/Makefile \
test_problems/cathermo/DH_graph_1/Makefile \
test_problems/cathermo/DH_graph_acommon/Makefile \

View file

@ -2,11 +2,11 @@
#SUBDIRS = surfkin silane_equil VPsilance_test \
negATest diamondSurf_dupl surfSolverTest \
ChemEquil_gri_matrix ChemEquil_gri_pairs \
mixGasTransport multiGasTransport printUtilUnitTest
mixGasTransport printUtilUnitTest
SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs
SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf
SUBDIRS += diamondSurf_dupl fracCoeff
SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport
#
# would be good to add:

View file

@ -0,0 +1,23 @@
cc_sources = multiGasTransport.cpp
INC = -I. -I$(top_builddir)/build/include/
AM_CPPFLAGS = $(INC)
AM_CXXFLAGS = $(AM_CPPFLAGS)
LINK = -luser -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo
LINK += -lctnumerics -lctmath -ltpx -lctspectra -lconverters -lctbase -lcvode
LINK += -lctlapack -lctblas -lctf2c -lctcxx -lm -lctf2c -lstdc++
AM_LDFLAGS = -L$(top_builddir)/build/lib/
LIBS = $(LINK)
bin_PROGRAMS = multiGasTransport
library_includedir = $(INC)
#-----------------------
# Cantera DH graph test
#-----------------------
multiGasTransport_SOURCES = $(cc_sources)
TESTS_ENVIRONMENT =
TESTS = runtest

View file

@ -36,7 +36,7 @@ using namespace std;
#include "transport.h"
#include "IdealGasMix.h"
#include "kernel/TransportFactory.h"
#include "TransportFactory.h"
using namespace Cantera;
using namespace Cantera_CXX;