summaryrefslogtreecommitdiff
path: root/3785/CH5/EX5.8/Ex5_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '3785/CH5/EX5.8/Ex5_8.sce')
-rw-r--r--3785/CH5/EX5.8/Ex5_8.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/3785/CH5/EX5.8/Ex5_8.sce b/3785/CH5/EX5.8/Ex5_8.sce
new file mode 100644
index 000000000..4ffb4feab
--- /dev/null
+++ b/3785/CH5/EX5.8/Ex5_8.sce
@@ -0,0 +1,22 @@
+// Example 5_8
+clc;funcprot(0);
+// Given data
+V_f=200;// The speed of flying air plane in km/h
+rho=1.2;// The density of air in kg/m^3
+F=3*10^3;// The propulsive force in N
+D_p=2;// The diameter of the propeller in m
+
+// Calculation
+// (a)
+V_f=(V_f*10^3)/3600;// The speed of flying air plane in m/s
+A_p=(%pi*D_p^2)/4;// Area of propeller in m^2
+V_w=sqrt((V_f^2)+((2*F)/(rho*A_p)));// The wake speed in m/s
+printf("\nThe wake speed,V_w=%2.2f m/s",V_w);
+
+// (b)
+n_prop=(2*V_f)/(V_w+V_f)*100;// The propulsive efficiency in %
+printf("\nThe propulsive efficiency is %2.2f percentage",n_prop);
+// (c)
+
+P_p=(F*(V_w+V_f))/(2*10^3);// The engine powerin kW
+printf("\nThe engine power for this air craft is %3.1f kW",P_p);