summaryrefslogtreecommitdiff
path: root/587/CH11/EX11.8/example11_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '587/CH11/EX11.8/example11_8.sce')
-rwxr-xr-x587/CH11/EX11.8/example11_8.sce32
1 files changed, 32 insertions, 0 deletions
diff --git a/587/CH11/EX11.8/example11_8.sce b/587/CH11/EX11.8/example11_8.sce
new file mode 100755
index 000000000..ee1b405f8
--- /dev/null
+++ b/587/CH11/EX11.8/example11_8.sce
@@ -0,0 +1,32 @@
+clear;
+clc;
+
+//Example11.8[Using the Effectiveness- NTU Method]
+//Given:-
+mc=1.2,mh=2;//Mass Flow rate of water and geothermal fluid[kg/s]
+U=640;//Overall Heat transfer Coefficient[W/m^2.degree Celcius]
+Di=0.015;//[m]
+Tc_out=80,Tc_in=20;//Outlet and Inlet temp of water[degree Celcius]
+Th_in=160;//Inlet temp of geothermal fluid[degree Celcius]
+Cp_c=4.18,Cp_h=4.31;//Specific Heats of water and geothermal fluid[kJ/kg.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")
+Q_ac=mc*Cp_c*(Tc_out-Tc_in);//[kW]
+e=Q_ac/Q_max;
+disp(e,"The effectiveness of the heat exchanger is")
+NTU=(1/(c-1))*log((e-1)/(e*c-1));
+disp(NTU,"The NTU of this counter flow heat exchanger is")
+As=NTU*Cmin*1000/U;//[m^2]
+disp("m^2",As,"The heat transfer surface area is")
+L=As/(%pi*Di);//[m]
+disp("m",round(L),"The length of the tube is") \ No newline at end of file