From b6f127e30c74a49e7548b624c6b4651d7a992732 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Wed, 3 Sep 2003 18:31:57 +0000 Subject: [PATCH] Cleanup of comment sections. --- Cantera/src/ThermoPhase.h | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Cantera/src/ThermoPhase.h b/Cantera/src/ThermoPhase.h index d15f4d14f..91b8758fa 100755 --- a/Cantera/src/ThermoPhase.h +++ b/Cantera/src/ThermoPhase.h @@ -372,8 +372,8 @@ namespace Cantera { //@} /** - * Get the nondimensional Enthalpy functions for the pure species - * at the current T and P. + * Get the nondimensional Enthalpy functions for the species + * at their standard states at the current T and P. */ virtual void getEnthalpy_RT(doublereal* hrt) const { err("getEnthalpy_RT"); @@ -381,8 +381,8 @@ namespace Cantera { /** - * Get the nondimensional Entropies for the pure species - * at the current T and P. + * Get the nondimensional Entropies for the species + * at their standard states at the current T and P. */ virtual void getEntropy_R(doublereal* sr) const { err("getEntropy_R"); @@ -390,14 +390,18 @@ namespace Cantera { /** - * Get the nondimensional Gibbs functions for the pure species - * at the current T and P. + * Get the nondimensional Gibbs functions for the species + * at their standard states at the current T and P. */ virtual void getGibbs_RT(doublereal* grt) const { err("getGibbs_RT"); } + /** + * Get the nondimensional Gibbs functions for the pure species + * at the current T and P. + */ virtual void getPureGibbs(doublereal* gpure) const { err("getPureGibbs"); } @@ -624,8 +628,8 @@ namespace Cantera { ThermoPhase() { m_spthermo = 0; + m_speciesData = 0; m_index = -1; - m_speciesData = 0; m_phi = 0.0; }