summaryrefslogtreecommitdiff
path: root/581/CH8/EX8.3/Example8_3.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /581/CH8/EX8.3/Example8_3.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 '581/CH8/EX8.3/Example8_3.sce')
-rwxr-xr-x581/CH8/EX8.3/Example8_3.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/581/CH8/EX8.3/Example8_3.sce b/581/CH8/EX8.3/Example8_3.sce
new file mode 100755
index 000000000..6afb5398a
--- /dev/null
+++ b/581/CH8/EX8.3/Example8_3.sce
@@ -0,0 +1,26 @@
+
+clear;
+clc;
+
+printf("\t Example 8.3\n");
+
+T1=323; //wall temp.,K
+T2=293; //air temp.,K
+H=0.3; //height of wall, m
+v1=16.45*10^-6; // molecular diffusivity, m^2/s
+b=1/T2; // b=1/v*d(R*T/p)/dt=1/To characterisation constant of thermal expansion of solid, K^-1
+v2=2.318*10^-5; //molecular diffusivity, m^2/s
+Pr=0.71; //prandtl no.
+
+ Ral=9.8*b*(T1-T2)*H^3/((1.566*10^-5)*(2.203*10^-5)); // Rayleigh no.
+ Nu=0.678*Ral^(0.25)*(Pr/(0.952+Pr))^(1/4); // nusselt no.
+ h=Nu*0.0267/H // average heat transfer coefficient, W/m^2/K
+
+ Nu1=0.68+0.67*((Ral)^(1/4)/(1+(0.492/Pr)^(9/16))^(4/9)); //churchill correlation
+
+ h1=Nu1*(0.0267/0.3)-.11; //average heat transfer coefficient, W/m^2/K
+
+
+printf("\t correlation average heat transfer coefficient is :%.2f W/m^2/K\n",h1)
+printf("\t the prediction is therefore within 5 percent of corelation .we should use the latter result in preference to the theoritical one, although the difference is slight.")
+ //end \ No newline at end of file