blob: a5827806314aa143fa6adb453f062a0d9c4c600a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//scilab 5.4.1
clear;
clc;
printf("\t\t\tProblem Number 5.27\n\n\n");
// Chapter 5 : Properties Of Liquids And Gases
// Problem 5.27 (page no. 213)
// Solution
//Entering the Mollier chart at 900 Btu/lbm and estimating 90 F(near the 1.5-in. Hg dashed line) yields a constant moisture percent of 19.2%.
printf("The quality is %f percent\n",(1-0.192)*100);
//We show good agreement with the calculated value.
|