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.1/example_2_1.sce | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 530/CH2/EX2.1/example_2_1.sce (limited to '530/CH2/EX2.1/example_2_1.sce') diff --git a/530/CH2/EX2.1/example_2_1.sce b/530/CH2/EX2.1/example_2_1.sce new file mode 100755 index 000000000..4e7337d58 --- /dev/null +++ b/530/CH2/EX2.1/example_2_1.sce @@ -0,0 +1,22 @@ +clear; +clc; + +// A Textbook on HEAT TRANSFER by S P SUKHATME +// Chapter 2 +// Heat Conduction in Solids + +// Example 2.1 +// Page 27 +printf("Example 2.1, Page 27 \n\n") + +d_i=0.02; // [m] inner radius +d_o=0.04; // [m] outer radius +r_i=d_i/2; // [m] inner radius +r_o=d_o/2; // [m] outer radius +k=0.58; // [w/m K] thermal conductivity of tube material +t_i=70; //[degree C] +t_o=100; // [degree C] +l=1; // [m] per unit length +// using equation 2.1.5 +q=l*2*(%pi)*k*(t_i-t_o)/log(r_o/r_i); +printf("Heat flow per unit length is %f W/m",q); -- cgit