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 /389/CH3/EX3.3/Example3_3.sce | |
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 '389/CH3/EX3.3/Example3_3.sce')
-rwxr-xr-x | 389/CH3/EX3.3/Example3_3.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/389/CH3/EX3.3/Example3_3.sce b/389/CH3/EX3.3/Example3_3.sce new file mode 100755 index 000000000..37eb6c59c --- /dev/null +++ b/389/CH3/EX3.3/Example3_3.sce @@ -0,0 +1,25 @@ +clear;
+clc;
+
+// Illustration 3.3
+// Page: 69
+
+printf('Illustration 3.3 - Page: 69\n\n');
+
+// solution
+
+// Heat transfer analog to Eqn. 3.12
+// The Eqn. remains the same with the dimensionless conc. ratio replaced by ((tl-to)/(ti-to))
+
+// The dimensionless group:
+// eta = 2*Dab*L/(3*del^2*velocity);
+// eta = (2/3)*(Dab/(del*velocity))*(L/del);
+// Ped = Peclet no. for mass transfer
+// eta = (2/3)*(1/Ped)*(L/del);
+
+// For heat transfer is replaced by
+// Peh = Peclet no. for heat transfer
+// eta = (2/3)*(1/Peh)*(L/del);
+// eta = (2/3)*(alpha/(del*velocity))*(L/del);
+// eta = (2*alpha*L)/(3*del^2*velocity);
+printf('Heat transfer analog to Eqn. 3.21 is eta = (2*alpha*L)/(3*del^2*velocity)');
\ No newline at end of file |