heat_exchanger_algebra.py -> Fix example to use radius instead of apothem

This commit is contained in:
jdegenstein 2024-06-19 20:34:00 -05:00 committed by GitHub
parent 42c91cc975
commit f383470dad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,7 +19,7 @@ assert tube_extension > fillet_radius
tube_locations = [
l
for l in HexLocations(
apothem=(tube_diameter + tube_spacing) / 2,
radius=(tube_diameter + tube_spacing) / 2,
x_count=exchanger_diameter // tube_diameter,
y_count=exchanger_diameter // tube_diameter,
)