summaryrefslogtreecommitdiff
path: root/1073/CH3/EX3.14
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1073/CH3/EX3.14
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 '1073/CH3/EX3.14')
-rwxr-xr-x1073/CH3/EX3.14/3_14.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/1073/CH3/EX3.14/3_14.sce b/1073/CH3/EX3.14/3_14.sce
new file mode 100755
index 000000000..2876908b6
--- /dev/null
+++ b/1073/CH3/EX3.14/3_14.sce
@@ -0,0 +1,21 @@
+clc;
+clear;
+//Example 3.14
+v=2.08*10^-5 //[sq m/s]
+k=0.03 //W/(m.K)
+Npr=0.697 //Prandtl number
+D=0.06 //[m]
+u_inf=0.3 //[m/s]
+Nre=D*u_inf/v //Reynolds number
+//Average nusselt number is given by:
+Nnu=0.37*(Nre^0.6);
+h=Nnu*k/D //W/sq m.K
+Tw=400 //[K]
+T_inf=300 //[K]
+D=0.06 //[m]
+r=0.03 //[m]
+A=4*%pi*r^2 //Area in [sq m]
+Q=h*A*(Tw-T_inf) //[W]
+per=Q*100/100 //Percent of heat lost by forced convection
+printf("Heat transfer rate is %f W,And percentage of power lost by convectio is: %f percent ",Q,per);
+ \ No newline at end of file