Commit graph

1404 commits

Author SHA1 Message Date
Dave Goodwin
52af3dd76d adding support for cmake. 2007-05-10 17:59:11 +00:00
Dave Goodwin
39183733f0 *** empty log message *** 2007-05-10 03:38:38 +00:00
Dave Goodwin
ba5928083f added thread safety option 2007-05-10 03:28:30 +00:00
Dave Goodwin
1b3da91d15 *** empty log message *** 2007-05-09 20:44:25 +00:00
Dave Goodwin
9bb4295a5c *** empty log message *** 2007-05-09 14:55:45 +00:00
Dave Goodwin
c1fc4ef78d *** empty log message *** 2007-05-09 14:05:12 +00:00
Harry Moffat
79cdac83b9 Fixed the make clean rule. 2007-05-06 17:16:43 +00:00
Harry Moffat
9029f8b979 Fixed the Make clean rule. Have to eliminate .depends before make is
called, because the rule to 'make .depends' was being called on invocation
if .depends exists.
2007-05-06 17:15:53 +00:00
Harry Moffat
8068945ce7 forgot a file. 2007-05-05 00:30:57 +00:00
Harry Moffat
910a2abf86 Fixed an error that occurred during linking of applications.
There were multiple definitions of importPhase(string, string),
one per application file.
I moved the definition of importPhase to libctxx.a as it had
to be in an object file, and I retained the declaration within
importPhase.h. I also added declarations for the other
functions in libctxx.a into importPhase.h, as they weren't
declared anywhere in the interface.
2007-05-05 00:29:49 +00:00
Harry Moffat
82db8d7914 Added a missing .h file. 2007-05-04 20:09:13 +00:00
Harry Moffat
4f18225519 Changed the order Cantera libraries in the LINKER statements that
come out of autoconf. An unsatisfied external occurred because
thermo occurred before kinetics. Changed thermo to occur after
kinetics.
2007-05-04 19:47:26 +00:00
Harry Moffat
41c3f28a58 Added .cvsignore files to new directories. 2007-05-04 19:35:01 +00:00
Harry Moffat
afc91cdb94 Fixed a compilation error. The include files were not found. 2007-05-04 19:27:11 +00:00
Dave Goodwin
e8f49c5d9a minor cleanup 2007-05-04 15:48:43 +00:00
Dave Goodwin
5d8430431f minor cleanup 2007-05-04 15:48:43 +00:00
Dave Goodwin
76a653c4a3 added Makefiles 2007-05-04 15:27:23 +00:00
Dave Goodwin
fea8c985f5 reorganized source tree, changed include files, etc. 2007-05-04 15:18:40 +00:00
Dave Goodwin
a7e60c5e88 moved base files 2007-05-04 15:15:19 +00:00
Dave Goodwin
50cc50fa70 removed files that were added in subdirectories 2007-05-04 14:41:10 +00:00
Dave Goodwin
e0f96378ff oved files to numerics subdirectory 2007-05-04 14:40:26 +00:00
Dave Goodwin
0762b467c2 moved files to kinetics subdirectory 2007-05-04 14:27:23 +00:00
Dave Goodwin
9581e8db9a moved files to equil subdirectory 2007-05-04 14:12:33 +00:00
Dave Goodwin
a04e7309a2 moved files to thermo subdirectory 2007-05-04 14:02:39 +00:00
Dave Goodwin
95b303ddbd more on functors 2007-04-30 18:15:32 +00:00
Dave Goodwin
f5ad2f8495 *** empty log message *** 2007-04-29 15:27:48 +00:00
Dave Goodwin
f8df6e432f improved functors 2007-04-26 23:00:14 +00:00
Dave Goodwin
45be8d1924 added ability to enable Soret effect in flame calculations 2007-04-25 20:41:45 +00:00
Dave Goodwin
93be5e02fe *** empty log message *** 2007-04-25 00:27:59 +00:00
Dave Goodwin
6221d28fe0 *** empty log message *** 2007-04-25 00:14:36 +00:00
Dave Goodwin
92eb3d250e ; 2007-04-25 00:08:59 +00:00
Dave Goodwin
b30a0ee8f1 *** empty log message *** 2007-04-25 00:08:11 +00:00
Dave Goodwin
6d9a1aa4bd added cPorousType 2007-04-25 00:06:14 +00:00
Dave Goodwin
ae7fc2f4f1 added doc 2007-04-25 00:05:26 +00:00
Dave Goodwin
467acd90a3 fail if no sundials 2007-04-25 00:03:59 +00:00
Dave Goodwin
a5e8997ff4 include config.h 2007-04-25 00:03:19 +00:00
Harry Moffat
a15b30e7ba Fixed an error in the test suite. Changed some files around in
caThermo so that requesting the ideal solution option but
not the electrochemistry option will now pass the test suite.
2007-04-17 21:10:14 +00:00
Harry Moffat
05e16e8e35 Added in the PIC autoconf variable, that already existed, into most
of the Makefiles in the code. This variable will now be used
to specify the position independent code compiler option within
Cantera. Note, this bug fix was needed for a 64 bit full python compile
on linux.
2007-04-13 22:39:15 +00:00
Harry Moffat
25bb63376a Rebaselined this file.
The title line was wrong, and csvdiff is now comparing title lines.
2007-04-13 16:47:45 +00:00
Harry Moffat
719fa2ea0b Reworked a few issues in the python build script so that compilation
and link errors would be more self-evident.
  Now, link errors in the _cantera.so build will register with
