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 /2762/CH8/EX8.4.1 | |
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 '2762/CH8/EX8.4.1')
-rwxr-xr-x | 2762/CH8/EX8.4.1/8_4_1.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/2762/CH8/EX8.4.1/8_4_1.sce b/2762/CH8/EX8.4.1/8_4_1.sce new file mode 100755 index 000000000..ab5853420 --- /dev/null +++ b/2762/CH8/EX8.4.1/8_4_1.sce @@ -0,0 +1,31 @@ +//Transport Processes and Seperation Process Principles
+//Chapter 8
+//Example 8.4-1
+//Evaporation
+//given data
+Tf=37.8+273.2;//temp in K
+xf=1/100;//wt % of salt in the feed
+xl=1.5/100;//wt % of salt in the extract
+//2 eqns to be solved
+F=9072;//feel flow rate
+xv=0;
+A=[1 1;xl xv];
+B=[F;(F*xf)];
+LV=inv(A)*B;
+L=LV(1,1);//liquid flow rate
+V=LV(2,1);//vapour flow rate
+Cpf=4.14;//heat capacity of the feed
+T1=273.2+100;//bp of water at 101.32 Kpa(as given)
+hf=Cpf*(Tf-T1);//enthalpy of feed
+hl=0;//enthalpy of extract as it is at datum
+hv=2257;//enthalpy of vapour
+lemda=2230;//enthalpy of steam;
+S=(L*hl+V*hv-F*hf)/lemda;//flow rate of steam
+q=S*lemda*(1000/3600);//heat transfered through the heating surface area
+U=1704;//heat transfer coefficient
+Ts=383.2;
+A=q/(U*(Ts-T1));//heat transfer area
+mprintf("i) extract flow rate= %f kg/h",L)
+mprintf("ii) vapour flow rate= %f kg/h",V)
+mprintf("iii) heat transfer area= %f m2",A)
+//end
|