summaryrefslogtreecommitdiff
path: root/534/CH1/EX1.1
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /534/CH1/EX1.1
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '534/CH1/EX1.1')
-rw-r--r--534/CH1/EX1.1/1_1_Wall_Heat_Loss.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/534/CH1/EX1.1/1_1_Wall_Heat_Loss.sce b/534/CH1/EX1.1/1_1_Wall_Heat_Loss.sce
new file mode 100644
index 000000000..e92a71d6a
--- /dev/null
+++ b/534/CH1/EX1.1/1_1_Wall_Heat_Loss.sce
@@ -0,0 +1,20 @@
+clear;
+clc;
+printf('FUNDAMENTALS OF HEAT AND MASS TRANSFER \n Incropera / Dewitt / Bergman / Lavine \n EXAMPLE 1.1 Page 5 ')//Example 1.1
+// Find Wall Heat Loss - Problem of Pure Conduction Unidimensional Heat
+
+L=.15; //[m] - Thickness of conducting wall
+delT = 1400 - 1150; //[K] - Temperature Difference across the Wall
+A=.5*1.2; //[m^2] - Cross sectional Area of wall = H*W
+k=1.7; //[W/m.k] - Thermal Conductivity of Wall Material
+
+//Using Fourier's Law eq 1.2
+Q = k*delT/L; //[W/m^2] - Heat Flux
+
+q = A*Q; //[W] - Rate of Heat Transfer
+
+printf("\n \n Heat Loss through the Wall = %.2f W",q);
+//END
+
+
+