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.
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.
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.
Calling setState_TRY() in freezeSpecies() caused one of the test problems
on solaris to fail. FreezeSpecies is called before the phase is actually
set up (i.e., the size of the species is read from the input file).
For constant density phases, then, this was causing a problem (divide by zero).
setState() must be called after the phase is set up from the XML input file.
-> Added a pureFluidTest problem that only gets carried out if
the WIT_PURE_FLUIDS conditional compile takes place.
-> added more to testWaterTP, so that it queries the unstable
water region up to the spinodal curve.
Added info to DebyeHuckel. It's getting to be near a documented state.
test suite fix:
fixed Makefile.in's. The .depends were not being included in the Makefiles.
It should now be more stable.
Fixed an error in IdealMolalSoln -> density wasn't beeing recalculated.
Updated the test problem with the fix.
Worked CANTERA_DEBUG_MODE into the Makefiles. It wasn't being used.
Split the multiproblem DH_graph_1 test into multiple directories, one per test
Worked on getting all of the test problems to have the same look, feel, and printout.
does, putting in doxygen documentation. Tried to fix some holes
in DebyeHuckel wherein calculations may be returned without
updating the underlying water standard state.