summaryrefslogtreecommitdiff
path: root/534/CH12/EX12.3
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /534/CH12/EX12.3
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '534/CH12/EX12.3')
-rw-r--r--534/CH12/EX12.3/12_3_Blackbody_Radiation.sce34
1 files changed, 34 insertions, 0 deletions
diff --git a/534/CH12/EX12.3/12_3_Blackbody_Radiation.sce b/534/CH12/EX12.3/12_3_Blackbody_Radiation.sce
new file mode 100644
index 000000000..7c8c97943
--- /dev/null
+++ b/534/CH12/EX12.3/12_3_Blackbody_Radiation.sce
@@ -0,0 +1,34 @@
+clear;
+clc;
+printf('FUNDAMENTALS OF HEAT AND MASS TRANSFER \n Incropera / Dewitt / Bergman / Lavine \n EXAMPLE 12.3 Page 741 \n')// Example 12.3
+
+// Spectral Emissive Power of a small aperture on the enclosure
+// wavelengths below which and above which 10% of the radiation is concentrated
+// Spectral emissive power and wavelength associated with maximum emission
+// Irradiation on a small object inside the enclosure
+
+T = 2000 ;//[K] temperature of surface
+stfncnstt = 5.67*10^-8 ;//[W/m^2.K^4] Stefan-Boltzmann constant
+E = stfncnstt*T^4; //[W/m^2]
+
+//From Table 12.1
+constt1 = 2195 ; //[micro-m.K]
+wl1 = constt1/T;
+//From Table 12.1
+constt2 = 9382 ; //[micro-m.K]
+wl2 = constt2/T;
+
+//From Weins Law, wlmax*T = consttmax = 2898 micro-m.K
+consttmax = 2898 ;//micro-m.K
+wlmax = consttmax/T;
+//from Table 12.1 at wlmax = 1.45 micro-m.K and T = 2000 K
+I = .722*10^-4*stfncnstt*T^5;
+Eb = %pi*I;
+
+G = E; //[W/m^2] Irradiation of any small object inside the enclosure is equal to emission from blackbody at enclosure temperature
+
+printf("\n (a) Spectral Emissive Power of a small aperture on the enclosure = %.2e W/m^2.Sr for each of the three directions \n (b) Wavelength below which 10percent of the radiation is concentrated = %.1f micro-m \n Wavelength above which 10percent of the radiation is concentrated = %.2f micro-m \n (c) Spectral emissive power and wavelength associated with maximum emission is %.2e micro-m and %.2e W/m^2.micro-m respectively \n (d) Irradiation on a small object inside the enclosure = %.2e W/m^2",E,wl1,wl2,Eb,wlmax,G);
+//END
+
+
+