Fix miscellaneous typos

This commit is contained in:
Ray Speth
2025-10-31 11:13:03 -05:00
committed by Ingmar Schoegl
parent c8c307a907
commit 2fc7d2704a
7 changed files with 7 additions and 7 deletions
@@ -152,7 +152,7 @@ from scipy.optimize import fsolve
import time # Used for timing our calculations
import matplotlib.pyplot as plt
import cantera as ct
print(f"Runnning Cantera version: {ct.__version__}")
print(f"Running Cantera version: {ct.__version__}")
# %%
# Define the phases
+1 -1
View File
@@ -87,7 +87,7 @@ plt.semilogx(df.vf.values, df.P.values, label='Saturated liquid')
plt.semilogx(df.vg.values, df.P.values, label='Saturated vapor')
plt.semilogx(df.vg.values[-1], df.P.values[-1], 'o', label='Critical point')
plt.xlabel(r'Specific volume - $v$ ($\mathrm{m^3/kg}$)')
plt.ylabel(r'Presssure - $P$ (bar)')
plt.ylabel(r'Pressure - $P$ (bar)')
plt.legend();
# %%