summaryrefslogtreecommitdiff
path: root/534/CH13/EX13.4/13_4_Cylindrical_Furnace.sce
diff options
context:
space:
mode:
Diffstat (limited to '534/CH13/EX13.4/13_4_Cylindrical_Furnace.sce')
-rw-r--r--534/CH13/EX13.4/13_4_Cylindrical_Furnace.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/534/CH13/EX13.4/13_4_Cylindrical_Furnace.sce b/534/CH13/EX13.4/13_4_Cylindrical_Furnace.sce
new file mode 100644
index 000000000..a30032052
--- /dev/null
+++ b/534/CH13/EX13.4/13_4_Cylindrical_Furnace.sce
@@ -0,0 +1,23 @@
+clear;
+clc;
+printf('FUNDAMENTALS OF HEAT AND MASS TRANSFER \n Incropera / Dewitt / Bergman / Lavine \n EXAMPLE 13.4 Page 830 \n')// Example 13.4
+
+// Power required to maintain prescribed temperatures
+
+T3 = 300 ;//[K] Temperature of surrounding
+L = .15 ;//[m] Furnace Length
+T2 = 1650+273 ;//[K] Temperature of bottom surface
+T1 = 1350+273 ;//[K] Temperature of sides of furnace
+D = .075 ;//[m] Diameter of furnace
+stfncnstt = 5.670*10^-8; //[W/m^2.K^4] Stefan Boltzman Constant
+A2 = %pi*D^2/4 ;//[m] Area of bottom surface
+A1 = %pi*D*L ;//[m] Area of curved sides
+//From Figure 13.5 or Table 13.2, with ri/L = .25
+F23 = .056;
+F21 = 1 - F23; //By Summation Rule
+F12 = A2/A1*F21; //By reciprocity
+F13 = F12 ;//By Symmetry
+//From Equation 13.17 Heat balance
+q = A1*F13*stfncnstt*(T1^4 - T3^4) + A2*F23*stfncnstt*(T2^4 - T3^4);
+
+printf('\n Power required to maintain prescribed temperatures is = %i W',q); \ No newline at end of file