summaryrefslogtreecommitdiff
path: root/587/CH3/EX3.3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /587/CH3/EX3.3
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 '587/CH3/EX3.3')
-rwxr-xr-x587/CH3/EX3.3/example3_3.sce30
1 files changed, 30 insertions, 0 deletions
diff --git a/587/CH3/EX3.3/example3_3.sce b/587/CH3/EX3.3/example3_3.sce
new file mode 100755
index 000000000..fffe46cb8
--- /dev/null
+++ b/587/CH3/EX3.3/example3_3.sce
@@ -0,0 +1,30 @@
+clear;
+clc;
+
+//Example3.3[:Heat Loss through double pane windows]
+//Given:-
+k_g=0.78;//Thermal conductitvity of glass [W/m.K]
+k_a=0.026;//Thermal conductivity of air space[W/m.K]
+L_g=.004;//Thickness of glass layer[m]
+L_a=0.01;//Thickness of air space[m]
+h_in=10;//ConvectionHeat transfer coefficient on the inner surface of the window[W/m^2]
+h_out=40;//ConvectionHeat transfer coefficient on the outer surface of the window[W/m^2]
+T_1=20;//Outer wall Temperature [degree Celcius]
+T_2=-10;//Inner wall Temperature [degree Celcius]
+//Solution:-
+A=(0.8*1.5);//Area of glass window[m^2]
+//Convection Resistances
+R_conv1=1/(h_in*A);//Due to convection heat transfer between inner atmosphere and glass[degree Celcius/W]
+R_conv2=1/(h_out*A);//Due to convection heat transfer between outer atmosphere and glass[degree Celcius/W]
+//Conduction Resistances
+R_cond1=L_g/(k_g*A);//Due to conduction heat transfer through the glass[degree Celcius/W]
+R_cond2=R_cond1;//Glass Medium is seperated by air spac hence two glass mediums are created[degree Celcius/W]
+R_cond3=L_a/(k_a*A);//Due to conduction heat transfer through the air space[degree Celcius/W]
+//Net Resistance offered by window is the sum of all the individual resistances written in the oreder of their occurence
+R_total=R_conv1+R_cond1+R_cond2+R_cond3+R_conv2;//[degree Celcius/W]
+disp("degree Celcius/W",R_total,"The net resistance offered is")
+Q_=(T_1-T_2)/R_total;//[W]
+disp("W",Q_,"The steady rate of Heat transfer through the window is")
+//Inner surface temperature of the window is given by
+T1=T_1-(Q_*R_conv1);//[degree Celcius]
+disp("degree Celcius",T1,"Inner Surface Temperature of the window is") \ No newline at end of file