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.5 | |
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.5')
-rwxr-xr-x | 530/CH3/EX3.5/example_3_5.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/530/CH3/EX3.5/example_3_5.sce b/530/CH3/EX3.5/example_3_5.sce new file mode 100755 index 000000000..8d40922d7 --- /dev/null +++ b/530/CH3/EX3.5/example_3_5.sce @@ -0,0 +1,25 @@ +clear;
+clc;
+
+// A Textbook on HEAT TRANSFER by S P SUKHATME
+// Chapter 3
+// Thermal Radiation
+
+// Example 3.5
+// Page 124
+printf("Example 3.5, Page 124 \n\n")
+
+l1 = 0.5 ; // wavelength, [um]
+l2 = 1.5 ; // wavelength, [um]
+l3 = 2.5 ; // wavelength, [um]
+l4 = 3.5 ; // wavelength, [um]
+H1 = 2500 ; // [W/m^2 um]
+H2 = 4000 ; // [W/m^2 um]
+H3 = 2500 ; // [W/m^2 um]
+
+// Since the irridiation is diffuse, the spectral intensity is given by eqn 3.4.14 and 3.4.8
+// Integrating i_lambda over the directions of the specified solid angle and using fig 3.12
+
+
+flux = 3/4*[H1*(l2-l1)+H2*(l3-l2)+H3*(l4-l3)];
+printf("Rate at which radiation is incident on the surface = %f W/m^2",flux);
|