blob: 24392c52cf47e4248eaf3e90ba58cb3109845209 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
clc
//initialisation of variables
clear
c= 0.64
d= 2 //in
h= 3 //ft
cd1= 0.5
g= 32.2 //ft/sec^2
//CALCULATIONS
cd= 1/sqrt(2+(1/c)^2-(2/c))
ad= cd1*%pi*d^2*sqrt(2*g*h)/(4*144)
ad1= cd*%pi*4*sqrt(2*g*h/(4*144))
//RESULTS
printf (' Coefficient of discharge= %.3f',cd)
printf (' \n Actual discharge for Borda mouthpiece= %.4f ft^3/sec',ad)
printf (' \n Actual discharge for Cylindrical mouthpiece= %.f ft^3/sec',ad)
|