*** empty log message ***
This commit is contained in:
parent
e9255461b7
commit
9de14b2b6a
5 changed files with 9 additions and 6 deletions
|
|
@ -3,7 +3,7 @@
|
|||
PY_DEMO_DIRS = equilibrium flames gasdynamics kinetics liquid_vapor \
|
||||
misc reactors surface_chemistry transport fuel_cells
|
||||
|
||||
run:
|
||||
run-all:
|
||||
@(for d in $(PY_DEMO_DIRS) ; do \
|
||||
echo "entering directory $${d}..."; \
|
||||
(cd $${d}; make run) ; \
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ branch = -r $(cvs_tag)
|
|||
RMDIRTREE = /bin/rm -r -f
|
||||
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
|
||||
|
||||
prefix=@prefix@
|
||||
|
|
|
|||
|
|
@ -338,6 +338,8 @@ IDA_LIBS='-lsundials_ida -lsundials_nvecserial'
|
|||
if test "$SUNDIALS_VERSION" = "2.2"; then
|
||||
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'
|
||||
echo "sundials include directory: " ${sundials_include}
|
||||
echo "sundials library directory: " $SUNDIALS_LIB_DIR
|
||||
else
|
||||
AC_DEFINE(SUNDIALS_VERSION_23)
|
||||
sundials_include='-I'${SUNDIALS_INC_DIR}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
#define IEEE_8087
|
||||
#define Arith_Kind_ASL 1
|
||||
#define IEEE_MC68k
|
||||
#define Arith_Kind_ASL 2
|
||||
#define Double_Align
|
||||
#define NANCHECK
|
||||
|
|
|
|||
|
|
@ -254,14 +254,14 @@ USE_SUNDIALS=${USE_SUNDIALS:='default'}
|
|||
# This is where you installed sundials if you used the --prefix option
|
||||
# when you configured sundials. If you didn't use the prefix option,
|
||||
# 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
|
||||
# (currently 2.3.0) before building Cantera. But if you want to use an
|
||||
# older version, set SUNDIALS_VERSION to the version you have.
|
||||
# Acceptable values are '2.2' and '2.3' only; anything else will cause
|
||||
# Cantera to not use sundials.
|
||||
SUNDIALS_VERSION=${SUNDIALS_VERSION:='2.3'}
|
||||
SUNDIALS_VERSION=${SUNDIALS_VERSION:='2.2'}
|
||||
|
||||
#-----------------------------------------------------------------
|
||||
# BLAS and LAPACK
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue