blob: cd5a9ad4c41720ce0dea80913d311c33a92cf09c (
plain)
1
2
3
4
5
6
7
8
9
10
|
// problem 5.11
Cd=0.6
x=90
q=0.05
g=9.81
dh=0.00025
z=(15*q)/(8*Cd*((2*g)^0.5)*(tand(x/2)))
H=z^0.4
error=2.5*(dh/H)
disp(error*100,"the percentage error in the discharge")
|