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/CH11/EX11.9 | |
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/CH11/EX11.9')
-rwxr-xr-x | 587/CH11/EX11.9/example11_9.sce | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/587/CH11/EX11.9/example11_9.sce b/587/CH11/EX11.9/example11_9.sce new file mode 100755 index 000000000..7d83ea1e5 --- /dev/null +++ b/587/CH11/EX11.9/example11_9.sce @@ -0,0 +1,34 @@ +clear;
+clc;
+
+//Example11.9[Cooling Hot Oil by Water in Multipass Heat Exchanger]
+//Given:-
+Cp_c=4.18,Cp_h=2.13;//Specific Heats of water and oil[kJ/kg]
+mc=0.2,mh=0.3;//Mass Flow rate of oil and water [kg/s]
+Th_in=150,Tc_in=20;//[degree Celcius]
+n=8;//No of tubes
+D=0.014;//[m]
+L=5;//[m]
+U=310;//Overall Heat transfer Coefficient[W/m^2.degree Celcius]
+//Solution:-
+Ch=mh*Cp_h;//[kW/degree Celcius]
+Cc=mc*Cp_c;//[kW/degree Celcius]
+if(Ch>Cc) then,
+ Cmin=Cc;
+ c=Cmin/Ch;
+else
+ Cmin=Ch;
+ c=Cmin/Cc;
+end
+Q_max=Cmin*(Th_in-Tc_in);//[kW]
+disp("kW",Q_max,"The maximum heat transfer rate is")
+As=n*%pi*D*L;//[m^2]
+disp("m^2",As,"Heat transfer Surface Area is")
+NTU=U*As/Cmin;
+disp(NTU,"The NTU of this heat exchanger is")
+e=0.47;//Determined from fig 11.26(c)using value of NTU and c
+Q=e*Q_max;//[kW]
+Tc_out=Tc_in+(Q/Cc);//[degree Celcius]
+Th_out=Th_in-(Q/Ch);//[degree Celcius]
+disp("degree Celcius",Tc_out,"to","degree Celcius",Tc_in,"The temperature of cooling water will rise from")
+disp("degree Celcius",Th_out,"to","degree Celcius",Th_in,"as it cools the hot oil from")
\ No newline at end of file |