7.33 Pump Affinity Rules

Given: For the 6” impeller trim on the curve below, the pump produces 126’ of head and 400 gpm while running at 3500 rpm. The brake horsepower is 17.5 hp in that case.

Find the flow rate, head, and power of this operating point if the speed is changed to 1700 rpm.

[1]:
from fluids.units import *
head1 = 126*u.foot
Q1 = 400*u.gal/u.min
rpm1 = 3500*u.rpm
power1 = 17.5*u.hp

rpm2 = 1700*u.rpm

Q2 = rpm2/rpm1*Q1
head2 = head1*(rpm2/rpm1)**2
power2 = power1*(rpm2/rpm1)**3

Q2, head2, power2
[1]:
(194.28571428571428 <Unit('gallon / minute')>,
 29.725714285714286 <Unit('foot')>,
 2.0053061224489794 <Unit('horsepower')>)

The values match those given in Crane.