the python layer, because a python exception is raised. This will
propagate into the Makefile causing make to prematurely stop the
build process, because one of its commands has come back with a
non-zero exit status. This causes the "make all" command to return
a non-zero exit status, so that the entire make command comes to a
halt, which is the desired behavior.
2007-04-10 23:06:57 +00:00
Harry Moffat
4ae46da12f Fix for solaris. Previous attempted bug fix actually didn't compile on
solaris. The solution to get it to work on both linux and solaris was
to add a declaration (not a definition) to the alternate file.
2007-04-10 22:19:59 +00:00
Harry Moffat
b32b2c2844 Fixed linking error in python module that was caused by
duplicate static member storage statements on linux.
2007-04-10 22:04:06 +00:00
Harry Moffat
874e8192a4 Changed csvdiff so that it would care about the header information,
and fail a test the headers are different.
Note, I am using this information to put the iteration count.
2007-04-01 22:00:53 +00:00
Harry Moffat
4c58052e41 doxygen update
Finished eliminating the doxygen warnings from MultiPhase
2007-03-30 23:20:05 +00:00
Harry Moffat
40255fcf4c doxygen update
More work on MultiPhase. Fixed some errors in elementAbundance calc
   too.
Added the definitions
   AssertTrace(), AssertThrow(),  and AssertThrowMsg() for a  debug assertion
   capability. Added them to a test problem to make sure that
   they actually compile.
2007-03-29 23:54:32 +00:00
Harry Moffat
250aae64ee Fixed an error in the element abundance calculation. 2007-03-29 17:22:53 +00:00
Harry Moffat
1e07d47bb8 Added an element abundance return capability.
doxygen update
  Started documenting MultiPhase
2007-03-28 20:33:43 +00:00
Harry Moffat
dfbb45596a csvdiff update:
Some data columns may now be strings. A string comparison is then
done.
2007-03-26 21:53:45 +00:00
Harry Moffat
59e246d889 doxygen update
Worked on the Phases of Matter module
2007-03-24 03:12:43 +00:00
Harry Moffat
7bdea0ffd8 Doxygen update
Finished a draft of the File Tab within Doxygen. Each file now
has a link to the relevant modules and classes.
2007-03-23 15:09:17 +00:00