diff options
Diffstat (limited to '1466/CH7/EX7.1/7_1.sce')
-rwxr-xr-x | 1466/CH7/EX7.1/7_1.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1466/CH7/EX7.1/7_1.sce b/1466/CH7/EX7.1/7_1.sce new file mode 100755 index 000000000..3696c3581 --- /dev/null +++ b/1466/CH7/EX7.1/7_1.sce @@ -0,0 +1,18 @@ +
+clc
+//initialisation of variables
+As= 13500 //ft^2
+n= 16
+Vs= 20 //knots
+fm= 0.0094
+r= 20 //Lb
+fs= 0.0091
+//CALCULATIONS
+Am= As/n^2
+s= Vs/sqrt(n)
+rf= fm*Am*(Vs/sqrt(n))^2
+rw= r-rf
+R= n^3*(r+rf*((fs/fm)-1))
+hp= R*Vs*1.69*100/(550*60)
+//RESULTS
+printf (' required horse power = %.f ',hp-25)
|