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.9/6_9.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.9/6_9.sce')
-rwxr-xr-x | 1073/CH6/EX6.9/6_9.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/1073/CH6/EX6.9/6_9.sce b/1073/CH6/EX6.9/6_9.sce new file mode 100755 index 000000000..99b624aa5 --- /dev/null +++ b/1073/CH6/EX6.9/6_9.sce @@ -0,0 +1,24 @@ +clc;
+clear;
+//Example 6.9
+Tf=298 //Feed temperature in [K]
+T_dash=373 //[K]
+Cpf=4 //[kJ/kg.K]
+fc=0.2 //Final concentration of salt
+ic=0.05 //Initial concentration
+mf_dot=20000 //[kg/h] Feed to evaporator
+mdash_dot=ic*mf_dot/fc //Thick liquor [kg/h]
+mv_dot=mf_dot-mdash_dot //Water evaporated in [kg/h]
+lambda_s=2185 //[kJ/kg]
+lambda=2257 //[kJ/kg]
+bpr=7 //Boiling point rise[K]
+T=T_dash+bpr //Boiling point of solution in[K]
+Ts=39 //Temperature of condensing steam in [K]
+ms_dot=(mf_dot*Cpf*(T-Tf)+mv_dot*lambda)/lambda_s //Steam consumption in [kg/h]
+eco=mv_dot/ms_dot //Economy of evaporator
+Q=ms_dot*lambda_s //[kJ/h]
+Q=Q*1000/3600 //[J/s]
+printf("\nHeat load is %d W or J/s",round(Q));
+printf("\n\nEconomy of evaporator is %f ",eco);
+
+printf("\n\nNOTE:Again there is a calcualtion mistake in book at line 19 of code,it is written as 4041507.1 instead of 40415071 \n\n");
|