summaryrefslogtreecommitdiff
path: root/1073/CH3/EX3.5/3_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '1073/CH3/EX3.5/3_5.sce')
-rwxr-xr-x1073/CH3/EX3.5/3_5.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/1073/CH3/EX3.5/3_5.sce b/1073/CH3/EX3.5/3_5.sce
new file mode 100755
index 000000000..554a2e09a
--- /dev/null
+++ b/1073/CH3/EX3.5/3_5.sce
@@ -0,0 +1,26 @@
+
+clc;
+clear;
+//Example 3.5
+//Given
+mu=3.9*10^-4 //Kinematic viscosity in sq m/s
+k=36.4*10^-3 //Thermal conductivity in W/(m.K)
+Npr=0.69
+u_inf=8 //[m/s]
+L=1 //Lenght of plate in [m]
+Nre_l=u_inf*L/mu
+//Since Nre_l is less than 3*10^5 ,the flow is laminar over the entire length of plate
+Nnu=0.664*sqrt(Nre_l)*Npr^(1.0/3.0) //=hL/k
+
+h=k*Nnu/L //w/sq m.K
+h=3.06 //Approximation [W/sq m.K]
+T_inf=523 //[K]
+Tw=351 //[K]
+W=0.3 //Width of plate [m]
+A=W*L //Area in [sq m]
+Q=h*A*(T_inf-Tw) // Rate of heat removal from one side in [W]
+printf("\nRate of heat removal is %f W\n",Q)
+//from two side:
+Q=2*Q //[W]
+printf("\n %f W heat should be removed continously from the plate",Q);
+