summaryrefslogtreecommitdiff
path: root/629/CH8/EX8.10/example8_10.sce
blob: c9179eecddeac84cf6bf0ddc8c9dcd35d4bfad7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
clear
clc
//Example 8.10 MODELING FLOOD DISCHARGE OVER A SPILLWAY
Lmp=1/49; //Lmp=(Lm/Lp)
//Froude-number similitude
//Vm/(g*Lm)=Vp/(g*Lp)
Vm=1.2; //[m/s]
Vp=Vm/(Lmp^(1/2))
printf("\n The velocity in the prototype = %.1f m/s.\n",Vp)
Amp=(Lmp)^2 //Ratio of areas, Amp=(Am/Ap)
Qp=15000; //[m^3/s]
Qm=Qp*Amp*Vm/Vp //[m^3/s]
printf("\n The water flow rate in the model = %.2f m^3/s.\n",Qm)