Chapter 12 : Elementary Hydrodynamics

Example 12.1 Page No : 490

In [3]:
import math 
		
# variables
Q = 0.00010;		#cfs
t = 0.1;		#ft
h = 3.;		#ft
d = 6.;		#in

# calculations 
K = Q*h/(t*0.25*math.pi*(d/12)**2);

# results 
print 'K = %.4f fps'%(K);

		
K = 0.0153 fps