summaryrefslogtreecommitdiff
path: root/2510/CH11/EX11.11
diff options
context:
space:
mode:
Diffstat (limited to '2510/CH11/EX11.11')
-rwxr-xr-x2510/CH11/EX11.11/Ex11_11.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2510/CH11/EX11.11/Ex11_11.sce b/2510/CH11/EX11.11/Ex11_11.sce
new file mode 100755
index 000000000..ded3aa878
--- /dev/null
+++ b/2510/CH11/EX11.11/Ex11_11.sce
@@ -0,0 +1,12 @@
+//Variable declaration:
+//Froma example 11.10:
+Q = 880.0 //Heat loss due to radiation (Btu/h)
+A = 10.0 //Area of pipe (ft^2)
+TH = 140.0 //Absolute outside temperature of pipe (°F)
+TC = 60.0 //Absolute temperature of surrounding atmosphere (°F)
+
+//Calculation:
+hr = Q/(A*(TH-TC)) //Radiation heat transfer coefficient (Btu/h.ft^2.°F)
+
+//Result:
+printf("The radiation heat transfer coefficient is : %.1f Btu/h.ft^2.°F.",hr)