From af81729504a26967d2d1eac89f1342cc4da52e66 Mon Sep 17 00:00:00 2001 From: "Bryan W. Weber" Date: Fri, 22 Jan 2016 16:46:07 -0500 Subject: [PATCH] [Cython] Add units to PureFluid property docstrings --- interfaces/cython/cantera/thermo.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interfaces/cython/cantera/thermo.pyx b/interfaces/cython/cantera/thermo.pyx index be68a99d4..035e4eb76 100644 --- a/interfaces/cython/cantera/thermo.pyx +++ b/interfaces/cython/cantera/thermo.pyx @@ -1203,7 +1203,7 @@ cdef class PureFluid(ThermoPhase): self.thermo.setState_Psat(self.P, X) property TX: - """Get/Set the temperature and vapor fraction of a two-phase state.""" + """Get/Set the temperature [K] and vapor fraction of a two-phase state.""" def __get__(self): return self.T, self.X def __set__(self, values): @@ -1212,7 +1212,7 @@ cdef class PureFluid(ThermoPhase): self.thermo.setState_Tsat(T, X) property PX: - """Get/Set the pressure and vapor fraction of a two-phase state.""" + """Get/Set the pressure [Pa] and vapor fraction of a two-phase state.""" def __get__(self): return self.P, self.X def __set__(self, values):