diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /914/CH10/EX10.17 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '914/CH10/EX10.17')
-rwxr-xr-x | 914/CH10/EX10.17/ex10_17.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/914/CH10/EX10.17/ex10_17.sce b/914/CH10/EX10.17/ex10_17.sce new file mode 100755 index 000000000..ed2e8cc98 --- /dev/null +++ b/914/CH10/EX10.17/ex10_17.sce @@ -0,0 +1,13 @@ +clc;
+warning("off");
+printf("\n\n example10.17 - pg477");
+// given
+Uzmax=3.455; //[ft/sec]
+m=32;
+a1=-0.3527;
+a2=-0.6473;
+rbyro=0.880;
+UzbyUzmax=1+a1*(rbyro^2)+a2*(rbyro^(2*m));
+Uz=Uzmax*(UzbyUzmax);
+Uzavg=(4/9)*Uzmax+(5/18)*(Uz+Uz);
+printf("\n\n the average velocity is \n Uzavg = %f ft/sec \n\n Thus, in this example there is an inherent error of 5.5 percent, even before any experimental errors are introduced",Uzavg);
|