Dear Dr. Goodwin or others: I am a beginner for C++/cantera. I managed to install cantera from source sucessfully. The examples for Python work well....
I infer from your statement 'include "c:\.."' that you are doing this on a PC... From the form of the error statement, I'm guessing you are using Visual C++....
Michael, One problem may be in using '~' in the 'prefix' option to 'configure.' I have found it necessary to use $HOME: ./configure --prefix=$HOME/cantera I...
Dear Dave, I'm writing because I'm having trouble figuring out how to combine 2 (or better, multiple) kinetics reactors in pressure equilibrium which are...
Perhaps the best way to explain it is with an example. See the attached Python script and Powerpoint file with results. This script simulates 5 coupled...
Cantera 1.5.4 has just been released, You can get it from the sourceforge site as a tar.gz file. I will try to get a binary Windows installer made tomorrow. ...
Hello, Is there a way to introduce arbitrary reaction orders into the kinetic rate expressions ? I tried the following: 1) using the FORD, RORD auxillary...
E David Huckaby
e.david.huckaby@...
Jun 16, 2004 6:24 pm
413
Dave, Non-integer reaction orders are currently supported for surface reaction mechanisms, but not for homogeneous mechanisms. There is no particular...
Dave, Thanks for your help. I have attached a few version of the mechanism in various file formats. Dave H. ... Dave, Non-integer reaction orders are currently...
E David Huckaby
e.david.huckaby@...
Jun 16, 2004 8:55 pm
415
Dave, It turned out to be easy to fix. I had already implemented everything needed, except that the reaction orders specified in the input file were being...
Dave, thanks for your help. I will tell you how its goes. Dave ... Dave, It turned out to be easy to fix. I had already implemented everything needed, except...
E David Huckaby
e.david.huckaby@...
Jun 17, 2004 10:05 am
418
Hi, I was using cantera 1.5.3 till now and was able to successfully convert chemkin format files into .cti files. After I installed 1.5.4, I am having trouble...
I just checked out the cantera code via cvs and did configure and make. Make gives an error: make[1]: *** No rule to make target `PureFluidPhase.o', needed by...
This shouldn't happen, of course. I made only one change to this Chemkin->Cantera conversion code, to better handle differences in line endings between DOS,...
I added a file PureFluidPhase.cpp and put it in the Makefile but forgot to add it to the CVS repository. It is there now. Do "cvs update" then redo "make" and...
I just tried doing cvs update, and then make again, but I get the same error. As far as I can tell, cvs update did not check out this PureFluidPhase.cpp file....
I checked out the code with cvs, ran make and install. Now the python examples won't work. I get the following error. python mix1.py Traceback (most recent...
You need to rebuild the Python extension module. The build procedure for the Python extension module cannot always detect when a Cantera library file has...
I tried doing what you said: touch Cantera/python/src*.cpp make python make install As far as I can tell it did not recompile the files that I 'touched'. I get...
I have a code I've been using with 1.5.3. I want to move to 1.5.4. I've installed 1.5.4 and the examples work fine. When I compile my code, I get the...
Karl, Yes, the flow controllers have changed in 1.5.4, and are now simpler. The use of a PID controller seemed to be overkill, and has now been removed (but...
Sorry for this question. I'm not a UNIX programmer, just a chemical researcher. In trying to do the installation of Cantera for Windows XP, I'm trying to run...
Ron, In that case the best thing to do is just use the binary installer for Windows. Download and run Cantera154.msi. This will install everything you need...
Dave, I made the changes. Now my code snippet looks like: FlowDevice *mfc,*throttle; mfc = new MassFlowController(); throttle= new PressureController(); ...