From b19a8b005f48e594143ebf18b5b8ae0802371dac Mon Sep 17 00:00:00 2001 From: tedhyu Date: Mon, 27 Apr 2020 12:34:25 -0700 Subject: [PATCH] Edited Example results Changed the results for the examples of: isobaric_expansion_g and isobaric_expansion_l --- thermo/mixture.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/thermo/mixture.py b/thermo/mixture.py index dc176282..33dfcc45 100644 --- a/thermo/mixture.py +++ b/thermo/mixture.py @@ -2411,8 +2411,8 @@ def isobaric_expansion_g(self): Examples -------- - >>> Mixture(['water'], ws=[1], T=647.1, P=22048320.0).isobaric_expansion - 0.34074205839222449 + >>> Mixture(['argon'], ws=[1], T=647.1, P=22048320.0).isobaric_expansion_g + 0.0015661100323025273 ''' dV_dT = self.VolumeGasMixture.property_derivative_T(self.T, self.P, self.zs, self.ws) Vm = self.Vmg @@ -2430,8 +2430,8 @@ def isobaric_expansion_l(self): Examples -------- - >>> Mixture(['water'], ws=[1], T=647.1, P=22048320.0).isobaric_expansion - 0.34074205839222449 + >>> Mixture(['argon'], ws=[1], T=647.1, P=22048320.0).isobaric_expansion_l + 0.001859152875154442 ''' dV_dT = self.VolumeLiquidMixture.property_derivative_T(self.T, self.P, self.zs, self.ws) Vm = self.Vml