summaryrefslogtreecommitdiff
path: root/1703/CH12/EX12.5/12_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '1703/CH12/EX12.5/12_5.sce')
-rwxr-xr-x1703/CH12/EX12.5/12_5.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/1703/CH12/EX12.5/12_5.sce b/1703/CH12/EX12.5/12_5.sce
new file mode 100755
index 000000000..d4d9225c4
--- /dev/null
+++ b/1703/CH12/EX12.5/12_5.sce
@@ -0,0 +1,25 @@
+clear
+clc
+//initialisation of variables
+nm= 360
+d= 1.5 //in
+n= 100
+dp= 12 //in
+vm= 4.8 //ft/sec
+Tm= 52 //sec
+T= 16 //lb-ft
+t= 133 //lb ft
+//CALCULATIONS
+vp= n*dp*vm/(nm*d)
+Tp= Tm*dp^2*vp^2/(d^2*vm^2)
+N= Tm*vm*6080*100/(T*2*%pi*nm*60)
+W= Tp*vp*65000/10.67
+T1= W/(N*2*%pi*n*60)-t
+//RESULTS
+printf ('Speed of advance = %.2f knots ',vp)
+printf ('\n Thrust = %.f lb ',Tp)
+printf ('\n Efficiency = %.f per cent ',N)
+printf ('\n Torque = %.f lb ft ',T1)
+
+//The answer is a bit different due to rounding off error in textbook
+