summaryrefslogtreecommitdiff
path: root/2510/CH12/EX12.9
diff options
context:
space:
mode:
Diffstat (limited to '2510/CH12/EX12.9')
-rwxr-xr-x2510/CH12/EX12.9/Ex12_9.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2510/CH12/EX12.9/Ex12_9.sce b/2510/CH12/EX12.9/Ex12_9.sce
new file mode 100755
index 000000000..0a6ab11ee
--- /dev/null
+++ b/2510/CH12/EX12.9/Ex12_9.sce
@@ -0,0 +1,16 @@
+//Variable declaration:
+Qs1 = 9800.0 //Heat flux (W/m^2)
+Ts1 = 102.0 //Original surface temperature (°C)
+Ts2 = 103.0 //New surface temperature (°C)
+Tsat = 100.0 //Saturation temperature (°C)
+
+//Calculation:
+h1 = Qs1/(Ts1-Tsat) //Original heat transfer coefficient (W/m^2.K)
+DT1 = (Ts1 - Tsat) //Original excess temperature (°C)
+DT2 = (Ts2 - Tsat) //New excess temperature (°C)
+n = 0.25 //Value of n for laminar flow
+h2 = h1*(DT2/DT1)**(n) //New heat transfer coefficient (W/m^2.K)
+Qs2 = h2*(Ts2-Tsat) //New heat flux (W/m^2)
+
+//Result:
+printf("The new heat flux is : %.0f W/m^2.K .",Qs2)