Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebBell committed Aug 25, 2024
1 parent 8e0f993 commit 7fdb05c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion fluids/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -2660,6 +2660,9 @@ def SA_partial_vertical_torispherical_head(D, f, k, h):
SA = 2.0*pi*f*D*a1
kD_inv = 1.0/(k*D)
SA += 2.0*pi*k*D*(h - a1 + (R - k*D)*(asin(a2*kD_inv) - asin((a-h)*kD_inv)))
else:
# This case should not occur due to the earlier checks
return 0.0
return SA


Expand Down Expand Up @@ -3099,7 +3102,7 @@ class TANK:
Dimensionless dish-radius parameter for side A; also commonly given as
the product of `f` and `D` (`fD`), which is called dish radius and
has units of length, [-]
sideA_k : float, optional
sideA_k : float, optional
Dimensionless knuckle-radius parameter for side A; also commonly given
as the product of `k` and `D` (`kD`), which is called the knuckle
radius and has units of length, [-]
Expand Down

0 comments on commit 7fdb05c

Please sign in to comment.