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 /1073/CH6/EX6.2/6_2.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 '1073/CH6/EX6.2/6_2.sce')
-rwxr-xr-x | 1073/CH6/EX6.2/6_2.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1073/CH6/EX6.2/6_2.sce b/1073/CH6/EX6.2/6_2.sce new file mode 100755 index 000000000..bc91d98fd --- /dev/null +++ b/1073/CH6/EX6.2/6_2.sce @@ -0,0 +1,15 @@ +clc;
+clear;
+//Example 6.2
+m_dot=10000 //Weak liquor entering in [kg/h]
+fr_in=0.04 //Fraciton of caustic soda IN i.e 4%
+fr_out=0.25 //Fraciton of caustic soda OUT i.e 25%
+//Let mdash_dot be the kg/h of thick liquor leaving
+mdash_dot=fr_in*m_dot/fr_out //[kg/h]
+
+//Overall material balance
+//kg/h of feed=kg/h of water evaporated +kg/h of thick liquor
+//we=water evaporated in kg/h
+//Therefore
+we=m_dot-mdash_dot //[kg/h]
+printf("\n Capacity of evaporator is %d kg/h",we);
|