diff options
Diffstat (limited to '1364/CH9/EX9.2.2/9_2_2.sce')
-rwxr-xr-x | 1364/CH9/EX9.2.2/9_2_2.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1364/CH9/EX9.2.2/9_2_2.sce b/1364/CH9/EX9.2.2/9_2_2.sce new file mode 100755 index 000000000..99bdc13fb --- /dev/null +++ b/1364/CH9/EX9.2.2/9_2_2.sce @@ -0,0 +1,14 @@ +clc
+//initialisation of variables
+A= 600 //ft^2
+W= 40 //lbf/ft^2
+n= 75 //percent
+r= 10
+v= 300 //miles/hour
+//CALCULATIONS
+L= W*A
+D= L/r
+P= D*v*5280/(60*33000)
+hp= P*100/n
+//RESULTS
+printf (' brake horse-power of the engines= %.f h.p',hp)
|