summaryrefslogtreecommitdiff
path: root/530/CH9/EX9.4.a/example_9_4a.sce
diff options
context:
space:
mode:
Diffstat (limited to '530/CH9/EX9.4.a/example_9_4a.sce')
-rwxr-xr-x530/CH9/EX9.4.a/example_9_4a.sce28
1 files changed, 28 insertions, 0 deletions
diff --git a/530/CH9/EX9.4.a/example_9_4a.sce b/530/CH9/EX9.4.a/example_9_4a.sce
new file mode 100755
index 000000000..5f5a3ff5d
--- /dev/null
+++ b/530/CH9/EX9.4.a/example_9_4a.sce
@@ -0,0 +1,28 @@
+clear;
+clc;
+
+// A Textbook on HEAT TRANSFER by S P SUKHATME
+// Chapter 9
+// Mass Transfer
+
+
+// Example 9.4(a)
+// Page 356
+printf("Example 9.4(a), Page 356 \n \n");
+
+L = 1 ; // [m]
+D = 0.005 ; // [m]
+Pa1 = 1 ; // [atm]
+Pa2 = 0 ;
+R = 8314 ;
+T = 298 ; // [K]
+
+// Assuming Equimolal counter diffusion
+// From Table 9.1
+Dab = 2.80*10^-5 ; // [m^2/s]
+// Substituing in eqn 9.4.12
+Na = -[Dab/(R*T)*(Pa2-Pa1)*(1.014*10^5)/L]*(%pi*(D/2)^2);
+R_NH3 = Na*17 ; // [kg/s]
+
+printf("Na = -Nb = %e (kg mole)/m^2 s\n",Na);
+printf("Rate at which ammonia is lost through the tube = %e kg/s \n",R_NH3); \ No newline at end of file