summaryrefslogtreecommitdiff
path: root/839/CH27/EX27.2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /839/CH27/EX27.2
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '839/CH27/EX27.2')
-rwxr-xr-x839/CH27/EX27.2/Example_27_2.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/839/CH27/EX27.2/Example_27_2.sce b/839/CH27/EX27.2/Example_27_2.sce
new file mode 100755
index 000000000..c50ab771e
--- /dev/null
+++ b/839/CH27/EX27.2/Example_27_2.sce
@@ -0,0 +1,27 @@
+//clear//
+clear;
+clc;
+
+//Example 27.2
+//Given
+//A = MgSO4, B = MgSO4.7H2O and C = H2O
+T = 120; //[F]
+wA = 0.325;
+
+//Solution
+//From Fig 27.4
+//Enthalpy coordinate of the point wA
+H1 = -33; //[Btu/lb]
+//Enthalpy coordinate of the final magma at concentration wA
+H2 = -78.4; //[Btu/lb]
+//Per hundred pouds of original solution the change in enthalpy
+F = 100; //[lb]
+delta_H = F*(H1-H2); //[Btu]
+//Applying "center-of gravity principle" to 70 F isotherm in Fig. 27.3
+C_ML = 0.259;
+C_CRY = 0.488;
+//Crystals are
+Cry = F*(wA-C_ML)/(C_CRY-C_ML); //[lb/100lb slurry]
+//The heat evolved per ton of crystals is
+H = delta_H/Cry*2000; //[Btu/ton]
+disp('Btu/ton',H,'The heat evolved per ton of crystals is')