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