blob: f02476362f8c12f7385e92e02b463e769ecfad05 (
plain)
1
2
3
4
5
6
7
|
v = 0.09; vf = 0.001177; vg = 0.09963;
x = (v-vf)/(vg-vf);
hf = 908.79; hfg = 1890.7;
sf = 2.4474; sfg = 3.8935;
h = hf+(x*hfg);
s = sf+(x*sfg);
disp("kJ/kg and kJ/kg K respectively",s,"and",h,"The enthalpy and entropy og the system are")
|