[cantera]: adding nasa9 diff poly test
This commit is contained in:
parent
26f81ad26a
commit
259ee0c852
4 changed files with 26 additions and 2 deletions
|
|
@ -101,6 +101,7 @@ AC_OUTPUT(Makefile \
|
|||
test_problems/diamondSurf_dupl/Makefile \
|
||||
test_problems/fracCoeff/Makefile \
|
||||
test_problems/multiGasTransport/Makefile \
|
||||
test_problems/NASA9poly_test/Makefile \
|
||||
test_problems/cathermo/Makefile \
|
||||
test_problems/cathermo/DH_graph_1/Makefile \
|
||||
test_problems/cathermo/DH_graph_acommon/Makefile \
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs
|
||||
SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf
|
||||
SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport
|
||||
SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport NASA9poly_test
|
||||
|
||||
#
|
||||
# would be good to add:
|
||||
|
|
|
|||
23
test_problems/NASA9poly_test/Makefile.am
Normal file
23
test_problems/NASA9poly_test/Makefile.am
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
cc_sources = NASA9poly_test.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 = NASA9poly_test
|
||||
library_includedir = $(INC)
|
||||
|
||||
#-----------------------
|
||||
# Cantera DH graph test
|
||||
#-----------------------
|
||||
|
||||
NASA9poly_test_SOURCES = $(cc_sources)
|
||||
|
||||
TESTS_ENVIRONMENT =
|
||||
TESTS = runtest
|
||||
|
|
@ -24,7 +24,7 @@ using namespace std;
|
|||
#include "transport.h"
|
||||
#include "IdealGasMix.h"
|
||||
|
||||
#include "kernel/TransportFactory.h"
|
||||
#include "TransportFactory.h"
|
||||
|
||||
using namespace Cantera;
|
||||
using namespace Cantera_CXX;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue