summaryrefslogtreecommitdiff
path: root/2762/CH9/EX9.7.2/9_7_2.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2762/CH9/EX9.7.2/9_7_2.sce
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 '2762/CH9/EX9.7.2/9_7_2.sce')
-rwxr-xr-x2762/CH9/EX9.7.2/9_7_2.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/2762/CH9/EX9.7.2/9_7_2.sce b/2762/CH9/EX9.7.2/9_7_2.sce
new file mode 100755
index 000000000..8e9aa0a8f
--- /dev/null
+++ b/2762/CH9/EX9.7.2/9_7_2.sce
@@ -0,0 +1,22 @@
+//Transport Processes and Seperation Process Principles
+//Chapter 9
+//Example 9.7-2
+//Drying of Process Materials
+//given data
+X=(1/1000)*[195 150 100 65 50 40]
+R=0.01*[151 121 90 71 37 27]
+Rinv=[]
+for i=1:6
+ Rinv(i)=1/R(1,i);
+
+end
+v=inttrap(X,Rinv)
+
+X1=0.38;
+XC=0.195;
+X2=0.040;
+Rc=1.51;
+A=18.58;
+Ls=399;
+t=(Ls*XC/(A*Rc))*(log(XC/X2)/log(%e));
+mprintf("Drying time= %f h",t)