blob: 409144def4a565ae66538f793194325652f14d94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
//Mean effective pressure(in bar)
pim=5;
//Bore of the engine(in m)
D=0.18;
//Stroke of the engine(in m)
L=0.24;
//Total no of revolution
N=9000;
//Time taken for test(in minutes)
T=30;
//Total no of explosions
n=4450;
//Effective diameter of brake wheel(in m)
De=1;
//Net load on brake wheel(in kg)
W=40;
//Cooling water circulated (in kg)
Vc=80;
//Cooling water temperature rise(in C)
dwc=30;
//Specific heat of cooling water(in kJ/kgK)
Cvw=4.18;
//Volume of gas used at NTP(in m^3)
Vg=2.4;
//Total air used at pth pressure(in m^3)
v=36;
//Pressure of air(in mm of Hg)
Pg=720;
//Atmospheric pressure(in bar)
p=1;
//Ambient temperature(in K)
Ta=273;
//Temperature of air(in K)
T2=290;
//Density of air at NTP(in kg/m^3)
Pa=1.29;
//Total gas used at NTP(in m^3)
V=2.4;
//Universal gas constant(in J/kgK)
R=287;
//Exhaust gas temperaure(in K)
Tex=350+273;
//Specific heat of exhaust gas(in kJ/kgK)
Ceg=1;
|