From be8e51d2177740741b54241defab4726e687b67c Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Sun, 13 Aug 2017 16:47:00 -0400 Subject: [PATCH] [Thermo] Fix incorrect units in PDSS documentation --- include/cantera/thermo/PDSS.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/cantera/thermo/PDSS.h b/include/cantera/thermo/PDSS.h index 0ff5eeecd..f5e7e7448 100644 --- a/include/cantera/thermo/PDSS.h +++ b/include/cantera/thermo/PDSS.h @@ -537,12 +537,12 @@ protected: double m_cp0_R; //!< Reference state heat capacity divided by R double m_s0_R; //!< Reference state entropy divided by R double m_g0_RT; //!< Reference state Gibbs free energy divided by RT - double m_V0; //!< Reference state molar volume (m3 kg-1) + double m_V0; //!< Reference state molar volume (m^3/kmol) double m_hss_RT; //!< Standard state enthalpy divided by RT double m_cpss_R; //!< Standard state heat capacity divided by R double m_sss_R; //!< Standard state entropy divided by R double m_gss_RT; //!< Standard state Gibbs free energy divided by RT - double m_Vss; //!< Standard State molar volume (m3 kg-1) + double m_Vss; //!< Standard State molar volume (m^3/kmol) }; }