summaryrefslogtreecommitdiff
path: root/1466/CH6/EX6.5/6_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '1466/CH6/EX6.5/6_5.sce')
-rwxr-xr-x1466/CH6/EX6.5/6_5.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1466/CH6/EX6.5/6_5.sce b/1466/CH6/EX6.5/6_5.sce
new file mode 100755
index 000000000..252133638
--- /dev/null
+++ b/1466/CH6/EX6.5/6_5.sce
@@ -0,0 +1,15 @@
+
+clc
+//initialisation of variables
+w= 62.4 //Lb sec/ft^3
+A= 25 //in^2
+Vr= 35 //ft/sec
+V= 12 //m.p.h
+g= 32.2 //ft/sec^2
+//CALCULATIONS
+W1= w*A*Vr/144
+v= V*88/60
+W= W1*(Vr^2-v^2)/(2*g)
+hp= W/550
+//RESULTS
+printf (' horse-power required to work the pupms = %.1f ',hp)