*** empty log message ***

This commit is contained in:
Dave Goodwin 2006-11-09 21:01:15 +00:00
parent e9255461b7
commit 9de14b2b6a
5 changed files with 9 additions and 6 deletions

View file

@ -3,7 +3,7 @@
PY_DEMO_DIRS = equilibrium flames gasdynamics kinetics liquid_vapor \ PY_DEMO_DIRS = equilibrium flames gasdynamics kinetics liquid_vapor \
misc reactors surface_chemistry transport fuel_cells misc reactors surface_chemistry transport fuel_cells
run: run-all:
@(for d in $(PY_DEMO_DIRS) ; do \ @(for d in $(PY_DEMO_DIRS) ; do \
echo "entering directory $${d}..."; \ echo "entering directory $${d}..."; \
(cd $${d}; make run) ; \ (cd $${d}; make run) ; \

View file

@ -17,7 +17,7 @@ branch = -r $(cvs_tag)
RMDIRTREE = /bin/rm -r -f RMDIRTREE = /bin/rm -r -f
INSTALL_TSC = bin/install_tsc INSTALL_TSC = bin/install_tsc
PY_EXAMPLES = equilibrium flames reactors misc liquid_vapor \ PY_EXAMPLES = equilibrium fuel_cells flames reactors misc liquid_vapor \
gasdynamics kinetics surface_chemistry transport gasdynamics kinetics surface_chemistry transport
prefix=@prefix@ prefix=@prefix@

View file

@ -338,6 +338,8 @@ IDA_LIBS='-lsundials_ida -lsundials_nvecserial'
if test "$SUNDIALS_VERSION" = "2.2"; then if test "$SUNDIALS_VERSION" = "2.2"; then
AC_DEFINE(SUNDIALS_VERSION_22) AC_DEFINE(SUNDIALS_VERSION_22)
sundials_include='-I'${SUNDIALS_HOME}'/include -I'${SUNDIALS_HOME}'/include/sundials -I'${SUNDIALS_HOME}'/include/cvodes -I'${SUNDIALS_HOME}'/include/ida' sundials_include='-I'${SUNDIALS_HOME}'/include -I'${SUNDIALS_HOME}'/include/sundials -I'${SUNDIALS_HOME}'/include/cvodes -I'${SUNDIALS_HOME}'/include/ida'
echo "sundials include directory: " ${sundials_include}
echo "sundials library directory: " $SUNDIALS_LIB_DIR
else else
AC_DEFINE(SUNDIALS_VERSION_23) AC_DEFINE(SUNDIALS_VERSION_23)
sundials_include='-I'${SUNDIALS_INC_DIR} sundials_include='-I'${SUNDIALS_INC_DIR}

View file

@ -1,3 +1,4 @@
#define IEEE_8087 #define IEEE_MC68k
#define Arith_Kind_ASL 1 #define Arith_Kind_ASL 2
#define Double_Align
#define NANCHECK #define NANCHECK

View file

@ -254,14 +254,14 @@ USE_SUNDIALS=${USE_SUNDIALS:='default'}
# This is where you installed sundials if you used the --prefix option # This is where you installed sundials if you used the --prefix option
# when you configured sundials. If you didn't use the prefix option, # when you configured sundials. If you didn't use the prefix option,
# then comment this line out. # then comment this line out.
SUNDIALS_HOME=${SUNDIALS_HOME:=$HOME/sundials23} SUNDIALS_HOME=${SUNDIALS_HOME:=$HOME/sundials}
# It is recommended that you install the newest release of sundials # It is recommended that you install the newest release of sundials
# (currently 2.3.0) before building Cantera. But if you want to use an # (currently 2.3.0) before building Cantera. But if you want to use an
# older version, set SUNDIALS_VERSION to the version you have. # older version, set SUNDIALS_VERSION to the version you have.
# Acceptable values are '2.2' and '2.3' only; anything else will cause # Acceptable values are '2.2' and '2.3' only; anything else will cause
# Cantera to not use sundials. # Cantera to not use sundials.
SUNDIALS_VERSION=${SUNDIALS_VERSION:='2.3'} SUNDIALS_VERSION=${SUNDIALS_VERSION:='2.2'}
#----------------------------------------------------------------- #-----------------------------------------------------------------
# BLAS and LAPACK # BLAS and LAPACK