summaryrefslogtreecommitdiff
path: root/1364/CH9/EX9.6.3/9_6_3.sce
blob: 253f27ffe9f65468f9b361c7ca38ed4d0315136d (plain)
1
2
3
4
5
6
7
8
9
10
11
clc
//initialisation of variables
Q1= 140 //gallons
h= 3 //in
r= 16
//CALCULATIONS
H= h*r/12
Q2= Q1*H^5
//RESULTS
printf (' corresponding head over the full-scale wier= %.f ft',H)
printf (' \n discharge over the latter= %.f gal/min',Q2)