summaryrefslogtreecommitdiff
path: root/2510/CH19/EX19.2/Ex19_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '2510/CH19/EX19.2/Ex19_2.sce')
-rwxr-xr-x2510/CH19/EX19.2/Ex19_2.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/2510/CH19/EX19.2/Ex19_2.sce b/2510/CH19/EX19.2/Ex19_2.sce
new file mode 100755
index 000000000..768e8ce71
--- /dev/null
+++ b/2510/CH19/EX19.2/Ex19_2.sce
@@ -0,0 +1,11 @@
+//Variable declaration:
+//From example 19.1:
+T1 = 24 //Outside surface temperature ( C)
+Ri = 0.0191 //Insulation resistance (K/W)
+Q = 1383 //Revised heat transfer rate (Btu/h)
+
+//Calculation:
+T2 = T1-Q*Ri //Temperature at outer surface of insulation ( C)
+
+//Result:
+printf("The temperature at the outer surface of the insulation is : %.1f C .",T2)