summaryrefslogtreecommitdiff
path: root/3685/CH20/EX20.6/Ex20_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3685/CH20/EX20.6/Ex20_6.sce')
-rw-r--r--3685/CH20/EX20.6/Ex20_6.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3685/CH20/EX20.6/Ex20_6.sce b/3685/CH20/EX20.6/Ex20_6.sce
new file mode 100644
index 000000000..2b294f86a
--- /dev/null
+++ b/3685/CH20/EX20.6/Ex20_6.sce
@@ -0,0 +1,15 @@
+clc
+// Given that
+no = 6 // No of cylinders
+Vs = 1.75 // Stroke volume in litres
+P = 26.25 // Power developed in kW
+N = 506 // Speed in rpm
+mep = 600 // Mean effectine pressure in kN/m^2
+printf("\n Example 20.6\n")
+n = P*60000/(no*mep*1000*Vs*(10^-3))
+n_e = N/2
+n_m = n_e - n
+printf("\nAvg no of misfire = %d",n_m)
+
+
+