diff options
Diffstat (limited to '2417/CH5/EX5.27/Ex5_27.sce')
-rwxr-xr-x | 2417/CH5/EX5.27/Ex5_27.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2417/CH5/EX5.27/Ex5_27.sce b/2417/CH5/EX5.27/Ex5_27.sce new file mode 100755 index 000000000..a58278063 --- /dev/null +++ b/2417/CH5/EX5.27/Ex5_27.sce @@ -0,0 +1,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.
|