blob: 322e037d984da43ea70e309210693995b7eb8185 (
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
|
//No of cylinders
k=4
//No of power stroke
n=3000/2
//Brake power
bp=50
//Mechanical efficiency
nm=0.85
//Radius (in mm)
r=100*(10^-3)
//Diameter (in mm)
d=100*(10^-3)
//Length (in mm)
l=100*(10^-3)
//Ambient temperature
t=340
//Universal gas constant
r1=287
//Compressure pressure ratio
cpr=1.6
//Pressure
p=(cpr*10^5)/(r1*t)
//Specific heat of gas constant pressure
Cp=1.005
//Efficiency
nv=0.85
|