summaryrefslogtreecommitdiff
path: root/2510/CH15/EX15.15/Ex15_15.sce
diff options
context:
space:
mode:
Diffstat (limited to '2510/CH15/EX15.15/Ex15_15.sce')
-rwxr-xr-x2510/CH15/EX15.15/Ex15_15.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2510/CH15/EX15.15/Ex15_15.sce b/2510/CH15/EX15.15/Ex15_15.sce
new file mode 100755
index 000000000..d635dbd84
--- /dev/null
+++ b/2510/CH15/EX15.15/Ex15_15.sce
@@ -0,0 +1,12 @@
+//Variable declaration:
+Q = 12700.0 //Heat transfer rate (W)
+Ud = 2220.0 //Dirty overall heat transfer coefficient (W/m^2.K)
+DTlm = 47.0 //Log mean difference temperature (u00b0C)
+rii = 0.013 //Inner radius of inner %pipe of the double %pipe heat exchanger (m)
+//Calculation:
+A = Q/(Ud*DTlm) //Heat transfer area (m^2)
+L = A/(2*%pi*rii) //Tube length (m)
+
+//Result:
+printf("The heat transfer area is : %.4f m^2.",A)
+printf("The length of the heat exchanger is : %.2f m.",L)