blob: 25ef422e8120a24a6f2fa3d6da0698c473defaac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clc
clear
//Initialization of variables
h=1100 //Btu/lb
P=100 //psia
//calculations
disp("From table 2 of keenan and keynes,")
hg=1187.2 //Btu/lb
hfg=888.8 //Btu/lb
y=-(h-hg)/hfg
//results
printf("The state is %d psia with a moisture content of %.2f percent",P,y*100)
|