summaryrefslogtreecommitdiff
path: root/2873/CH12/EX12.5
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2873/CH12/EX12.5
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2873/CH12/EX12.5')
-rwxr-xr-x2873/CH12/EX12.5/Ex12_5.jpgbin0 -> 260579 bytes
-rwxr-xr-x2873/CH12/EX12.5/Ex12_5.sce27
2 files changed, 27 insertions, 0 deletions
diff --git a/2873/CH12/EX12.5/Ex12_5.jpg b/2873/CH12/EX12.5/Ex12_5.jpg
new file mode 100755
index 000000000..b98523d99
--- /dev/null
+++ b/2873/CH12/EX12.5/Ex12_5.jpg
Binary files differ
diff --git a/2873/CH12/EX12.5/Ex12_5.sce b/2873/CH12/EX12.5/Ex12_5.sce
new file mode 100755
index 000000000..b120d7aac
--- /dev/null
+++ b/2873/CH12/EX12.5/Ex12_5.sce
@@ -0,0 +1,27 @@
+// Display mode
+mode(0);
+// Display warning for floating point exception
+ieee(1);
+clear;
+clc;
+disp("Engineering Thermodynamics by Onkar Singh Chapter 12 Example 5")
+T1=25;//room temperature in degree celcius
+T4=2;//winter outside temperature in degree celcius
+h1=10;//heat transfer coefficient on inner window surfaces in W/m^2 oc
+h4=30;//heat transfer coefficient on outer window surfaces in W/m^2 oc
+k=0.78;//thermal conductivity of glass in W/m^2 oc
+A=75*10^-2*100*10^-2;//area in m^2
+deltax=10*10^-3;//glass thickness in m
+disp("R1=thermal resistance for convection heat transfer between inside room (1)and inside surface of glass window(2)=1/(h1*A)")
+disp("R2=thermal resistance for conduction through glass between inside of glass window(2)to outside surface of glass window(3)=deltax/(k*A)")
+disp("R3=thermal resistance for convection heat transfer between outside surface of glass window(3)to outside atmosphere(4)=1/(h4*A)")
+disp("total thermal resistance,R_total=R1+R2+R3 in oc/W")
+R_total=1/(h1*A)+deltax/(k*A)+1/(h4*A)
+disp("so rate of heat transfer,Q=(T1-T4)/R_total in W")
+Q=(T1-T4)/R_total
+disp("heat transfer rate from inside of room to inside surface of glass window.")
+disp("Q=(T1-T2)/R1")
+disp("so T2=T1-Q*R1 in degree celcius")
+R1=(1/7.5);
+T2=T1-Q*R1
+disp("Thus,inside surface of glass window will be at temperature of 9.26 oc where as room inside temperature is 25 oc")