diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /530/CH2/EX2.13.a/example_2_13a.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '530/CH2/EX2.13.a/example_2_13a.sce')
-rwxr-xr-x | 530/CH2/EX2.13.a/example_2_13a.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/530/CH2/EX2.13.a/example_2_13a.sce b/530/CH2/EX2.13.a/example_2_13a.sce new file mode 100755 index 000000000..c34632f62 --- /dev/null +++ b/530/CH2/EX2.13.a/example_2_13a.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(a)
+// Page 73
+printf("Example 2.13(a), Page 73 \n\n")
+
+D = 0.003 ; // [m]
+L = 0.03 ; // [m]
+h = 10 ; // [W/m^2]
+Tf = 20 ; // [C]
+T1 = 120 ; // [C]
+
+// (a) Copper fin
+k = 350 ; // [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 copper is %f degree C \n",T);
|