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 /587/CH14/EX14.6 | |
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 '587/CH14/EX14.6')
-rwxr-xr-x | 587/CH14/EX14.6/example14_6.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/587/CH14/EX14.6/example14_6.sce b/587/CH14/EX14.6/example14_6.sce new file mode 100755 index 000000000..d10d4fa76 --- /dev/null +++ b/587/CH14/EX14.6/example14_6.sce @@ -0,0 +1,25 @@ +clear;
+clc;
+
+//Example14.6[Condensation and Freezing of Moisture in Walls]
+Ti=20,To=-16;//Indoor and outdoor temperatures[degree Celcius]
+R_wall=3.05;//Total thermal resistance of the wall[m^2.degree Celcius/W]
+A=1;//Heat transfer area[m^2]
+R_ext=0.40;//The thermal resistance of the exterior part of the wall beyond the insulation[m^2.degree Celcius/W]
+Rv_int=0.012+0.0004,Rv_ext=0.0138+0.019;//Indoor and outdoor vapor resistances[Pa.m^2.s/ng]
+phi1=0.6,phi2=0.7;//Indoor and outdoor Relative Humidity
+Psat1=2340,Psat2=151;//Indoor and outdoor saturation pressures[Pa]
+//Solution:-
+Q_wall=A*(Ti-To)/R_wall;//[W]
+disp("W",Q_wall,"The rate of heat transfer through unit area of wall is")
+T_I=To+(Q_wall*R_ext);
+disp("degree Celcius",T_I,"The temperature of outer sheathing interface is")
+P=234;//The saturation pressure of water at temp T_I[Pa]
+Pv1=phi1*Psat1;
+Pv2=phi2*Psat2;
+disp("Pa",round(Pv2),"and","Pa",Pv1,"The vapor pressure at the indoor and the outdoor is")
+mv_int=A*(Pv1-P)/Rv_int;
+mv_ext=A*(P-Pv2)/Rv_ext;
+disp("ng/s",mv_ext,"and","ng/s",mv_int,"The rate of moisture flow through the interior and exterior parts of the wall is")
+mv_freezing=mv_int-mv_ext;
+disp("ng/s",mv_freezing,"The moisture is freezing in the insulation at the rate of")
\ No newline at end of file |