summaryrefslogtreecommitdiff
path: root/3821/CH10/EX10.8/Example10_8.sce
blob: f46731430c013c28bece85627e52c197e0fbde78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/////////Chapter 10 Properties Of Steam
///Example 10.8 Page No:188
////Find Mass of steam
///Input data
clc;
clear;
P=25;           //Absolute pressure
ts=223.9;       //Volume
//Frome steam table (pressure basis at 25 bar) 
vf=0.001197;    //In m^3/Kg  
vg=0.0799;      //In m^3/Kg 
v=8;            //In m^3/Kg 


///Calculation
m=v/vg;         //Mass of steam in Kg   

///Output
printf('Mass of steam=%f Kg \n ',m);