[1D] Create initial guess before showSolution()

This commit is contained in:
Ray Speth 2012-11-14 21:07:24 +00:00
parent 6546a6b22c
commit 76a24eb9ce

View file

@ -546,6 +546,8 @@ class Stack:
>>> s.showSolution()
>>> s.showSolution('soln.txt')
"""
if not self._initialized:
self.init()
_cantera.sim1D_showSolution(self._hndl, fname)
def setTimeStep(self, stepsize, nsteps):