summaryrefslogtreecommitdiff
path: root/1752/CH7/EX7.12/exa_7_12.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1752/CH7/EX7.12/exa_7_12.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1752/CH7/EX7.12/exa_7_12.sce')
-rwxr-xr-x1752/CH7/EX7.12/exa_7_12.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/1752/CH7/EX7.12/exa_7_12.sce b/1752/CH7/EX7.12/exa_7_12.sce
new file mode 100755
index 000000000..e99b97a70
--- /dev/null
+++ b/1752/CH7/EX7.12/exa_7_12.sce
@@ -0,0 +1,25 @@
+//Exa 7.12
+clc;
+clear;
+close;
+//given data
+T1=500;// in K
+T2=300;// in K
+sigma=5.67*10^-8;
+A=2;// surface area of each plate in m^2
+//(a) If the plates are perfectly black
+F12=1;
+q12=sigma*A*F12*(T1^4-T2^4);
+disp(q12,"Radiation heat transfer between two black parellel plates in watt");
+
+//(b) If the plates are gray surface
+//in this case
+F12=1;
+//A1=A2, so
+A1byA2=1
+epsilon1=.4;
+epsilon2=epsilon1;
+//Fg12=1/(1/epsilon1+(1/epsilon2-1)*A1byA2);
+Fg12=1/((1-epsilon1)/epsilon1 + 1/F12 + [(1-epsilon2)/epsilon2]*A1byA2);
+q12=sigma*A*Fg12*(T1^4-T2^4);// in W
+disp(q12,"Heat transfer rate in watt")