diff options
Diffstat (limited to '1962/CH9/EX9.14')
-rwxr-xr-x | 1962/CH9/EX9.14/example9_14.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1962/CH9/EX9.14/example9_14.sce b/1962/CH9/EX9.14/example9_14.sce new file mode 100755 index 000000000..cdf3575f9 --- /dev/null +++ b/1962/CH9/EX9.14/example9_14.sce @@ -0,0 +1,17 @@ +
+//example 9.14
+//page 349
+clc; funcprot(0);
+//initialisation of variable
+z=100;//elevation
+f=0.0125;//using iteration
+L=10000;
+L2=1000;
+D=2;
+g=32.2;
+pi=3.14;
+V=sqrt(2*g*z/f/L*D);
+Q=pi*D^2/4*V;
+x=34-10-f*L2*V^2/2/g/D-V^2/2/g;
+disp(30-x,"minimum depth of ridge(ft)=");
+clear
|