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/CH3/EX3.8 | |
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/CH3/EX3.8')
-rwxr-xr-x | 530/CH3/EX3.8/example_3_8.sce | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/530/CH3/EX3.8/example_3_8.sce b/530/CH3/EX3.8/example_3_8.sce new file mode 100755 index 000000000..08c154f7e --- /dev/null +++ b/530/CH3/EX3.8/example_3_8.sce @@ -0,0 +1,33 @@ +clear;
+clc;
+
+// A Textbook on HEAT TRANSFER by S P SUKHATME
+// Chapter 3
+// Thermal Radiation
+
+// Example 3.8
+// Page 135
+printf("Example 3.8, Page 135 \n\n")
+
+// From eqn 3.7.5 or fig 3.19
+F65 = 0.22;
+F64 = 0.16;
+F35 = 0.32;
+F34 = 0.27;
+A1 = 3; // [m^2]
+A3 = 3; // [m^2]
+A6 = 6; // [m^2]
+
+// Using additive and reciprocal relations
+// We have F12 = F16 - F13
+
+F61 = F65 - F64 ;
+F31 = F35 - F34 ;
+
+F16 = A6/A1*F61 ;
+F13 = A3/A1*F31 ;
+
+F12 = F16 - F13;
+
+printf("F_1-2 = %f",F12);
+
|