summaryrefslogtreecommitdiff
path: root/1052/CH20/EX20.2/202.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1052/CH20/EX20.2/202.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 '1052/CH20/EX20.2/202.sce')
-rwxr-xr-x1052/CH20/EX20.2/202.sce32
1 files changed, 32 insertions, 0 deletions
diff --git a/1052/CH20/EX20.2/202.sce b/1052/CH20/EX20.2/202.sce
new file mode 100755
index 000000000..e478eae1a
--- /dev/null
+++ b/1052/CH20/EX20.2/202.sce
@@ -0,0 +1,32 @@
+clc;
+//Example 20.2
+//page no 269
+printf("\n Example 20.2 page no 269\n\n");
+//ventilation required in an indoor work area where a toluene containing adhesive in a nanotechnology process is used.
+//equation for estimate the dilution air requirement
+C_a=80e-6//concentration of toluene
+q=3/8//volumatric flow rate, gal/h
+v=0.4//adhesive contains 4 volume % toluene
+S_g=0.87//specific gravity
+printf("\n C_a concentration of toluene=%f \n q volumatric flow rate q=%f gal/h \n S_g specific gravity=%f ",C_a,q,S_g);
+//mass flow rate of toluene
+m_dot_tol=q*v*S_g*(8.34)//factor 8.34 for lb
+printf("\n mass flow rate m_dot-tol=%f lb/h",m_dot_tol);
+m_dot_g=m_dot_tol*(454/60)//unit conversion of mass flow rate in g/min
+printf("\n mass flow rate in g/min m_dot_g=%f g/min",m_dot_g);
+M_w=92//molecular weight of toluene
+n_dot_tol=m_dot_g/M_w//no. of gm moles of toluene/min
+printf("\n no. of moles n_dot_tol=%f gmol/min",n_dot_tol);
+//resultant toluene vapor volumatric flow rate q_tol is directly calculated from th eidal gas law
+//applying ideal gas law
+R=0.08206//gas constant
+P=1//standard pressure
+T=293//standard temperature
+printf("\n R gas constant=%f atm.L/(gmol.K)\n T temperature=%f K\n P pressure =%f atm",R,T,P);
+q_tol=n_dot_tol*R*T/P//toluene vapor volumatric flow rate
+printf("\n toluene vapor vol. flow rate q_tol=%f L/min",q_tol);
+q_tol=2.15//round off value
+//the required diluent volumatric flow rtae
+K=5//dimensionless mixing factor
+q_dil=K*q_tol/(C_a)//diluent vol. flow rate
+printf("\n diluent vol. flow rate q_dil=%f L/min",q_dil);