blob: 5a4dc4b17842d7a24315a41b8d675d0a0b6809cb (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc
// Given that
s = 6.76 // Entropy of saturated steam in kJ/kgK
printf("\n Example 9.2")
// From the table A.1(b) given in the book at s= 6.76 kJ/kgK
p = 0.6
t=158.85
v_g=0.3156
h_g=2756.8
printf("\n pressure = %f Mpa\n Temperature = %f degree centigrade\n Specific volume = %f m^3/kg\n enthalpy = %f kJ/kg",p,t,v_g,h_g)
|