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 /1910/CH1/EX1.1 | |
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 '1910/CH1/EX1.1')
-rwxr-xr-x | 1910/CH1/EX1.1/Chapter11.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1910/CH1/EX1.1/Chapter11.sce b/1910/CH1/EX1.1/Chapter11.sce new file mode 100755 index 000000000..85e657cd2 --- /dev/null +++ b/1910/CH1/EX1.1/Chapter11.sce @@ -0,0 +1,17 @@ +// Display mode
+mode(0);
+// Display warning for floating point exception
+ieee(1);
+clear;
+clc;
+disp("Introduction to heat transfer by S.K.Som, Chapter 1, Example 1")
+//The temprature of two faces of the slabs are T1=40°C & T2=20°C
+//The thickness of the slab(L) is 80mm or .08m
+//The thermal conductivity(k)of the material is .20 W/(m*K)
+T1=40;
+T2=20;
+L=.08;
+k=.20;
+//The steady state heat transfer rate per unit area through the thick slab is given by q=k(T1-T2)/L
+disp ("The steady state heat transfer rate per unit area through the thick slab is given by q=k(T1-T2)/L in W/m^2 ")
+q=k*(T1-T2)/L
|