blob: 957d7c74c52763293a2d9b10c9308bd6c2ca9dd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clear
clc
//Example 15.3 RESISTANCE COEFFICIENT FOR BOULDERS
l=100; //width[ft]
y=4.3; //depth[ft]
d84=0.72; //[ft]
//for wide channel, take Rh=b
Rh=y
//Resistance coefficient
f=(1.2+(2.03*(log10(Rh/d84))))^-2
printf("\nThe value of resistance coefficient = %.3f\n",f)
|