Skip to content

Commit

Permalink
Correct saturation pressure in critical point
Browse files Browse the repository at this point in the history
  • Loading branch information
jjgomera committed Nov 14, 2024
1 parent c9d2767 commit c35c5be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iapws/iapws95.py
Original file line number Diff line number Diff line change
Expand Up @@ -1688,7 +1688,7 @@ def f(parr):

rhoL, rhoG = fsolve(f, [rhoLo, rhoGo])
if rhoL == rhoG:
Ps = self.Pc
Ps = self.Pc*1e3
else:
deltaL = rhoL/self.rhoc
deltaG = rhoG/self.rhoc
Expand Down

0 comments on commit c35c5be

Please sign in to comment.