blob: 57d55cd59085fc82d509b336a0bb2abfd584f1d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Finding of Position of Apex of Notch
//Given
q=0.20;
d=1;
theta=90;
Cd=0.62;
g=9.81;
//To Find
b=(theta/2);
H=q/((8/15)*Cd*sqrt(2*g)*tan(b));
H1=H^(2/5);
p=d-H1;
disp("Position of Apex of Notch ="+string(p)+" meter");
|