diff --git a/include/cantera/thermo/MixtureFugacityTP.h b/include/cantera/thermo/MixtureFugacityTP.h index 57c86f01a..299d4b7fa 100644 --- a/include/cantera/thermo/MixtureFugacityTP.h +++ b/include/cantera/thermo/MixtureFugacityTP.h @@ -281,21 +281,11 @@ public: */ virtual void getGibbs_RT(doublereal* grt) const; - - //! Get the nondimensional Gibbs functions for the standard - //! state of the species at the current T and P. - /*! - * For all objects with the Mixture Fugacity approximation, we define the - * standard state as an ideal gas at the current temperature and pressure - * of the solution. - * - * @param gpure Output vector of standard state - * Gibbs free energies. length = m_kk. - * units are J/kmol. - * - * @todo This could be eliminated. It doesn't fit into the current - * naming convention. - */ + //! Get the pure Gibbs free energies of each species. + //! Species are assumed to be in their standard states. This is the same + //! as getStandardChemPotentials(). + //! @param gpure[out] Array of standard state Gibbs free energies. + //! length = m_kk. units are J/kmol. void getPureGibbs(doublereal* gpure) const; //! Returns the vector of nondimensional internal Energies of the standard state at the current temperature diff --git a/include/cantera/thermo/VPStandardStateTP.h b/include/cantera/thermo/VPStandardStateTP.h index bb6789651..724a6bd43 100644 --- a/include/cantera/thermo/VPStandardStateTP.h +++ b/include/cantera/thermo/VPStandardStateTP.h @@ -216,18 +216,14 @@ public: */ virtual void getGibbs_RT(doublereal* grt) const; - - //! Get the nondimensional Gibbs functions for the standard - //! state of the species at the current T and P. + //! Get the standard state Gibbs functions for each species + //! at the current T and P. /*! * (Note resolved at this level) * * @param gpure Output vector of standard state * Gibbs free energies. length = m_kk. * units are J/kmol. - * - * @todo This could be eliminated. It doesn't fit into the current - * naming convention. */ void getPureGibbs(doublereal* gpure) const;