Skip to content

Commit

Permalink
Fix units for T in python example.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
MilanSkocic committed Jul 23, 2024
1 parent 4a24cf0 commit 8607f4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
fig = plt.figure()
ax = fig.add_subplot()
ax.grid(visible=True, ls=':')
ax.set_xlabel("T /°C")
ax.set_xlabel("T /°K")
ax.set_ylabel("ln (kh/1GPa)")
gases = pyiapws.g704.gases(HEAVYWATER)
for gas in gases:
Expand All @@ -81,7 +81,7 @@
fig = plt.figure()
ax = fig.add_subplot()
ax.grid(visible=True, ls=':')
ax.set_xlabel("T /°C")
ax.set_xlabel("T /°K")
ax.set_ylabel("ln kd")
gases = pyiapws.g704.gases(HEAVYWATER)
for gas in gases:
Expand Down

0 comments on commit 8607f4c

Please sign in to comment.