Remove unnecessary overrides of cv_mole

This commit is contained in:
Ray Speth 2015-11-15 17:00:46 -05:00
parent 8a5bad1e70
commit eb8695dffa
4 changed files with 0 additions and 17 deletions

View file

@ -629,7 +629,6 @@ public:
virtual doublereal gibbs_mole() const;
virtual doublereal cp_mole() const;
virtual doublereal cv_mole() const;
//@}
/** @name Mechanical Equation of State Properties

View file

@ -185,12 +185,6 @@ public:
*/
virtual doublereal cp_mole() const;
//! Molar heat capacity of the solution at constant volume. Units: J/kmol/K.
/*!
* NOT IMPLEMENTED.
*/
virtual doublereal cv_mole() const;
//@}
/** @name Mechanical Equation of State Properties
*

View file

@ -188,11 +188,6 @@ doublereal DebyeHuckel::cp_mole() const
return mean_X(m_tmpV);
}
doublereal DebyeHuckel::cv_mole() const
{
throw NotImplementedError("DebyeHuckel::cv_mole");
}
// ------- Mechanical Equation of State Properties ------------------------
void DebyeHuckel::calcDensity()

View file

@ -161,11 +161,6 @@ doublereal IdealMolalSoln::cp_mole() const
return mean_X(m_tmpV);
}
doublereal IdealMolalSoln::cv_mole() const
{
throw NotImplementedError("IdealMolalSoln::cv_mole");
}
// ------- Mechanical Equation of State Properties ------------------------
void IdealMolalSoln::calcDensity()