summaryrefslogtreecommitdiff
path: root/1226/CH12/EX12.7
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1226/CH12/EX12.7
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1226/CH12/EX12.7')
-rwxr-xr-x1226/CH12/EX12.7/EX12_7.jpgbin0 -> 114169 bytes
-rwxr-xr-x1226/CH12/EX12.7/EX12_7.sce26
2 files changed, 26 insertions, 0 deletions
diff --git a/1226/CH12/EX12.7/EX12_7.jpg b/1226/CH12/EX12.7/EX12_7.jpg
new file mode 100755
index 000000000..fb144cc1d
--- /dev/null
+++ b/1226/CH12/EX12.7/EX12_7.jpg
Binary files differ
diff --git a/1226/CH12/EX12.7/EX12_7.sce b/1226/CH12/EX12.7/EX12_7.sce
new file mode 100755
index 000000000..c6ac1bc1c
--- /dev/null
+++ b/1226/CH12/EX12.7/EX12_7.sce
@@ -0,0 +1,26 @@
+clc;funcprot(0);//EXAMPLE 12.7
+// Initialisation of Variables
+n=6;...............//No of cylinders
+afr=20;...........//Air fuel ratio
+d = 0.1;...............//cylinder bore in mm
+l=0.14;..............//Cylinder length in mm
+etav=0.8;............//Volumetric Efficiency
+pa=1;.................//Pressure at the beginning of the compression in bar
+ta = 300;.............//Temperature at the beginning of the compression in Kelvin
+theta = 20;...............//Crank travel in degree for injection
+N = 1500;...................//engine rpm
+rhof=960;.................//Fuel density in kg/m^3
+cf=0.67;................//Co efficient of discharge for injector
+pi=150;....................//injection pressure in bar
+pc=40;....................//combustion pressure in bar
+R=287;........................//gas constant for air in kJ/kg.K
+//calculations
+V=(%pi/4)*d^2*l*etav;......................//Volume of air supplied per cylinder per cycle in m^3
+ma=(pa*10^5*V)/(R*ta);.....................//Mass of this air at suction conditions in kg/cycle
+mf=ma/afr;............................//Mass of fuel in kg/cycle
+fipc = (theta*60)/(360*N);...........//Time taken for fuel injection per cycle in seconds
+MF = mf/fipc;........................//Mass of fuel injected into each cylinder per second
+disp(MF,"The mass of fuel injected into each cylinder per second in kg/s :")
+vf=cf*sqrt((2*(pi-pc)*10^5)/rhof);.............//fuel velocity injection in m/s
+d0=sqrt((MF*4)/(%pi*vf*rhof));..................//diameter of fuel orifice in m
+disp(d0*1000,"Diameter of the fuel orifice in mm :")