summaryrefslogtreecommitdiff
path: root/2021/CH14/EX14.6/EX14_6.sce
blob: 3a32b0c3de248409eec3ef01b42d853870a8cb5f (plain)
1
2
3
4
5
6
7
8
9
10
11
//Finding of velocity , discharge of prototype
//Given
qm=2;
vm=1.5;
lp=36;
lm=1;
//To Find
vp=sqrt(lp/lm)*vm;
qp=(lp/lm)^2*(vp/vm)*qm;
disp("Velocity of Prototype ="+string(vp)+" m/sec");
disp("Dischage of Prototype ="+string(qp)+" m^3/sec");