*** empty log message ***

This commit is contained in:
Dave Goodwin 2004-05-16 13:54:38 +00:00
parent 305bdd09a2
commit cdd246f44a
3 changed files with 3 additions and 3 deletions

View file

@ -64,7 +64,7 @@ namespace Cantera {
*/
void integrate(doublereal t0, doublereal t1) {
m_integ->initialize(t0, *this);
m_integ->setMaxStep(t1 - t0);
m_integ->setMaxStepSize(t1 - t0);
m_integ->integrate(t1);
updateState(m_integ->solution());
}

View file

@ -102,7 +102,7 @@ namespace Cantera {
m_atol.resize(neq());
fill(m_atol.begin(), m_atol.end(), 1.e-15);
m_integ->setTolerances(m_rtol, neq(), m_atol.begin());
m_integ->setMaxStep(m_maxstep);
m_integ->setMaxStepSize(m_maxstep);
m_integ->initialize(t0, *this);
#endif
m_enthalpy = m_thermo->enthalpy_mass();

View file

@ -46,7 +46,7 @@ namespace Cantera {
m_atol.resize(neq());
fill(m_atol.begin(), m_atol.end(), m_atols);
m_integ->setTolerances(m_rtol, neq(), m_atol.begin());
m_integ->setMaxStep(m_maxstep);
m_integ->setMaxStepSize(m_maxstep);
if (m_verbose) {
sprintf(buf, "Number of equations: %d\n", neq());
writelog(buf);