summaryrefslogtreecommitdiff
path: root/534/CH12/EX12.8
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.8
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.8')
-rw-r--r--534/CH12/EX12.8/12_8_Glass_Cover.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/534/CH12/EX12.8/12_8_Glass_Cover.sce b/534/CH12/EX12.8/12_8_Glass_Cover.sce
new file mode 100644
index 000000000..c723347b9
--- /dev/null
+++ b/534/CH12/EX12.8/12_8_Glass_Cover.sce
@@ -0,0 +1,20 @@
+clear;
+clc;
+printf('FUNDAMENTALS OF HEAT AND MASS TRANSFER \n Incropera / Dewitt / Bergman / Lavine \n EXAMPLE 12.8 Page 761 \n')// Example 12.8
+
+// Total emissivity of cover glass to solar radiation
+
+T = 5800 ;//[K] temperature of surface
+e = .8;
+stfncnstt = 5.67*10^-8; //[W/m^2.K^4] Stefan-Boltzmann constant
+
+//From Table 12.1
+//For wl1 = .3 micro-m and T = 5800 K, At wl1*T = 1740 micro-m.K
+F0wl1 = .0335;
+//For wl1 = .3 micro-m and T = 5800 K, At wl2*T = 14500 micro-m.K
+F0wl2 = .9664;
+
+//Hence from equation 12.29
+t = .90*[F0wl2 - F0wl1];
+
+printf('\n Total emissivity of cover glass to solar radiation = %.2f',t); \ No newline at end of file