blob: a37118a372b3eba91d02ad5475d190a5481acb05 (
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
|
//Engine 1 (Naturally aspirated)
//Swept Volume (in litres)
Vs=3.6/1000
//Brake mean effective pressure (in bar)
pbm=9
//Speed(in rpm)
s=5000
//No of power strokes
n=s/2
//Compression ratio
cr=8
//Efficiency ratio (nith/nair-std)
nr=0.5
//Mechanical efficiency
nm=0.9
//Mass
m=250
//Engine 2 (supercharged)
//Break mean effective pressure
pbm1=12
//Compression ratio
cr1=6
//Mass
m1=260
//Calorific Value
CV=43000
//Efficiency air
nair=1
//Standard
std=cr^0.4
//Standard
std1=cr1^0.4
|