*** empty log message ***

This commit is contained in:
Dave Goodwin 2007-05-11 17:17:30 +00:00
parent b53efe5159
commit 01b70682e3
2 changed files with 3 additions and 0 deletions

View file

@ -30,6 +30,7 @@
#include <map>
#include <numeric>
#include <string>
#include <algorithm>
//! creates a pointer to the start of the raw data for a ctvector

View file

@ -171,11 +171,13 @@ namespace Cantera {
const XML_Node& th = xmlphase.child("thermo");
string model = th["model"];
ThermoPhase* t = newThermoPhase(model);
#ifdef WITH_ELECTROLYTES
if (model == "HMW") {
HMWSoln* p = (HMWSoln*)t;
p->constructPhaseXML(xmlphase,"");
}
else
#endif
importPhase(xmlphase, t);
return t;
}