summaryrefslogtreecommitdiff
path: root/1808/CH3/EX3.21/Chapter3_Exampl21.sce
diff options
context:
space:
mode:
Diffstat (limited to '1808/CH3/EX3.21/Chapter3_Exampl21.sce')
-rw-r--r--1808/CH3/EX3.21/Chapter3_Exampl21.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/1808/CH3/EX3.21/Chapter3_Exampl21.sce b/1808/CH3/EX3.21/Chapter3_Exampl21.sce
new file mode 100644
index 000000000..0768747a3
--- /dev/null
+++ b/1808/CH3/EX3.21/Chapter3_Exampl21.sce
@@ -0,0 +1,19 @@
+clc
+clear
+//INPUT DATA
+l=30;//Stroke in cm
+d=17;//Bore in cm
+vc=440*10^6;//Clearance volume in m^3
+r=0.05;//cutoff ratio
+g=1.4;//constant
+
+//CALCULATIONS
+vs=((3.14*(d^2)*l)*10^6)/4;//swept volume in m^3
+v1=vs+vc;//Total volume in m^3
+v3=vc+(r*(v1-vc));//volume at point of cutoff
+ro=v3/vc;//cutoff ratio
+Rc=(vs+vc)/vc;//compression ratio
+nd=(1-(((1/(Rc^(g-1))))*(((ro^g)-1)/((ro-1)*g))))*100;//Air standard efficiency in precentage
+
+//OUTPUT
+printf('Air standard efficiency is %3.2f precentage',nd)