blob: 1259bbcbcd3ff1329ea8347f8c00b95a15020555 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clc
//initialisation of variables
t1=300 //temp in k
sf=2.9409 //kj/kgk
s1=6.44125 //kj/kgk
hf=-133.347 //kj/kg
h1=272.763 //kj/kg
w=-4690.5
//CALCULATIONS
mw=(t1*(sf-s1)-(hf-h1))
fom=mw/w
//RESULTS
printf('minimum work is %2fkj/kg of o2 liquefied',mw)
printf('\nfigure of merit is %2f',fom)
//no 8.17 and 8.19 in tb print mistake
|