diff options
Diffstat (limited to '1484/CH8/EX8.10/8_10.sce')
-rwxr-xr-x | 1484/CH8/EX8.10/8_10.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1484/CH8/EX8.10/8_10.sce b/1484/CH8/EX8.10/8_10.sce new file mode 100755 index 000000000..8387160b8 --- /dev/null +++ b/1484/CH8/EX8.10/8_10.sce @@ -0,0 +1,15 @@ +clc
+//initialisation of variables
+vr= 20 //f/sec
+u= 9 //knots
+D= 64 //lbs per cubic foot
+g= 32.2 //ft/sec^2
+p= 40 //per cent
+//CALCULATIONS
+u1= u*6080/3600
+v= vr-u1
+P= D*2*vr*4.8/g
+HP= P*u1/550
+HP1= 100*HP/p
+//RESULTS
+printf ('cylinder H.P= %.2f H.P',HP1)
|