summaryrefslogtreecommitdiff
path: root/405/CH7/EX7.3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /405/CH7/EX7.3
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 '405/CH7/EX7.3')
-rwxr-xr-x405/CH7/EX7.3/7_3.sce28
1 files changed, 28 insertions, 0 deletions
diff --git a/405/CH7/EX7.3/7_3.sce b/405/CH7/EX7.3/7_3.sce
new file mode 100755
index 000000000..2f4cc1694
--- /dev/null
+++ b/405/CH7/EX7.3/7_3.sce
@@ -0,0 +1,28 @@
+clear;
+clc;
+printf("\t\t\tExample Number 7.3\n\n\n");
+// heat transfer from horizontal tube in water
+// Example 7.3 (page no.-333)
+// solution
+
+d = 0.02;// [m] diameter of heater
+Ts = 38;// [degree celsius] surface temperature of heater
+Tw = 27;// [degree celsius] water temperature
+// the film temperature is
+Tf = (Ts+Tw)/2;// [degree celsius]
+// from appendix A the properties of water are
+k = 0.630;// [W/m degree celsius] thermal conductivity
+// and the following term is particularly useful in obtaining the product GrPr product when it is multiplied by d^(3)*DT
+// g*Beta*rho^(2)*Cp/(mu*k) = 2.48*10^(10) [1/m^(3) degree celsius]
+K = 2.48*10^(10);// [1/m^(3) degree celsius]
+Gr_into_Pr = K*(Ts-Tw)*d^(3);
+// using table 7-1 (page number -328), we get
+C = 0.53;
+m = 1/4;
+// so that
+Nu = C*(Gr_into_Pr)^(1/4);
+h = Nu*k/d;// [W/square meter degree celsius] convection heat transfer coefficient
+// the heat transfer is thus
+q_by_L = h*%pi*d*(Ts-Tw);// [W/m]
+printf("free-convection heat loss per unit length of heater is %f W/m",q_by_L);
+