Fixed an error with a calling statement.

This commit is contained in:
Harry Moffat 2004-06-30 22:30:53 +00:00
parent 82925de65b
commit ffc6b4c48b

View file

@ -40,7 +40,7 @@ namespace Cantera {
// get the initial conditions.
void ImplicitChem::getInitialConditions(double t0, size_t leny, double* y)
{
m_thermo->getMassFractions(leny, y);
m_thermo->getMassFractions(y);
m_h0 = m_thermo->enthalpy_mass();
m_rho = m_thermo->density();
m_press = m_thermo->pressure();