summaryrefslogtreecommitdiff
path: root/3825/CH6/EX6.6/Ex6_6.sce
blob: a9244a103db763d6a4d2c1ded70eaca582a518b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
clc
h3=2686.16 //in kJ/kg
hf=1008.4 //in kJ/kg
hg=2802.3 //in kJ/kg
h2=h3
X2=(h2-hf)/(hg-hf)
mprintf("X2=%f\n",X2)//ans vary due to roundoff error
m1=1000 //mass of wet steam in grams 
mc=30 //mass of condensate  in grams
X1=X2*(1-(mc/m1))
mprintf("X1=%f",X1)//ans may vary due to roundoff error