diff options
Diffstat (limited to '3511/CH7/EX7.4/Ex7_4.sce')
-rw-r--r-- | 3511/CH7/EX7.4/Ex7_4.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3511/CH7/EX7.4/Ex7_4.sce b/3511/CH7/EX7.4/Ex7_4.sce new file mode 100644 index 000000000..4ea4e7389 --- /dev/null +++ b/3511/CH7/EX7.4/Ex7_4.sce @@ -0,0 +1,13 @@ +clc;
+cj=2700; // The effective jet velocity from jet engine in m/s
+ci=1350; // Flight velocity in m/s
+ma=78.6; // Air flow rate in m/s
+
+a=ci/cj;
+F=ma*(cj-ci); // Thrust
+P=F*ci; // Thrust power
+eff_P=2*a/(a+1); // Propulsive efficiency
+
+disp ("N",F,"(i).Thrust = ");
+disp ("MN",P/10^6,"(ii). Thrust power = ");
+disp ("%",eff_P*100,"(iii). Propulsive efficiency = ");
|