diff options
Diffstat (limited to '1304/CH1/EX1.3/1_3.sce')
-rw-r--r-- | 1304/CH1/EX1.3/1_3.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1304/CH1/EX1.3/1_3.sce b/1304/CH1/EX1.3/1_3.sce new file mode 100644 index 000000000..5d4b86773 --- /dev/null +++ b/1304/CH1/EX1.3/1_3.sce @@ -0,0 +1,16 @@ +clear;
+clc;
+printf("\t\t\tExample Number 1.3\n\n\n");
+// limiting the heat loss through a fierglass insulating board
+// illustration1.
+// solution
+
+dT = 150;//[degree celsius] temperature drop
+k=0.05;//[W/m degree celcius] thermal conductivity of the board
+q = 100;//[W/m^2] rate of heat loss per unit area
+// heat flux is directly proportional to temperature difference and inversely to thickness
+L = (k*dT)/q; // [m]Thickness of board
+
+
+printf("The thickness of the fibre glass board to limit heat losses to 100W/m^2 should be %f m",L);
+
|