Added the function getPartialMolarCp(). It isn't currently in the

API, but it should be.
This commit is contained in:
Harry Moffat 2006-06-13 00:20:57 +00:00
parent 092ee39483
commit d6f11c26ce

View file

@ -463,6 +463,13 @@ namespace Cantera {
err("getPartialMolarIntEnergies");
}
/**
* Get the partial molar heat capacities Units: J/kmol/K
*/
virtual void getPartialMolarCp(doublereal* cpbar) const {
err("getPartialMolarCp");
}
/**
* Get the species partial molar volumes. Units: m^3/kmol.
*/
@ -895,7 +902,8 @@ namespace Cantera {
* have already been read at this point.
* For example, we do not need to call this function for
* ideal gas equations of state.
* This function is called after the elements and the
* This function is called from importPhase()
* after the elements and the
* species are initialized with default ideal solution
* level data.
*