diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2417/CH10/EX10.13/Ex10_13.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2417/CH10/EX10.13/Ex10_13.sce')
-rwxr-xr-x | 2417/CH10/EX10.13/Ex10_13.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2417/CH10/EX10.13/Ex10_13.sce b/2417/CH10/EX10.13/Ex10_13.sce new file mode 100755 index 000000000..f02de3f09 --- /dev/null +++ b/2417/CH10/EX10.13/Ex10_13.sce @@ -0,0 +1,21 @@ +//scilab 5.4.1
+clear;
+clc;
+printf("\t\t\tProblem Number 10.13\n\n\n");
+// Chapter 10 : Refrigeration
+// Problem 10.13 (page no. 536)
+// Solution
+
+//A VACUUM REFRIGERATION SYSTEM
+//A vacuum refrigeration system is used to cool water from 90F to 45F
+h1=58.07; //Unit:Btu/lbm //enthalpy
+h2=13.04; //Unit:Btu/lbm //enthalpy
+h3=1081.1; //Unit:Btu/lbm //enthalpy
+m1=1; //mass //unit:lbm
+//m2=1-m3 //unit:lbm
+//Now, m1*h1 = m2*h2 + m3*h3
+//Putting the values and arranging the equation,
+m3=(m1*h1-h2)/(h3+h2); //The mass of vapour that must be removed per pound //unit:lbm
+printf("The mass of vapour that must be removed per pound of entering water is %f lbm",m3);
+
+
|