blob: e9acf05e9cd4f4cbff60ad992cfb3016091e98c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
clc
//initialisation of variables
R= 53.31
T= 80 //F
P2= 90//psia
P1= 15 //psia
n= 1.4
n1= 1.3
cv= 0.171
//CALCULATIONS
Wk= (n/(n-1))*R*(T+460)*((P2/P1)^((n-1)/n)-1)
Wn= (n1/(n1-1))*R*(T+460)*((P2/P1)^((n1-1)/n1)-1)
Wt= R*(T+460)*log(P2/P1)
nc= Wt/Wn
nc1=Wk/Wn
////RESULTS
printf ('Thermal effeciency= %.2f ',nc)
printf (' \n Isothermal effeciency= %.2f ',nc1)
|