[Thermo] Remove unnecessary overrides of modifyOneHf298SS

This commit is contained in:
Ray Speth
2016-04-30 15:22:54 -04:00
parent 92e9e08097
commit 0f669153fb
4 changed files with 0 additions and 14 deletions

View File

@@ -338,7 +338,6 @@ public:
virtual void getEnthalpy_RT_ref(doublereal* hrt) const;
virtual void getGibbs_RT_ref(doublereal* grt) const;
virtual void modifyOneHf298SS(const size_t k, const doublereal Hf298New);
protected:
//! Returns the vector of nondimensional Gibbs free energies of the

View File

@@ -228,7 +228,6 @@ public:
//@{
virtual void getEnthalpy_RT_ref(doublereal* hrt) const;
virtual void modifyOneHf298SS(const size_t k, const doublereal Hf298New);
virtual void getGibbs_RT_ref(doublereal* grt) const;
protected:

View File

@@ -111,12 +111,6 @@ void MixtureFugacityTP::getEnthalpy_RT(doublereal* hrt) const
getEnthalpy_RT_ref(hrt);
}
void MixtureFugacityTP::modifyOneHf298SS(const size_t k, const doublereal Hf298New)
{
m_spthermo->modifyOneHf298(k, Hf298New);
invalidateCache();
}
void MixtureFugacityTP::getEntropy_R(doublereal* sr) const
{
_updateReferenceStateThermo();

View File

@@ -129,12 +129,6 @@ void VPStandardStateTP::getEnthalpy_RT(doublereal* hrt) const
m_VPSS_ptr->getEnthalpy_RT(hrt);
}
void VPStandardStateTP::modifyOneHf298SS(const size_t k, const doublereal Hf298New)
{
m_spthermo->modifyOneHf298(k, Hf298New);
invalidateCache();
}
void VPStandardStateTP::getEntropy_R(doublereal* srt) const
{
updateStandardStateThermo();