blob: 27afe507053823a3b5cc5fa396a950ef014ff114 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Example 6.4
clc;
clear;
close;
format('v',5);
//Given data :
Q=180/62;//litres/sec
Q=Q/1000;//cumec
Dc=25/1000;//m
H=1.9;//m
ac=%pi/4*Dc^2;//m^2
g=9.81;//constant
Cv=Q/sqrt(2*g*H)/ac;
disp(Cv,"Coefficient of velocity : ");
|