*** empty log message ***
This commit is contained in:
parent
371a3c4198
commit
c57ededb30
3 changed files with 3 additions and 16 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
PY_DEMO_DIRS = equilibrium flames gasdynamics kinetics liquid_vapor \
|
PY_DEMO_DIRS = equilibrium flames gasdynamics kinetics liquid_vapor \
|
||||||
misc reactors surface_chemistry transport
|
misc reactors surface_chemistry transport fuel_cells
|
||||||
|
|
||||||
run:
|
run:
|
||||||
@(for d in $(PY_DEMO_DIRS) ; do \
|
@(for d in $(PY_DEMO_DIRS) ; do \
|
||||||
|
|
|
||||||
|
|
@ -128,21 +128,6 @@ namespace Cantera {
|
||||||
return m_V0;
|
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) {
|
virtual void showSolution(const doublereal* x) {
|
||||||
char buf[80];
|
char buf[80];
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,7 @@ if pycmd <> 'python':
|
||||||
ctloc = '-'
|
ctloc = '-'
|
||||||
warn = ''
|
warn = ''
|
||||||
warn2 = ''
|
warn2 = ''
|
||||||
|
pypath = ''
|
||||||
if localinst and build_python == 2:
|
if localinst and build_python == 2:
|
||||||
try:
|
try:
|
||||||
v = sys.version_info
|
v = sys.version_info
|
||||||
|
|
@ -89,6 +90,7 @@ try:
|
||||||
import Cantera
|
import Cantera
|
||||||
ctpath = Cantera.__path__[0]
|
ctpath = Cantera.__path__[0]
|
||||||
except:
|
except:
|
||||||
|
print "Cantera not found on sys.path = ",sys.path
|
||||||
ctpath = "-"
|
ctpath = "-"
|
||||||
|
|
||||||
if build_matlab:
|
if build_matlab:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue