Remove unnecessary overrides of cv_mole
This commit is contained in:
parent
8a5bad1e70
commit
eb8695dffa
4 changed files with 0 additions and 17 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
*
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue