Skip to content

Commit

Permalink
Edited Example results
Browse files Browse the repository at this point in the history
Changed the results for the examples of:
isobaric_expansion_g and
isobaric_expansion_l
  • Loading branch information
tedhyu committed Apr 27, 2020
1 parent 3e158c9 commit b19a8b0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions thermo/mixture.py
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit b19a8b0

Please sign in to comment.