summaryrefslogtreecommitdiff
path: root/1752/CH10/EX10.7
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1752/CH10/EX10.7
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 '1752/CH10/EX10.7')
-rwxr-xr-x1752/CH10/EX10.7/exa_10_7.sce36
1 files changed, 36 insertions, 0 deletions
diff --git a/1752/CH10/EX10.7/exa_10_7.sce b/1752/CH10/EX10.7/exa_10_7.sce
new file mode 100755
index 000000000..f34fc7b7c
--- /dev/null
+++ b/1752/CH10/EX10.7/exa_10_7.sce
@@ -0,0 +1,36 @@
+//Exa 10.7
+clc;
+clear;
+close;
+//given data
+format('v',15);
+Px1= 0.14;// in bar
+Px2= 0;
+P=1.013;// in bar
+Py1=P-Px1; // in bar
+Py2=P-Px2; // in bar
+D=8.5*10^-6;// in m^2/s
+d=5;// diameter in meter
+L=1;// in mm
+L=L*10^-3;//in meter
+M=78;// molecular weight
+Am_x= 1/4*%pi*d^2*M;
+R=8314;
+del_x=3;// thickness in mm
+del_x=del_x*10^-3;// in m
+T=20;// in degree C
+T=T+273;// in K
+P=P*10^5;// in N/m^2
+m_x= D*Am_x*P*log(Py2/Py1)/(R*T*del_x);
+// The mass of the benzene to be evaporated
+mass= 1/4*%pi*d^2*L;
+density=880;// in kg/m^3
+m_b= mass*density;
+toh=m_b/m_x;// in sec
+disp(toh,"Time taken for the entire organic compound to evaporate in seconds")
+
+
+// Note: Answer in the book is wrong
+
+
+