summaryrefslogtreecommitdiff
path: root/1309/CH2/EX2.4
diff options
context:
space:
mode:
Diffstat (limited to '1309/CH2/EX2.4')
-rwxr-xr-x1309/CH2/EX2.4/Result2_4.pdfbin0 -> 88714 bytes
-rwxr-xr-x1309/CH2/EX2.4/ch2_4.sce13
2 files changed, 13 insertions, 0 deletions
diff --git a/1309/CH2/EX2.4/Result2_4.pdf b/1309/CH2/EX2.4/Result2_4.pdf
new file mode 100755
index 000000000..7b556f3f2
--- /dev/null
+++ b/1309/CH2/EX2.4/Result2_4.pdf
Binary files differ
diff --git a/1309/CH2/EX2.4/ch2_4.sce b/1309/CH2/EX2.4/ch2_4.sce
new file mode 100755
index 000000000..4bc174774
--- /dev/null
+++ b/1309/CH2/EX2.4/ch2_4.sce
@@ -0,0 +1,13 @@
+clc;
+clear;
+printf("\t\t\tChapter2_example4\n\n\n");
+// determination of the heat transfer through the pipe wall per unit length of pipe.
+k=14.4; // thermal conductivity of 304 stainless steel in W/(m.K) from appendix table B2
+// dimensions of steel pipes in cm from appendix table F1
+D2=32.39;
+D1=29.53;
+T1=40;
+T2=38;
+Qr_per_length=(2*3.14*k)*(T1-T2)/log(D2/D1);
+format(6);
+printf("\nThe heat transfer through the pipe wall per unit length of pipe is %.1f W/m = %.2f kW/m",Qr_per_length,Qr_per_length/1000);