[Examples] Avoid temperature range warning in isentropic_units.py

This commit is contained in:
Ray Speth
2026-06-10 10:31:50 -04:00
committed by Ray Speth
parent a1f8d60cb5
commit ab00a8d5f9
+1 -1
View File
@@ -54,7 +54,7 @@ def isentropic(gas=None):
data = []
# compute values for a range of pressure ratios
p_range = np.logspace(-3, 0, 10) * p0
p_range = np.linspace(0.01, 0.99, 10) * p0
for p in p_range:
# set the state using (p,s0)