summaryrefslogtreecommitdiff
path: root/587/CH13/EX13.9/example13_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '587/CH13/EX13.9/example13_9.sce')
-rwxr-xr-x587/CH13/EX13.9/example13_9.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/587/CH13/EX13.9/example13_9.sce b/587/CH13/EX13.9/example13_9.sce
new file mode 100755
index 000000000..301966d2c
--- /dev/null
+++ b/587/CH13/EX13.9/example13_9.sce
@@ -0,0 +1,15 @@
+clear;
+clc;
+
+//Example13.9[Radiation Heat Transfer in a Triangular Furnace]
+//Given:-
+A1=1,A2=1,A3=1;//Area of each side[m^2]
+T1=600,T2=1000;//[K]
+e=0.7;
+F12=0.5,F13=0.5,F23=0.5;//Symmetry
+//Solution:-
+Eb1=5.67*10^(-8)*(T1^4);//[W/m^2]
+Eb2=5.67*10^(-8)*(T2^4);//[W/m^2]
+Q=(Eb2-Eb1)/(((1-e)/(A1*e))+((((A1*F12)+(1/((1/(A1*F13))+(1/(A2*F23))))))^(-1)));//[kW]
+disp("kW",round(Q/1000),"Heat at the rate of")
+disp("must be supplied to the heated surface per unit lemgth of the duct to maintain steady operation in the furnace") \ No newline at end of file