summaryrefslogtreecommitdiff
path: root/1226/CH7/EX7.5/EX7_5.sce
blob: 7a92fa227f381a6583e5b0e7d54d1d67c7ce3341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
clc;funcprot(0)//EXAMPLE 7.5

//Initializing the variables
n=6;................//No of cylinders
vsi=730*(10^(-6));..........//Piston displacement per cylinder in m^3
BP=80;.............//Power produced per cylinder in kW
N=3100;...........//Engine rpm
C=44*(10^6);...........//Calorific value of petrol in J/kg
Pc=28;........//Petrol consumed per hour in kg
afr = 13/1;.......//air fuel ratio
pi=0.88*(10^5);..............//Intake pressure in pa
T=300;............//Intake temperature in Kelvin
R = 287;.........//gas constant in J/kg.K
//calculations
ma = (Pc*afr)/60;...........//air comsumed
rhoa = pi/(R*T);.......//Density of air
etaV=ma/(rhoa*vsi*n*(N/2));
disp(etaV*100,"The volumetric efficiency is (%):")
mf = Pc/3600;...............//Fuel consumed per sec
etaBT = (BP*1000)/(mf*C);
disp (etaBT*100,"The brake thermal efficiency is (%):")
T=(BP*60*1000)/(2*(%pi)*N);
disp (T,"The brake torque (Nm):")