From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 530/CH2/EX2.13.c/example_2_13c.sce | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 530/CH2/EX2.13.c/example_2_13c.sce (limited to '530/CH2/EX2.13.c') 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); -- cgit