summaryrefslogtreecommitdiff
path: root/1466/CH5/EX5.3/5_3.sce
blob: 4fe270d4deb839384364547ed994627f23b657a2 (plain)
1
2
3
4
5
6
7
8
9
clc
//initialisation of variables
Q= 0.0055 //ft^3/sec
h= 0.002 //ft
g= 32.2 //ft/sec^2
//CALCULATIONS
Cd= (Q/h)*15/(8*sqrt(2*g))
//RESULTS
printf (' Coefficiant of discharge = %.3f ',Cd)