diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /405/CH3/EX3.2 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '405/CH3/EX3.2')
-rwxr-xr-x | 405/CH3/EX3.2/3_2.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/405/CH3/EX3.2/3_2.sce b/405/CH3/EX3.2/3_2.sce new file mode 100755 index 000000000..5383b28e1 --- /dev/null +++ b/405/CH3/EX3.2/3_2.sce @@ -0,0 +1,22 @@ +clear;
+clc;
+printf("\t\t\tExample Number 3.2\n\n\n");
+// cubical furnace
+// illustration3.2
+// solution
+
+a = 0.5;// [m] length of side of cubical furnace
+Ti = 500;// [degree celsius] inside furnace temperature
+To = 50;// [degree celsius] outside temperature
+k = 1.04;// [W/m per degree celsius] thermal conductivity of fireclay brick
+t = 0.10;// [m] wall thickness
+A = a*a;// [square meter] area of one face
+// we compute the total shape factor by adding the shape factors for the walls, edges and corners
+Sw = A/t;// [m] shape factor for wall
+Se = 0.54*a;// [m] shape factor for edges
+Sc = 0.15*t;// [m] shape factor for corners
+// there are six wall sections, twelve edges and eight corners, so the total shape factor S is
+S = 6*Sw+12*Se+8*Sc;// [m]
+// the heat flow is calculated as
+q = k*S*(Ti-To);// [W]
+printf("heat lost through the walls is %f kW",q/1000);
|