summaryrefslogtreecommitdiff
path: root/587/CH13/EX13.6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /587/CH13/EX13.6
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 '587/CH13/EX13.6')
-rwxr-xr-x587/CH13/EX13.6/example13_6.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/587/CH13/EX13.6/example13_6.sce b/587/CH13/EX13.6/example13_6.sce
new file mode 100755
index 000000000..457de6405
--- /dev/null
+++ b/587/CH13/EX13.6/example13_6.sce
@@ -0,0 +1,18 @@
+clear;
+clc;
+
+//Example13.6[Radiation Heat Transfer in a Black Furnace]
+//Given:-
+F12=0.2;
+A=5*5;//Area of 1 surface of cube[m^2]
+Tb=800,Tt=1500,Ts=500;//Temperature of base top and the side surfaces of the furbace[K]
+//Solution:-
+F11=0;
+Q11=0;
+F13=1-F11-F12;
+Q13=A*F13*(5.67*10^(-8))*((Tb^4)-(Ts^4));//[kW]
+disp("kW",round(Q13/1000),"The net rate of heat transfer from surface1 to surface3 is")
+Q12=A*F12*(5.67*10^(-8))*((Tb^4)-(Tt^4));//[kW]
+disp("kW",round(Q12/1000),"The net rate of radiation heat transfer from siurface1 to surface2 is")
+Q1=Q11+Q12+Q13;//[kW]
+disp("kW",round(Q1/1000),"Rhe net radiation heat transfer from the base surface is")