*** empty log message ***

This commit is contained in:
Dave Goodwin 2006-11-09 13:58:38 +00:00
parent 371a3c4198
commit c57ededb30
3 changed files with 3 additions and 16 deletions

View file

@ -1,7 +1,7 @@
#!/bin/sh
PY_DEMO_DIRS = equilibrium flames gasdynamics kinetics liquid_vapor \
misc reactors surface_chemistry transport
misc reactors surface_chemistry transport fuel_cells
run:
@(for d in $(PY_DEMO_DIRS) ; do \

View file

@ -128,21 +128,6 @@ namespace Cantera {
return m_V0;
}
// virtual void showSolution_s(ostream& s, const doublereal* x) {
// s << "------------------- Inlet " << domainIndex() << " ------------------- " << endl;
// s << " mdot: " << m_mdot << " kg/m^2/s" << " " << x[0] << endl;
// s << " temperature: " << m_temp << " K" << " " << x[1] << endl;
// if (m_flow) {
// s << " mass fractions: " << endl;
// for (int k = 0; k < m_flow->phase().nSpecies(); k++) {
// if (m_yin[k] != 0.0) {
// s << " " << m_flow->phase().speciesName(k)
// << " " << m_yin[k] << endl;
// }
// }
// }
// s << endl;
// }
virtual void showSolution(const doublereal* x) {
char buf[80];

View file

@ -28,6 +28,7 @@ if pycmd <> 'python':
ctloc = '-'
warn = ''
warn2 = ''
pypath = ''
if localinst and build_python == 2:
try:
v = sys.version_info
@ -89,6 +90,7 @@ try:
import Cantera
ctpath = Cantera.__path__[0]
except:
print "Cantera not found on sys.path = ",sys.path
ctpath = "-"
if build_matlab: