diff options
Diffstat (limited to '1466/CH3/EX3.1/3_1.sce')
-rwxr-xr-x | 1466/CH3/EX3.1/3_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1466/CH3/EX3.1/3_1.sce b/1466/CH3/EX3.1/3_1.sce new file mode 100755 index 000000000..70e15357c --- /dev/null +++ b/1466/CH3/EX3.1/3_1.sce @@ -0,0 +1,14 @@ +
+clc
+//initialisation of variables
+ws= 62.4 //lbf/ft^3
+V= 300 //gal
+P= 20 //lb/in^2
+ww= 10 //Lb
+w= 62.4 //lb/ft^3
+//CALCULATIONS
+Ws= (V*ww)/60
+Vws= Ws/w
+hp= P*144*Vws/550
+//RESULTS
+printf (' horse power required= %.1f hp ',hp)
|