From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 534/CH6/EX6.3/6_3_Convection_Coefficient.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 534/CH6/EX6.3/6_3_Convection_Coefficient.sce (limited to '534/CH6/EX6.3') diff --git a/534/CH6/EX6.3/6_3_Convection_Coefficient.sce b/534/CH6/EX6.3/6_3_Convection_Coefficient.sce new file mode 100644 index 000000000..92f162cc5 --- /dev/null +++ b/534/CH6/EX6.3/6_3_Convection_Coefficient.sce @@ -0,0 +1,18 @@ +clear; +clc; +printf('FUNDAMENTALS OF HEAT AND MASS TRANSFER \n Incropera / Dewitt / Bergman / Lavine \n EXAMPLE 6.3 Page 357 \n'); //Example 6.3 +// Convection Mass Transfer coefficient + +//Operating Conditions + +Dab = .288*10^-4; //[m^2/s] Table A.8 water vapor-air (319K) +pas = .1; //[atm] Partial pressure at surface +pasurr = .02; //[atm] Partial pressure at infinity +y0 = .003; //[m] Tangent at y = 0 intercepts y axis at 3 mm + +//From Measured Vapor Pressure Distribution +delp = (0 - pas)/(y0 - 0); //[atm/m] +hmx = -Dab*delp/(pas - pasurr); //[m/s] + +printf("\n\n Convection Mass Transfer coefficient at prescribed location = %.4f m/s", hmx); +//END \ No newline at end of file -- cgit