diff options
Diffstat (limited to '530/CH2/EX2.13.c/example_2_13c.sce')
-rwxr-xr-x | 530/CH2/EX2.13.c/example_2_13c.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/530/CH2/EX2.13.c/example_2_13c.sce b/530/CH2/EX2.13.c/example_2_13c.sce new file mode 100755 index 000000000..cc7978cfe --- /dev/null +++ b/530/CH2/EX2.13.c/example_2_13c.sce @@ -0,0 +1,27 @@ +clear;
+clc;
+
+// A Textbook on HEAT TRANSFER by S P SUKHATME
+// Chapter 2
+// Heat Conduction in Solids
+
+// Example 2.13(c)
+// Page 73
+printf("Example 2.13(c), Page 73 \n\n")
+
+D = 0.003 ; // [m]
+L = 0.03 ; // [m]
+h = 10 ; // [W/m^2]
+Tf = 20 ; // [C]
+T1 = 120 ; // [C]
+
+// (c) Teflon fin
+k = 0.35 ; // [W/m K]
+
+// For a circular cross section
+m = [4*h/(k*D)]^(1/2);
+mL = m*0.03 ;
+// T at x = L
+T = Tf + (T1-Tf)/cosh(m*L);
+printf("mL = %f \n",mL);
+printf("Temperature at the tip of fin made of teflon is %f degree C \n",T);
|