$INCLUDE Moody.lib { }

Size: px
Start display at page:

Download "$INCLUDE Moody.lib { }"

Transcription

1 File:F:\Thermal Systems Design\Design Problem 3 attempt 2.EES 11/12/2012 4:14:34 PM Page 1 $INCLUDE Moody.lib {Problem Statement} {In industrial applications, steam is often used as a heating medium. There are companies, however, who manufacture and market what they refer to as heat transfer fluids, that work as effectively as steam and at a lower cost. On such liquid is called Therminol which is available in many different chemical formulas. Consider an application where a Therminol liquid is being used to heat acetone in a shell and tube heat exchanger. The acetone (an organic liquid) flows at 176,000 lbm/hr and needs to be heated from 50 F to 86 F. The acetone can be a few degrees warmer than 86 F, but it cannot drop below 86 F. Heated Therminol (also an organic liquid) is available at 215 F with a flow rate of 220,000 lbm/hr. Select a Therminol fluid for this application and design a shell and tube heat exchanger for this service. When specifying the tubes, keep them at standard lengths of 8, 12, or 16 ft. As you develop your solution, keep the shell and tube heat exchanger design considerations in mind that we discussed in class (and in Section 9.5 of the text). } {Find} {(a) The Therminol fluid selected for this application with a brief explanation of why this fluid was selected (b) Hot and cold fluid outlet temperatures for clean and fouled conditions (c) Pressure drop of the hot and cold fluids (d) Fluid placement (which fluid is in the shell, which fluid is in the tubes) (e) Shell diameter (f) Number of shell and tube passes (g) BWG tube specification (h) Length of the tubes (i) Number of tubes in the heat exchanger (j) Pitch of the tubes (k) Number of baffles in the heat exchanger (l) Baffle spacing (m) The LMTD correction factor F. This tells you how close your HX is performing to a counter flow HX} {Assumptions} {In order to make the problem converge, an outlet temperature of 90[F] was assumed (initially)} {The 90[F] outlet temperature met the requirements of the problem (86[F] or above)} {Assuming Turbulent Flow Through Tubes (more effective heat transfer in turbulent flow)} {Copper Tubes Were Assumed To Be used In The HX} {Assuming incompressible fluid model/ effectiveness NTU model} {The inlet temperature of the available cold fluid (acetone) was 50[F], and we assumed an outlet temperature of 90[F] because it met the requirements of the problem statement. After getting the problem to converge at a given outlet temperature, we were able to update our guesses and iterate the problem using EES. We used an initial number of loops of 1 in order to set up initial guesses for the fluid properties and NTU values.} {The following block of code calculates the properties of the cold fluid (acetone)} {Solution} {Fluid Properties} {Properties of Acetone (Cold Fluid)} P = 20[psia] T_c_i = 50[F] T_c_avg = (T_c_i + T_c_o[1])/2 {Acetone} rho_c=density(acetone,t=t_c_avg,p=p) mu_c=viscosity(acetone,t=t_c_avg,p=p) k_c=conductivity(acetone,t=t_c_avg,p=p) {Assumed Pressure Cold Side} {Temperature of Cold Fluid In} {Average Temperature Cold Side}

2 File:F:\Thermal Systems Design\Design Problem 3 attempt 2.EES 11/12/2012 4:14:34 PM Page 2 C_p_c=Cp(Acetone,T=T_c_i,P=P) Pr_c=Prandtl(Acetone,T=T_c_avg,P=P) nu_c = mu_c/rho_c {We included all therminol options in our code so that we could analyze each fluid side by side. It was more difficult to run everything in loops, but we looked at it as though it would save time in the long run. We ran each block of code as it was set up to make sure units were correct and our actual code was performing correctly. With the four fluids side-by-side, we were able to pick the fluid that met all of our given criteria.} {Properties of Hot Fluid (Type of Therminol)} T_h_i = 215[F] {Fluid Option 1} rho[1]=rho_ ('Therminol_59', T_h_i) mu[1]=mu_ ('Therminol_59', T_h_avg[1]) {THERMINOL 59} k[1]=k_ ('Therminol_59', T_h_avg[1]) C_p[1]=c_ ('Therminol_59', T_h_i) Pr_[1] = C_p[1]*mu[1]/k[1] nu[1] = mu[1]/rho[1] {Fluid Option 2} rho[2]=rho_ ('Therminol_66', T_h_i) mu[2]=mu_ ('Therminol_66', T_h_avg[2]) {Therminol 66} k[2]=k_ ('Therminol_66', T_h_avg[2]) C_p[2]=c_ ('Therminol_66', T_h_i) Pr_[2] = C_p[2]*mu[2]/k[2] nu[2] = mu[2]/rho[2] {Fluid Option 3} rho[3]=rho_ ('Therminol_VP1', T_h_i) mu[3]=mu_ ('Therminol_VP1', T_h_avg[3]) {Therminol VP1} k[3]=k_ ('Therminol_VP1', T_h_avg[3]) C_p[3]=c_ ('Therminol_VP1', T_h_i) Pr_[3] = C_p[3]*mu[3]/k[3] nu[3] = mu[3]/rho[3] {Fluid Option 4} rho[4]=rho_ ('Therminol_XP', T_h_i) mu[4]=mu_ ('Therminol_XP', T_h_avg[4]) {Therminol_XP} k[4]=k_ ('Therminol_XP', T_h_avg[4]) C_p[4]=c_ ('Therminol_XP', T_h_i) Pr_[4] = C_p[4]*mu[4]/k[4] nu[4] = mu[4]/rho[4] {Heat Transfer Variable List} {m_dot_c = mass flow rate through cold side (acetone)} {C_dot_c = Capacitance rate through cold side (acetone)} {C_dot_h[i] = Capacitance rate through hot side (therminol)} {m_dot_h = mass flow rate of therminol (hot side)} {rho[i] = rho values for each therminol fluid} {nu[i] = kinematic viscosity for each therminol fluid} {k[i] = thermal conductivity of each therminol fluid} {Pr[i] = Prandtl number for each therminol fluid} {V_dot_h[i] = Volumetric flow rate for each therminol fluid} {A_h = hot side area (cross sectional)} {C_r[i] = Ratio of C_dot min to C_dot_max for fluids} {NTU[i] = Number of transfer units between hot, cold fluids} {UA[i] = UA product between fluids} {Q_dot[i] = heat transfer between fluids (changes based on therminol)} {Q_dot_max[i] = maximum heat transfer based on fluids} {Epsilon[i] = Effectiveness of heat exchanger} {P[i],R[i] = Necessary Inputs for LMTD "F" Function} {F[i] = Correction Factor For Each Fluid} {U_o_dirty[i], U_o_clean[i] = Fouled and Dirty U Factors of HX}

3 File:F:\Thermal Systems Design\Design Problem 3 attempt 2.EES 11/12/2012 4:14:34 PM Page 3 {T_h_avg[i] = Average temperature of each hot fluid} {Flow Information} {Cold Fluid} m_dot_c = [lb_m/hr] m_dot_c = rho_c*v_dot_c C_dot_c = m_dot_c*c_p_c {Mass Flow Rate Cold Fluid} {Solved For Cold Volumetric Flow} {Capacitance Rate Cold Side} {The following block of code solves for the hot fluid properties based on temperatures. This block also sets the shell fluid equal to the hot fluid for the last loop of code. The last loop of code is further down the page and is specified using "shell" eqations.} {Hot Fluid(s)} m_dot_h = [lb_m/hr] Duplicate i = 1,4 m_dot_h = rho[i]*v_dot_h[i] rho[i]=rho_s[i] nu[i]=nu_s[i] k[i] = k_s[i] Pr_[i] = Pr_s[i] V_dot_h[i] = A_h*V_h[i] C_dot_h[i] = C_p[i]*m_dot_h {Mass Flow Rate Hot Fluid} {Solves For Volumetric Flow Hot FLuids} {Sets shell, hot fluid densities equal} {Sets shell, hot fluid viscosities equal} {Sets shell, hot fluid cond. values equal} {Sets Shell, hot fluid prandtl equal} {Solves For Hot Side Velocities} {Solves For hot side capacitance rates} {We set up a loop that solved for C_r, epsilon, NTU, etc. values for all of the fluids. It took a little bit of time to get everything to converge for the first time, but we were able to set up initial guess values piece-by-piece and everything worked.} {Heat Transfer Model} C_r[i] = C_dot_c/C_dot_h[i] {Ratio Of C_dot min to C_dot_max} NTU[i] = UA[i]/C_dot_c {Number of Transfer Units} UA[i] = U_o_dirty[i]*A_o {UA Product} Q_dot[i] = C_dot_h[i]*(T_h_i - T_h_o[i]) {Heat Transfer Equation} Q_dot[i] = C_dot_c*(T_c_o[i] - T_c_i) {Heat Transfer Equation} Q_dot_max[i] = C_dot_c*(T_h_i - T_c_i) {Maximum Heat Transfer} epsilon[i] = 2*(1+C_r[i]+((1+exp(-NTU[i]*(1+C_r[i]^2)^(1/2)))/(1-exp(-NTU[i]*(1+C_r[i]^2)^(1/2))))*(1+C_r[i]^2)^(1/2))^(-1) epsilon[i] = Q_dot[i]/Q_dot_max[i] {Effectiveness Of HX} P[i] = (T_c_o[i]-T_c_i)/(T_h_i-T_c_i) {Constant for "F" function} R[i] = (T_h_i-T_h_o[i])/(T_c_o[i]-T_c_i) {Constant for "F" Function} F[i]=LMTD_CF('shell&tube_4N',P[i],R[i]) {Correction Factor} U_o_dirty[i] =1/( 1/U_o_clean[i] + R_dprime_f_h +R_dprime_f_c) {Actual U_o Value (Fouled)} U_o_clean[i] = 1/(1/h_o[i] + (1/h_i)*(OD_t/ID_t)) {Clean U_o_Value} T_h_avg[i] = (T_h_i + T_h_o[i])/2 {Average Temperature Hot Side} End {Now that the fluid properties were evaluated, we were able to move on to the shell and tube analysis. Several assumptions were initially made in order to reach solutions (with the intent of later adjusting these assuptions to create a reasonable heat exchanger).} {Shell And Tube Analysis} {Shell and Tube Variable List} {D_e[1] = equivalent diameter assuming square pitch of tubes} {D_e[2] = equivalent diameter assuming triangular pitch of tubes} {OD_t = outside diameter of tubes in HX} {P_t = center to center distance between tubes} {Nus_t = Nusselt number inside HX tubes} {h_i = "h" coefficient of heat transfer inside tubes}

4 File:F:\Thermal Systems Design\Design Problem 3 attempt 2.EES 11/12/2012 4:14:34 PM Page 4 {f = friction factor inside tubes} {ID_t = Inside diameter of tubes in HX} {Pr_t = Prandtl Number Inside tubes in HX} {k_t = thermal conductivity of fluid inside HX} {Re_t = Reynolds Number HX tubes} {m_dot_t = mass flow rate through HX tubes} {mu_t = viscosity of fluid in HX tubes} {Nus_s = Nusselt Number Through Shell Side} {Re_s = Reynolds Number Through Shell Side} {Pr_s = Prandtl Number Through Shell Side} {k_s = Thermal Conductivity through shell side} {h_o = "h" coefficient of heat transfer outside tubes} {V_s = Velocity Through Shell Side} {V_st = Velocity Through Shell Side (converted to ft/s)} {nu_s = kinematic viscosity through shell side} {rho_s = density of fluid moving through shell} {A_s = shell area} {D_s = Diameter of Shell} {C = Tube Clearance} {B=Baffle Spacing} {L = Length of Heat Exchanger} {N_b = Number of Baffles} {N_t = Number of Tubes (find Max number from book)} {N_p = Number of Passes} {DELTAP_t = Pressure Drop Through Tubes} {DELTAP_s = Pressure Drop Through Shell} {f_s = friction factor shell side} {f_c = friction factor tube side} {In building a heat exchanger that met all of the provided parameters, we adjusted the following lengths, diameters, etc. to provide the necessary output temperature, pressure drops, and economic velocities. Because all four fluids were built into one code, we were able to analyze the effect on the system using each fluid. We had to be careful adjusting the number of baffles because the pressure drop in the shell side was increased with each baffle. We had to be careful in adjusting our tube diameters because this affected the pressure drops and velocities in the tubes. We decided to use #10 BWG tubing and adjusted the number of tubes to meet our needs.} {Tubing Used} {#10 BWG --> OD = 3/4", ID =.482"} {Baffles Used} {N_b = 8 --> 8 baffles, pressure drop in shell was minimal, spacing requirements were met.} {Length of HX} {L=8[ft] --> We wanted to keep material costs down, 8 ft was smallest size, friction minimalized.} {Number of Tubes} {N_t = > We pluged 23 tubes (178 max) with given arrangement, met required T_out.} {Tubing Pitch} {P_t = 1" --> We decided on using a 1 inch triangular pitch to maximize heat transfer.} {Shell Diameter} {D_s = 17.25" --> We used the minimum diameter with the given arrangement to meet requirements.} {Shell/ Tube Fluid} {Acetone moves through tubes, Therminol travels through shell} {Note: ALL SHELL SIDE INPUTS CAN BE FOUND IN THE FOLLOWING CODE!!} {Assumed Lengths, Diameters, etc} N_p = 4 {Assumed Number of Passes} N_b = 8 {Assumed Number of Baffles} L = 8[ft] {Assumed Length of H} ID_t =.482*convert(in,ft) {Assumed Inside Diameter of tubes} OD_t = (3/4)*convert(in,ft) {Assumed Outside Diameter of Tubes} D_s = 17.25*convert(in,ft) {Assumed Outside Diameter of Shell pg.448} P_t = (1)*convert(in,ft) {Assumed 1 inch square Pitch} N_t = 155 {Max Amt. Tubes 1 in, square pitch}

5 File:F:\Thermal Systems Design\Design Problem 3 attempt 2.EES 11/12/2012 4:14:34 PM Page 5 C = P_t - OD_t B = L/(N_b+1) m_dot_s = m_dot_h mu_t = mu_c nu_t = nu_c rho_t = rho_c Pr_t = Pr_c k_t = k_c epsilon_t = [ft] D_e[1] = ((4*P_t^2)/(pi*OD_t))-OD_t D_e[2] = ((2*sqrt(3)*(P_t^2))/(pi*OD_t))-OD_t R_dprime_f_h =.001[ft^2-hr-R/Btu] R_dprime_f_c =.001[ft^2-hr-R/Btu] g_c = 32.17[lb_m-ft/lbf-s^2] {Tube Clearance} {Baffle Spacing} {Fluid In Shell Is Hot Fluid} {Roughness Factor of Copper} {Equivalent Diameter Square Pitch} {Equivalent Diameter Triangular Pitch} {Therminol Assumed To Be Organic Liq.} {Acetone, Organic Liquid} {Gravitational Constant} {The following equations were all related to areas. By keeping the areas/ mass flow rate per tube separated, they were easy to find in the code when verification was necessary.} {Area Equations} A_s = A_h A_s = (D_s*C*B)/(P_t) A_c = ((pi*id_t^2)/4)*(n_t/n_p) A_t = (pi/4)*id_t^2 A_o = N_t*pi*OD_t*L m_dot_c/n_t = m_dot_t m_dot_t*convert(lb_m/hr,lb_m/s) = rho_t*a_t*v_t {Hot Fluid Is On Outside, Cold In Tubes} {Area Of Shell} {Area Of Cold Tubes} {Area Of EACH Cold Tube} {Outside Area Of Tubes} {Mass Flow Rate Through Each Tube} {Find Velocity Through Each Tube} {The following block of code calculate the nusselt/ friction/ reynolds number on the code side of the heat exchanger. Any underscore with a "c" represents cold side fluid. Since the cold side required no iterations, loops weren't necessary, and we were able to separate these variables from the later loops.} {Nusselt/ Reynolds Correlations Through Tubes} f_c=fricfac('churchill',re_t,epsilon_t/id_t) {Friction Factor Tube Side (Cold Fluid)} Nus_t = h_i*id_t/k_t {Nusselt Number Through Tubes} Nus_t = ((f_c/8)*(re_t-1000)*pr_t)/(1+12.7*(f_c/8)^(1/2)*(pr_t^(2/3)-1)) Re_t = (V_t*convert(ft/s,ft/hr)*ID_t)/(nu_t) {Reynolds Number Tube Side} {The following loop calculates the nusselt numbers, reynolds numbers, velocities, friction factors, and pressure drops based on the therminol fluid used. We initially intended on using the therminol fluid with the highest heat transfer, but we ended up comparing fluids and making our decision based on the actual outlet temperatures, pressure drops, etc.} {Nusselt/ Reynolds Correlations Through Shell} Duplicate k=1,4 Nus_s[k] =.36*Re_s[k]^(.55)*Pr_s[k]^(1/3) {Nusselt Number Through Shell Side} Nus_s[k] = h_o[k]*d_e[2]/k_s[k] {Solves For Outside "h" Coefficient} Re_s[k] = V_s[k]*D_e[2]/nu_s[k] {Reynolds Number Shell Side} V_s[k] = m_dot_s/(rho_s[k]*a_s) {Velocity of Fluid Through Shell} V_st[k] = V_s[k]*convert(ft/hr,ft/s) {Converts Velocities To Ft/s Form} f_s[k] = exp( *ln(re_s[k])) {Friction Factors Shell Side} DELTAP_s[k] = f_s[k]*(n_b+1)*(d_s/d_e[2])*((rho_s[k]*v_st[k]^2)/(2*g_c))*convert(psf,psi) End {Since the pressure drop through the tube was based solely on the number of passes and the cold-side friction factor, only one pressure drop equation was needed for the cold side. } {Pressure Drop Tube Side}

6 File:F:\Thermal Systems Design\Design Problem 3 attempt 2.EES 11/12/2012 4:14:34 PM Page 6 DELTAP_t = (N_p*(f_c*(L/ID_t)+4)*((rho_t*V_t^2)/(2*g_c)))*convert(psf,psi) {The final block of code simply calls values from the arrays table. Since we needed these chosen values in our "key variables" table, we wrote this block} {Displays Necessary Outputs} F_corr = F[1] V_st[1] = V_s T_h_o[1] = T_h_o T_c_o[1] = T_c_o DELTAP_s[1] = DELTAP_s Material = pi*d_s*l {Correction Factor For Chosen Fluid} {Velocity of Shell Fluid} {Hot Temperature Of Chosen Fluid} {Cold Temperature of Chosen Fluid} {Pressure Drop Through Shell Chosen FLuid} {Inner Surface Area Of Shell} SOLUTION Unit Settings: Eng F psia mass deg Ac = [ft 2 ] Ah = [ft 2 ] Ao = [ft 2 ] As = [ft 2 ] At = [ft 2 ] B = [ft] C = [ft] Cc = [Btu/R-hr] Cp,c = [Btu/lbm-R] Ps = [psi] Pt = [psi] Ds = [ft] εt = [ft] fc = Fcorr = gc = [lb m -ft/lbf-s 2 ] hi = [Btu/hr-ft 2 -R] IDt = [ft] kc = [Btu/hr-ft-R] kt = [Btu/hr-ft-R] L = 8 [ft] Material = [ft 2 ] µc = [lb m /ft-hr] µt = [lb m /ft-hr] mc = [lb m /hr] mh = [lb m /hr] ms = [lb m /hr] mt = 1135 [lb m /hr] Nust = νc = [ft 2 /hr] νt = [ft 2 /hr] Nb = 8 Np = 4 Nt = 155 ODt = [ft] P = 20 [psia] Prc = Prt = Pt = [ft] Ret = ρc = [lb m /ft 3 ] ρt = [lb m /ft 3 ] Rdprime,f,c = [ft 2 -hr-r/btu] Rdprime,f,h = [ft 2 -hr-r/btu] Tc,avg = [F] Tc,i = 50 [F] Tc,o = [F] Th,i = 215 [F] Th,o = [F] vc = 3568 [ft 3 /hr] Vs = 3.35 [ft/s] Vt = [ft/s] No unit problems were detected. KEY VARIABLES Tc,o = [F] Th,o = [F] Pt = [psi] Ps = [psi] Ds = [ft] Np = 4 Cold Fluid Outlet Temp (b) Hot Fluid Outlet Temp (b) Pressure Drop Through Tubes (cold fluid) (c) Pressure Drop Through Shell (c) Fluid In Shell --> Therminol (d) Fluid In Tubes --> Acetone (d) Diameter of Shell 17.25" (e) Number of Tube Passes (f) Number of shell passes --> 1 (f) Tube Size --> BWG 10 (g)

7 File:F:\Thermal Systems Design\Design Problem 3 attempt 2.EES 11/12/2012 4:14:34 PM Page 7 L = 8 [ft] Nt = 155 Pt = [ft] Nb = 8 B = [ft] Fcorr = Vt = [ft/s] Vs = 3.35 [ft/s] Material = [ft 2 ] Length of HX (h) Number of Tubes (23 plugged off of max) (i) Pitch of Tubes 1" (j) Number of Baffles in HX (k) Baffle Spacing (l) LMTD Correction Factor (m) Velocity of Acetone --> Meets Ec. Velocity Velocity Through Shell Surface Area of Shell Material, Used In Design

Introduction to Heat and Mass Transfer

Introduction to Heat and Mass Transfer Introduction to Heat and Mass Transfer Week 16 Merry X mas! Happy New Year 2019! Final Exam When? Thursday, January 10th What time? 3:10-5 pm Where? 91203 What? Lecture materials from Week 1 to 16 (before

More information

HEAT EXCHANGER. Objectives

HEAT EXCHANGER. Objectives HEAT EXCHANGER Heat exchange is an important unit operation that contributes to efficiency and safety of many processes. In this project you will evaluate performance of three different types of heat exchangers

More information

CONCENTRIC EXCHANGER TEST PROBLEMS

CONCENTRIC EXCHANGER TEST PROBLEMS CONCENTRIC EXCHANGER TEST PROBLEMS Introduction The tests used to validate INSTED analysis of concentric exchanger module are presented here. You may need to consult the original sources of the various

More information

طراحی مبدل های حرارتی مهدي کریمی ترم بهار HEAT TRANSFER CALCULATIONS

طراحی مبدل های حرارتی مهدي کریمی ترم بهار HEAT TRANSFER CALCULATIONS طراحی مبدل های حرارتی مهدي کریمی ترم بهار 96-97 HEAT TRANSFER CALCULATIONS ١ TEMPERATURE DIFFERENCE For any transfer the driving force is needed General heat transfer equation : Q = U.A. T What T should

More information

DESIGN OF A SHELL AND TUBE HEAT EXCHANGER

DESIGN OF A SHELL AND TUBE HEAT EXCHANGER DESIGN OF A SHELL AND TUBE HEAT EXCHANGER Swarnotpal Kashyap Department of Chemical Engineering, IIT Guwahati, Assam, India 781039 ABSTRACT Often, in process industries the feed stream has to be preheated

More information

SHELL-AND-TUBE TEST PROBLEMS

SHELL-AND-TUBE TEST PROBLEMS SHELL-AND-TUBE TEST PROBLEMS The problems that have been used to validate some of the capabilities in INSTED for the analysis of shell-and-tube heat exchanger are discussed in this chapter. You should

More information

Design and Temperature Analysis on Heat Exchanger with TEMA Standard Codes

Design and Temperature Analysis on Heat Exchanger with TEMA Standard Codes Design and Temperature Analysis on Heat Exchanger with TEMA Standard Codes Adesh Dhope 1, Omkar Desai 2, Prof. V. Verma 3 1 Student, Department of Mechanical Engineering,Smt. KashibaiNavale college of

More information

HEAT TRANSFER. Mechanisms of Heat Transfer: (1) Conduction

HEAT TRANSFER. Mechanisms of Heat Transfer: (1) Conduction HEAT TRANSFER Mechanisms of Heat Transfer: (1) Conduction where Q is the amount of heat, Btu, transferred in time t, h k is the thermal conductivity, Btu/[h ft 2 ( o F/ft)] A is the area of heat transfer

More information

Heat Exchangers: Rating & Performance Parameters. Maximum Heat Transfer Rate, q max

Heat Exchangers: Rating & Performance Parameters. Maximum Heat Transfer Rate, q max Heat Exchangers: Rating & Performance Parameters Dr. Md. Zahurul Haq HTX Rating is concerned with the determination of the heat transfer rate, fluid outlet temperatures, and the pressure drop for an existing

More information

DESIGN AND EXPERIMENTAL ANALYSIS OF SHELL AND TUBE HEAT EXCHANGER (U-TUBE)

DESIGN AND EXPERIMENTAL ANALYSIS OF SHELL AND TUBE HEAT EXCHANGER (U-TUBE) DESIGN AND EXPERIMENTAL ANALYSIS OF SHELL AND TUBE HEAT EXCHANGER (U-TUBE) Divyesh B. Patel 1, Jayesh R. Parekh 2 Assistant professor, Mechanical Department, SNPIT&RC, Umrakh, Gujarat, India 1 Assistant

More information

PROBLEM and from Eq. 3.28, The convection coefficients can be estimated from appropriate correlations. Continued...

PROBLEM and from Eq. 3.28, The convection coefficients can be estimated from appropriate correlations. Continued... PROBLEM 11. KNOWN: Type-30 stainless tube with prescribed inner and outer diameters used in a cross-flow heat exchanger. Prescribed fouling factors and internal water flow conditions. FIND: (a) Overall

More information

Thermal Unit Operation (ChEg3113)

Thermal Unit Operation (ChEg3113) Thermal Unit Operation (ChEg3113) Lecture 10- Shell and Tube Heat Exchanger Design Instructor: Mr. Tedla Yeshitila (M.Sc.) Today Review Steps in Shell and tube heat exchanger Example Review Shell and tube

More information

T718. c Dr. Md. Zahurul Haq (BUET) HX: Energy Balance and LMTD ME 307 (2018) 2/ 21 T793

T718. c Dr. Md. Zahurul Haq (BUET) HX: Energy Balance and LMTD ME 307 (2018) 2/ 21 T793 HX: Energy Balance and LMTD Dr. Md. Zahurul Haq Professor Department of Mechanical Engineering Bangladesh University of Engineering & Technology (BUET) Dhaka-000, Bangladesh http://zahurul.buet.ac.bd/

More information

INSTRUCTOR: PM DR MAZLAN ABDUL WAHID

INSTRUCTOR: PM DR MAZLAN ABDUL WAHID SMJ 4463: HEAT TRANSFER INSTRUCTOR: PM DR MAZLAN ABDUL WAHID http://www.fkm.utm.my/~mazlan TEXT: Introduction to Heat Transfer by Incropera, DeWitt, Bergman, Lavine 5 th Edition, John Wiley and Sons DR

More information

c Dr. Md. Zahurul Haq (BUET) Heat Exchangers: Rating & Sizing - I ME 307 (2017) 2 / 32 T666

c Dr. Md. Zahurul Haq (BUET) Heat Exchangers: Rating & Sizing - I ME 307 (2017) 2 / 32 T666 Heat Exchanger: Rating & Sizing Heat Exchangers: Rating & Sizing - I Dr. Md. Zahurul Haq Professor Department of Mechanical Engineering Bangladesh University of Engineering & Technology (BUET) Dhaka-000,

More information

Specific heat capacity. Convective heat transfer coefficient. Thermal diffusivity. Lc ft, m Characteristic length (r for cylinder or sphere; for slab)

Specific heat capacity. Convective heat transfer coefficient. Thermal diffusivity. Lc ft, m Characteristic length (r for cylinder or sphere; for slab) Important Heat Transfer Parameters CBE 150A Midterm #3 Review Sheet General Parameters: q or or Heat transfer rate Heat flux (per unit area) Cp Specific heat capacity k Thermal conductivity h Convective

More information

Chapter 11: Heat Exchangers. Dr Ali Jawarneh Department of Mechanical Engineering Hashemite University

Chapter 11: Heat Exchangers. Dr Ali Jawarneh Department of Mechanical Engineering Hashemite University Chapter 11: Heat Exchangers Dr Ali Jawarneh Department of Mechanical Engineering Hashemite University Objectives When you finish studying this chapter, you should be able to: Recognize numerous types of

More information

LINEAR METHOD FOR THE DESIGN OF SHELL AND TUBE HEAT EXCHANGERS INCLUDING SIMPLE FOULING MODELING

LINEAR METHOD FOR THE DESIGN OF SHELL AND TUBE HEAT EXCHANGERS INCLUDING SIMPLE FOULING MODELING LINEAR METHOD FOR THE DESIGN OF SHELL AND TUBE HEAT EXCHANGERS INCLUDING SIMPLE FOULING MODELING Julia Coelho Lemos, André Luiz Hemerly Costa and Miguel J. Bagajewicz * Instituto de Química, Universidade

More information

Designing Steps for a Heat Exchanger ABSTRACT

Designing Steps for a Heat Exchanger ABSTRACT Designing Steps for a Heat Exchanger Reetika Saxena M.Tech. Student in I.F.T.M. University, Moradabad Sanjay Yadav 2 Asst. Prof. in I.F.T.M. University, Moradabad ABSTRACT Distillation is a common method

More information

NUMERICAL ANALYSIS OF PARALLEL FLOW HEAT EXCHANGER

NUMERICAL ANALYSIS OF PARALLEL FLOW HEAT EXCHANGER NUMERICAL ANALYSIS OF PARALLEL FLOW HEAT EXCHANGER 1 Ajay Pagare, 2 Kamalnayan Tripathi, 3 Nitin Choudhary 1 Asst.Profesor at Indore institute of science and technology Indore, 2 Student at Indore institute

More information

PROBLEM The heat rate, q, can be evaluated from an energy balance on the cold fluid, 225 kg/h J. 3600s/h

PROBLEM The heat rate, q, can be evaluated from an energy balance on the cold fluid, 225 kg/h J. 3600s/h PROBLEM 11.41 KNOWN: Concentric tube heat exchanger. FIND: Length of the exchanger. SCHEMATIC: ASSUMPTIONS: (1) Negligible heat loss to surroundings, () Negligible kinetic and potential energy changes,

More information

Heat Transfer Enhancement of Shell and Tube Heat Exchanger Using Conical Tapes.

Heat Transfer Enhancement of Shell and Tube Heat Exchanger Using Conical Tapes. ISSN : 2248-9622, Vol. 4, Issue 12( Part 3), December 214, pp.6-11 RESEARCH ARTICLE OPEN ACCESS Heat Transfer Enhancement of Shell and Tube Heat Exchanger Using Conical Tapes. Dhanraj S.Pimple 1,Shreeshail.B.H

More information

Thermal Unit Operation (ChEg3113)

Thermal Unit Operation (ChEg3113) Thermal Unit Operation (ChEg3113) Lecture 6- Double Pipe Heat Exchanger Design Instructor: Mr. Tedla Yeshitila (M.Sc.) Today Review Double pipe heat exchanger design procedure Example Review Deign of heat

More information

Multiple pass and cross flow heat exchangers

Multiple pass and cross flow heat exchangers Multiple pass and cross flow heat exchangers Parag Chaware Department of Mechanical Engineering of Engineering, Pune Multiple pass and cross flow heat exchangers Parag Chaware 1 / 13 Introduction In order

More information

Computational Fluid Dynamics of Parallel Flow Heat Exchanger

Computational Fluid Dynamics of Parallel Flow Heat Exchanger International Journal of Sciences: Basic and Applied Research (IJSBAR) ISSN 2307-4531 (Print & Online) http://gssrr.org/index.php?journal=journalofbasicandapplied ---------------------------------------------------------------------------------------------------------------------------

More information

DESIGN AND COST ANALYSIS OF HEAT TRANSFER EQUIPMENTS

DESIGN AND COST ANALYSIS OF HEAT TRANSFER EQUIPMENTS DESIGN AND COST ANALYSIS OF HEAT TRANSFER EQUIPMENTS Md. Khairul Islam Lecturer Department of Applied Chemistry and Chemical Engineering. University of Rajshahi. What is design? Design includes all the

More information

Thermal Design of Shell and tube heat Exchanger

Thermal Design of Shell and tube heat Exchanger King Abdulaziz University Mechanical Engineering Department MEP 460 Heat Exchanger Design Thermal Design of Shell and tube heat Exchanger March 2018 1 Contents 1-Introduction 2-Basic components Shell types

More information

In order to optimize the shell and coil heat exchanger design using the model presented in Chapter

In order to optimize the shell and coil heat exchanger design using the model presented in Chapter 1 CHAPTER FOUR The Detailed Model In order to optimize the shell and coil heat exchanger design using the model presented in Chapter 3, one would have to build several heat exchanger prototypes, and then

More information

Circle one: School of Mechanical Engineering Purdue University ME315 Heat and Mass Transfer. Exam #2. April 3, 2014

Circle one: School of Mechanical Engineering Purdue University ME315 Heat and Mass Transfer. Exam #2. April 3, 2014 Circle one: Div. 1 (12:30 pm, Prof. Choi) Div. 2 (9:30 am, Prof. Xu) School of Mechanical Engineering Purdue University ME315 Heat and Mass Transfer Exam #2 April 3, 2014 Instructions: Write your name

More information

Shell-and-Tube Heat Exchangers Unit Operations Laboratory - Sarkeys E111 February 11 th & 18 th, 2015 ChE Section 3

Shell-and-Tube Heat Exchangers Unit Operations Laboratory - Sarkeys E111 February 11 th & 18 th, 2015 ChE Section 3 Shell-and-Tube Heat Exchangers Unit Operations Laboratory - Sarkeys E111 February 11 th & 18 th, 2015 ChE 3432 - Section 3 Eric Henderson Eddie Rich Xiaorong Zhang Mikey Zhou 1 ABSTRACT Shell-and-tube

More information

How can we use Fundamental Heat Transfer to understand real devices like heat exchangers?

How can we use Fundamental Heat Transfer to understand real devices like heat exchangers? Lectures 7+8 04 CM30 /30/05 CM30 Transport I Part II: Heat Transfer Applied Heat Transfer: Heat Exchanger Modeling, Sizing, and Design Professor Faith Morrison Department of Chemical Engineering Michigan

More information

INTRODUCTION: Shell and tube heat exchangers are one of the most common equipment found in all plants. How it works?

INTRODUCTION: Shell and tube heat exchangers are one of the most common equipment found in all plants. How it works? HEAT EXCHANGERS 1 INTRODUCTION: Shell and tube heat exchangers are one of the most common equipment found in all plants How it works? 2 WHAT ARE THEY USED FOR? Classification according to service. Heat

More information

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK EXPERIENTIAL INVESTIGATION OF SHELL AND TUBE HEAT EXCHANGER USING KERN METHOD K

More information

COMPARISON OF MEASURED AND ANALYTICAL PERFORMANCE OF SHELL-AND-TUBE HEAT EXCHANGERS COOLING AND HEATING SUPERCRITICAL CARBON DIOXIDE

COMPARISON OF MEASURED AND ANALYTICAL PERFORMANCE OF SHELL-AND-TUBE HEAT EXCHANGERS COOLING AND HEATING SUPERCRITICAL CARBON DIOXIDE The 4th International Symposium - Supercritical CO Power Cycles September 9-10, 014, Pittsburgh, Pennsylvania COMPARISON OF MEASURED AND ANALYTICAL PERFORMANCE OF SHELL-AND-TUBE HEAT EXCHANGERS COOLING

More information

PERFORMANCE ANALYSIS OF SHELL AND TUBE HEAT EXCHANGERS USING AN EDUCATIONAL APPLICATION

PERFORMANCE ANALYSIS OF SHELL AND TUBE HEAT EXCHANGERS USING AN EDUCATIONAL APPLICATION Fundamental J. Thermal Science and Engineering, Vol. 2, Issue 1, 2012, Pages 37-52 Published online at http://www.frdint.com/ PERFORMANCE ANALYSIS OF SHELL AND TUBE HEAT EXCHANGERS USING AN EDUCATIONAL

More information

Enhance the Efficiency of Heat Exchanger with Helical Baffle

Enhance the Efficiency of Heat Exchanger with Helical Baffle Enhance the Efficiency of Heat Exchanger with Helical Baffle 1 Sagar Kadu, 2 Monash Mhatre, 3 Aadhityasagar, 4 Augussilvastar, 5 Siddhart Nagi 1 Professor, Mechanical Engineering Department, SIES Graduate

More information

ME 331 Homework Assignment #6

ME 331 Homework Assignment #6 ME 33 Homework Assignment #6 Problem Statement: ater at 30 o C flows through a long.85 cm diameter tube at a mass flow rate of 0.020 kg/s. Find: The mean velocity (u m ), maximum velocity (u MAX ), and

More information

Applied Heat Transfer:

Applied Heat Transfer: Lectures 7+8 CM30 /6/06 CM30 Transport I Part II: Heat Transfer Applied Heat Transfer: Heat Exchanger Modeling, Sizing, and Design Professor Faith Morrison Department of Chemical Engineering Michigan Technological

More information

PLATE TYPE HEAT EXCHANGER. To determine the overall heat transfer coefficient in a plate type heat exchanger at different hot fluid flow rate

PLATE TYPE HEAT EXCHANGER. To determine the overall heat transfer coefficient in a plate type heat exchanger at different hot fluid flow rate PLATE TYPE HEAT EXCHANGER AIM: To determine the overall heat transfer coefficient in a plate type heat exchanger at different hot fluid flow rate EXPERIMENTAL SETUP:. A Stainless-steel plate type heat

More information

HEAT TRANSFER AND EXCHANGERS

HEAT TRANSFER AND EXCHANGERS HEAT TRANSFER AND EXCHANGERS Although heat-transfer rates can be computed with reasonable accuracy for clean or new pipe, the effect of dirty or corroded pipe surfaces cannot he satisfactorily estimated.

More information

7. PROCESS EQUIPMENT DESIGN

7. PROCESS EQUIPMENT DESIGN 7. PROCESS EQUIPMENT DESIGN 1. ROTARY DRIER Feed (NH 4 ) 2 SO 4 +H 2 0 Spent air Hot air Product Moist (NH 4 ) 2 SO 4 Amount of water infeed = 212.5 kg/hr Dry solid infeed = 10417 kg/hr Water content in

More information

Investigation of Heat Transfer on Smooth and Enhanced Tube in Heat Exchanger

Investigation of Heat Transfer on Smooth and Enhanced Tube in Heat Exchanger International Journal of Current Engineering and Technology E-ISSN 2277 4106, P-ISSN 2347 5161 2015INPRESSCO, All Rights Reserved Available at http://inpressco.com/category/ijcet Research Article Investigation

More information

ESRL Module 8. Heat Transfer - Heat Recovery Steam Generator Numerical Analysis

ESRL Module 8. Heat Transfer - Heat Recovery Steam Generator Numerical Analysis ESRL Module 8. Heat Transfer - Heat Recovery Steam Generator Numerical Analysis Prepared by F. Carl Knopf, Chemical Engineering Department, Louisiana State University Documentation Module Use Expected

More information

CHAPTER 3 SHELL AND TUBE HEAT EXCHANGER

CHAPTER 3 SHELL AND TUBE HEAT EXCHANGER 20 CHAPTER 3 SHELL AND TUBE HEAT EXCHANGER 3.1 INTRODUCTION A Shell and Tube Heat Exchanger is usually used for higher pressure applications, which consists of a series of tubes, through which one of the

More information

Mohammed Rashnur Rahman, N.M. Aftabul Alam Bhuiya, and Md. Rasel Miah

Mohammed Rashnur Rahman, N.M. Aftabul Alam Bhuiya, and Md. Rasel Miah International Journal of Innovation and Applied Studies ISSN 2028-9324 Vol. 8 No. 3 Sep. 2014, pp. 1148-1157 2014 Innovative Space of Scientific Research Journals http://www.ijias.issr-journals.org/ Theoretical

More information

Principles of Food and Bioprocess Engineering (FS 231) Exam 2 Part A -- Closed Book (50 points)

Principles of Food and Bioprocess Engineering (FS 231) Exam 2 Part A -- Closed Book (50 points) Principles of Food and Bioprocess Engineering (FS 231) Exam 2 Part A -- Closed Book (50 points) 1. Are the following statements true or false? (20 points) a. Thermal conductivity of a substance is a measure

More information

8.1 Technically Feasible Design of a Heat Exchanger

8.1 Technically Feasible Design of a Heat Exchanger 328 Technically Feasible Design Case Studies T 2 q 2 ρ 2 C p2 T F q ρ C p T q ρ C p T 2F q 2 ρ 2 C p2 Figure 3.5. Countercurrent double-pipe exchanger. 8. Technically Feasible Design of a Heat Exchanger

More information

Heat Transfer Coefficient Solver for a Triple Concentric-tube Heat Exchanger in Transition Regime

Heat Transfer Coefficient Solver for a Triple Concentric-tube Heat Exchanger in Transition Regime Heat Transfer Coefficient Solver for a Triple Concentric-tube Heat Exchanger in Transition Regime SINZIANA RADULESCU*, IRENA LOREDANA NEGOITA, ION ONUTU University Petroleum-Gas of Ploiesti, Department

More information

TUBE BANKS TEST PROBLEMS

TUBE BANKS TEST PROBLEMS TUBE BANKS TEST PROBLEMS The non-proprietary tests used to validate INSTED analysis of flow and heat transfer over tube banks are presented in this section. You may need to consult the original sources

More information

MYcsvtu Notes HEAT TRANSFER BY CONVECTION

MYcsvtu Notes HEAT TRANSFER BY CONVECTION www.mycsvtunotes.in HEAT TRANSFER BY CONVECTION CONDUCTION Mechanism of heat transfer through a solid or fluid in the absence any fluid motion. CONVECTION Mechanism of heat transfer through a fluid in

More information

Effect of tube pitch on heat transfer in shell-and-tube heat exchangers new simulation software

Effect of tube pitch on heat transfer in shell-and-tube heat exchangers new simulation software Heat Mass Transfer (2006) 42: 263 270 DOI 0.007/s0023-005-0002-9 ORIGINAL A. Karno Æ S. Ajib Effect of tube pitch on heat transfer in shell-and-tube heat exchangers new simulation software Received: 9

More information

Tutorial 1. Where Nu=(hl/k); Reynolds number Re=(Vlρ/µ) and Prandtl number Pr=(µCp/k)

Tutorial 1. Where Nu=(hl/k); Reynolds number Re=(Vlρ/µ) and Prandtl number Pr=(µCp/k) Tutorial 1 1. Explain in detail the mechanism of forced convection. Show by dimensional analysis (Rayleigh method) that data for forced convection may be correlated by an equation of the form Nu = φ (Re,

More information

Design of Heat Transfer Equipment

Design of Heat Transfer Equipment Design of Heat Transfer Equipment Types of heat transfer equipment Type service Double pipe exchanger Heating and cooling Shell and tube exchanger All applications Plate heat exchanger Plate-fin exchanger

More information

EXPERIMENTAL AND THEORETICAL ANALYSIS OF TRIPLE CONCENTRIC TUBE HEAT EXCHANGER

EXPERIMENTAL AND THEORETICAL ANALYSIS OF TRIPLE CONCENTRIC TUBE HEAT EXCHANGER EXPERIMENTAL AND THEORETICAL ANALYSIS OF TRIPLE CONCENTRIC TUBE HEAT EXCHANGER 1 Pravin M. Shinde, 2 Ganesh S. Yeole, 3 Abhijeet B. Mohite, 4 Bhagyashree H. Mahajan. 5 Prof. D. K. Sharma. 6 Prof. A. K.

More information

WTS Table of contents. Layout

WTS Table of contents. Layout Table of contents Thermal and hydraulic design of shell and tube heat exchangers... 2 Tube sheet data... 4 Properties of Water and Steam... 6 Properties of Water and Steam... 7 Heat transfer in pipe flow...

More information

Overall Heat Transfer Coefficient

Overall Heat Transfer Coefficient Overall Heat Transfer Coefficient A heat exchanger typically involves two flowing fluids separated by a solid wall. Heat is first transferred from the hot fluid to the wall by convection, through the wall

More information

Design and rating of Shell and tube heat Exchangers Bell-Delaware method

Design and rating of Shell and tube heat Exchangers Bell-Delaware method King Abdulaziz University Mechanical Engineering Department MEP 460 Heat Exchanger Design Design and rating of Shell and tube heat Exchangers Bell-Delaware method 1 April 2018 Bell Delaware method for

More information

HEAT TRANSFER LAB MANUAL

HEAT TRANSFER LAB MANUAL HEAT TRANSFER LAB MANUAL NIRMA UNIVERSITY INSTITUTE OF TECHNOLOGY CHEMICAL ENGINEERING DEPARTMENT List of Experiments: 1. Thermal conductivity apparatus 2. Thermal conductivity of metal rod 3. Thermal

More information

The Research of Heat Transfer Area for 55/19 Steam Generator

The Research of Heat Transfer Area for 55/19 Steam Generator Journal of Power and Energy Engineering, 205, 3, 47-422 Published Online April 205 in SciRes. http://www.scirp.org/journal/jpee http://dx.doi.org/0.4236/jpee.205.34056 The Research of Heat Transfer Area

More information

THERMAL PERFORMANCE OF SHELL AND TUBE HEAT EXCHANGER USING NANOFLUIDS 1

THERMAL PERFORMANCE OF SHELL AND TUBE HEAT EXCHANGER USING NANOFLUIDS 1 THERMAL PERFORMANCE OF SHELL AND TUBE HEAT EXCHANGER USING NANOFLUIDS 1 Arun Kumar Tiwari 1 Department of Mechanical Engineering, Institute of Engineering & Technology, GLA University, Mathura, 281004,

More information

THERMODYNAMIC PERFORMANCE EVALUATION FOR HELICAL PLATE HEAT EXCHANGER BASED ON SECOND LAW ANALYSIS

THERMODYNAMIC PERFORMANCE EVALUATION FOR HELICAL PLATE HEAT EXCHANGER BASED ON SECOND LAW ANALYSIS THE PUBLISHING HOUSE PROCEEDINGS OF THE ROMANIAN ACADEMY, Series A, OF THE ROMANIAN ACADEMY Special Issue/2018, pp. 237 242 THERMODYNAMIC PERFORMANCE EVALUATION FOR HELICAL PLATE HEAT EXCHANGER BASED ON

More information

Managing Thermal Gradients on a Supercritical Carbon Dioxide Radial Inflow Turbine. David W. Stevens

Managing Thermal Gradients on a Supercritical Carbon Dioxide Radial Inflow Turbine. David W. Stevens Managing Thermal Gradients on a Supercritical Carbon Dioxide Radial Inflow Turbine David W. Stevens dstevens@, Turbine Cooling Historically, a consistent engineering challenge Machine durability Traditional

More information

Estimation of Heat Transfer in Internally Micro Finned Tube

Estimation of Heat Transfer in Internally Micro Finned Tube Page9 Estimation of Heat Transfer in Internally Micro Finned Tube B. Usha Rani* and P.S. Kishore** * M.E Thermal, Department of Mechanical Engineering, College of Engineering (A), Andhra University **Professor,

More information

Performance Optimization of Air Cooled Heat Exchanger Applying Analytical Approach

Performance Optimization of Air Cooled Heat Exchanger Applying Analytical Approach e-issn 2455 1392 Volume 2 Issue 6, June 2016 pp. 355 359 Scientific Journal Impact Factor : 3.468 http://www.ijcter.com Performance Optimization of Air Cooled Heat Exchanger Applying Analytical Approach

More information

Heat Transfer Convection

Heat Transfer Convection Heat ransfer Convection Previous lectures conduction: heat transfer without fluid motion oday (textbook nearly 00 pages) Convection: heat transfer with fluid motion Research methods different Natural Convection

More information

International Journal of Scientific & Engineering Research, Volume 5, Issue 11, November ISSN

International Journal of Scientific & Engineering Research, Volume 5, Issue 11, November ISSN International Journal of Scientific & Engineering Research, Volume 5, Issue 11, November-2014 1226 NUMERICAL ANALYSIS OF TRIPLE TUBE HEAT EXCHANGER USING ANSYS Vishwa Mohan Behera1, D.H. Das2, Ayusman

More information

Analytical Study on Thermal and Mechanical Design of Printed Circuit Heat Exchanger

Analytical Study on Thermal and Mechanical Design of Printed Circuit Heat Exchanger INL/EXT-13-30047 Analytical Study on Thermal and Mechanical Design of Printed Circuit Heat Exchanger Su-Jong Yoon Piyush Sabharwall Eung-Soo Kim September 2013 The INL is a U.S. Department of Energy National

More information

PROBLEM 8.3 ( ) p = kg m 1m s m 1000 m = kg s m = bar < P = N m 0.25 m 4 1m s = 1418 N m s = 1.

PROBLEM 8.3 ( ) p = kg m 1m s m 1000 m = kg s m = bar < P = N m 0.25 m 4 1m s = 1418 N m s = 1. PROBLEM 8.3 KNOWN: Temperature and velocity of water flow in a pipe of prescribed dimensions. FIND: Pressure drop and pump power requirement for (a) a smooth pipe, (b) a cast iron pipe with a clean surface,

More information

S.E. (Chemical) (Second Semester) EXAMINATION, 2012 HEAT TRANSFER (2008 PATTERN) Time : Three Hours Maximum Marks : 100

S.E. (Chemical) (Second Semester) EXAMINATION, 2012 HEAT TRANSFER (2008 PATTERN) Time : Three Hours Maximum Marks : 100 Total No. of Questions 12] [Total No. of Printed Pages 7 Seat No. [4162]-187 S.E. (Chemical) (Second Semester) EXAMINATION, 2012 HEAT TRANSFER (2008 PATTERN) Time : Three Hours Maximum Marks : 100 N.B.

More information

PHYSICAL MECHANISM OF CONVECTION

PHYSICAL MECHANISM OF CONVECTION Tue 8:54:24 AM Slide Nr. 0 of 33 Slides PHYSICAL MECHANISM OF CONVECTION Heat transfer through a fluid is by convection in the presence of bulk fluid motion and by conduction in the absence of it. Chapter

More information

Alternative MILP Formulations for. Shell and Tube Heat Exchanger. Optimal Design

Alternative MILP Formulations for. Shell and Tube Heat Exchanger. Optimal Design Alternative MILP Formulations for Shell and Tube Heat Exchanger Optimal Design Caroline de O. Gonçalves, André L. H. Costa, Miguel J. Bagajewicz*, Institute of Chemistry, Rio de Janeiro State University

More information

ACCOUNTING FOR FRICTION IN THE BERNOULLI EQUATION FOR FLOW THROUGH PIPES

ACCOUNTING FOR FRICTION IN THE BERNOULLI EQUATION FOR FLOW THROUGH PIPES ACCOUNTING FOR FRICTION IN THE BERNOULLI EQUATION FOR FLOW THROUGH PIPES Some background information first: We have seen that a major limitation of the Bernoulli equation is that it does not account for

More information

CZECH TECHNICAL UNIVERSITY IN PRAGUE FACULTY OF MECHANICAL ENGINEERING DEPARTMENT OF PROCESS ENGINEERING

CZECH TECHNICAL UNIVERSITY IN PRAGUE FACULTY OF MECHANICAL ENGINEERING DEPARTMENT OF PROCESS ENGINEERING CZECH TECHNICAL UNIVERSITY IN PRAGUE FACULTY OF MECHANICAL ENGINEERING DEPARTMENT OF PROCESS ENGINEERING MODEL of the PLATE HEAT EXCHANGER DIPLOMA THESIS 2015 MEHMET AYAS Annotation sheet Name: Mehmet

More information

HAWAII GEOTHERMAL PROJECT

HAWAII GEOTHERMAL PROJECT THE HAWAII GEOTHERMAL PROJECT A PARAMETRIC STUDY OF A VERTICAL HEAT EXCHANGER DESIGNED FOR GEOTH ERMAL POW ER PLANT APPLICATION TECHNICAL REPORT No. 5 o HAWAII GEOTHERMAL PROJECT ENGINEERING PROGRAM A

More information

S.E. (Chemical) (Second Semester) EXAMINATION, 2011 HEAT TRANSFER (2008 PATTERN) Time : Three Hours Maximum Marks : 100

S.E. (Chemical) (Second Semester) EXAMINATION, 2011 HEAT TRANSFER (2008 PATTERN) Time : Three Hours Maximum Marks : 100 Total No. of Questions 12] [Total No. of Printed Pages 7 [4062]-186 S.E. (Chemical) (Second Semester) EXAMINATION, 2011 HEAT TRANSFER (2008 PATTERN) Time : Three Hours Maximum Marks : 100 N.B. : (i) Answers

More information

1. Nusselt number and Biot number are computed in a similar manner (=hd/k). What are the differences between them? When and why are each of them used?

1. Nusselt number and Biot number are computed in a similar manner (=hd/k). What are the differences between them? When and why are each of them used? 1. Nusselt number and Biot number are computed in a similar manner (=hd/k). What are the differences between them? When and why are each of them used?. During unsteady state heat transfer, can the temperature

More information

PUMP SYSTEM ANALYSIS AND SIZING. BY JACQUES CHAURETTE p. eng.

PUMP SYSTEM ANALYSIS AND SIZING. BY JACQUES CHAURETTE p. eng. PUMP SYSTEM ANALYSIS AND SIZING BY JACQUES CHAURETTE p. eng. 5 th Edition February 2003 Published by Fluide Design Inc. www.fluidedesign.com Copyright 1994 I TABLE OF CONTENTS Introduction Symbols Chapter

More information

Laboratory/Demonstration Experiments in Heat Transfer: Laminar and Turbulent Forced Convection Inside Tubes. Abstract

Laboratory/Demonstration Experiments in Heat Transfer: Laminar and Turbulent Forced Convection Inside Tubes. Abstract Laboratory/Demonstration Experiments in Heat Transfer: Laminar and Turbulent Forced Convection Inside Tubes Session T4B4 Edgar C. Clausen, W. Roy Penney, Jeffrey R. Dorman, Daniel E. Fluornoy, Alice K.

More information

The average velocity of water in the tube and the Reynolds number are Hot R-134a

The average velocity of water in the tube and the Reynolds number are Hot R-134a hater 0:, 8, 4, 47, 50, 5, 55, 7, 75, 77, 8 and 85. 0- Refrigerant-4a is cooled by water a double-ie heat exchanger. he overall heat transfer coefficient is to be determed. Assumtions he thermal resistance

More information

ME 315 Exam 3 8:00-9:00 PM Thursday, April 16, 2009 CIRCLE YOUR DIVISION

ME 315 Exam 3 8:00-9:00 PM Thursday, April 16, 2009 CIRCLE YOUR DIVISION ME 315 Exam 3 8:00-9:00 PM Thurday, Aril 16, 009 Thi i a cloed-book, cloed-note examination. There i a formula heet at the back. You mut turn off all communication device before tarting thi exam, and leave

More information

Plant Design LECTURE 8: REBOILER CIRCUIT DESIGN. Daniel R. Lewin Department of Chemical Engineering Technion, Haifa, Israel

Plant Design LECTURE 8: REBOILER CIRCUIT DESIGN. Daniel R. Lewin Department of Chemical Engineering Technion, Haifa, Israel 054410 Plant Design LECTURE 8: REBOILER CIRCUIT DESIGN Daniel R. Lewin Department of Chemical Engineering Technion, Haifa, Israel Ref: Kern, R. Thermosyphon Reboiler Piping Simplified, Hydrocarbon Processing,

More information

MET 440 HEAT TRANSFER FINAL PROJECT: SHELL-AND-TUBE HEAT EXCHANGER DESIGN BY: BLAKE RADER & DANIEL ALEXANDER

MET 440 HEAT TRANSFER FINAL PROJECT: SHELL-AND-TUBE HEAT EXCHANGER DESIGN BY: BLAKE RADER & DANIEL ALEXANDER MET 440 HEAT TRANSFER FINAL PROJECT: SHELL-AND-TUBE HEAT EXCHANGER DESIGN BY: BLAKE RADER & DANIEL ALEXANDER ABSTRACT This is a design proposal to construct a shell-and-tube heat exchanger at Norfolk Naval

More information

L A M P I R A N SOURCE CODE (VISUAL BASIC 6.0) 1. Perhitungan awal dan perhitungan laju perpindahan panas. Gambar L.1. Form1.frm. Public Thi, Tho, Tci, mh, mc, d1, d2, Di, Pt, Nt, Lb, q, Pi,

More information

UNIT II CONVECTION HEAT TRANSFER

UNIT II CONVECTION HEAT TRANSFER UNIT II CONVECTION HEAT TRANSFER Convection is the mode of heat transfer between a surface and a fluid moving over it. The energy transfer in convection is predominately due to the bulk motion of the fluid

More information

Analysis of Heat Transfer Enhancement in Spiral Plate Heat Exchanger

Analysis of Heat Transfer Enhancement in Spiral Plate Heat Exchanger Vol. 2, No. 4 Modern Applied Science Analysis of Heat Transfer Enhancement in Spiral Plate Heat Exchanger Dr. Kaliannan Saravanan Professor & Head, Department of Chemical Engineering Kongu Engineering

More information

Phone: , For Educational Use. SOFTbank E-Book Center, Tehran. Fundamentals of Heat Transfer. René Reyes Mazzoco

Phone: , For Educational Use. SOFTbank E-Book Center, Tehran. Fundamentals of Heat Transfer. René Reyes Mazzoco 8 Fundamentals of Heat Transfer René Reyes Mazzoco Universidad de las Américas Puebla, Cholula, Mexico 1 HEAT TRANSFER MECHANISMS 1.1 Conduction Conduction heat transfer is explained through the molecular

More information

Effect of flow velocity on the process of air-steam condensation in a vertical tube condenser

Effect of flow velocity on the process of air-steam condensation in a vertical tube condenser Effect of flow velocity on the process of air-steam condensation in a vertical tube condenser Jan Havlík 1,*, Tomáš Dlouhý 1 1 Czech Technical University in Prague, Faculty of Mechanical Engineering, Department

More information

Level 7 Post Graduate Diploma in Engineering Heat and mass transfer

Level 7 Post Graduate Diploma in Engineering Heat and mass transfer 9210-221 Level 7 Post Graduate Diploma in Engineering Heat and mass transfer 0 You should have the following for this examination one answer book non programmable calculator pen, pencil, drawing instruments

More information

Memorial University of Newfoundland Faculty of Engineering and Applied Science

Memorial University of Newfoundland Faculty of Engineering and Applied Science Memorial University of Newfoundl Faculty of Engineering Applied Science ENGI-7903, Mechanical Equipment, Spring 20 Assignment 2 Vad Talimi Attempt all questions. The assignment may be done individually

More information

arxiv: v1 [physics.app-ph] 25 Mar 2018

arxiv: v1 [physics.app-ph] 25 Mar 2018 Improvement of heat exchanger efficiency by using hydraulic and thermal entrance regions arxiv:1803.09255v1 [physics.app-ph] 25 Mar 2018 Abstract Alexey Andrianov a, Alexander Ustinov a, Dmitry Loginov

More information

Heat processes. Heat exchange

Heat processes. Heat exchange Heat processes Heat exchange Heat energy transported across a surface from higher temperature side to lower temperature side; it is a macroscopic measure of transported energies of molecular motions Temperature

More information

Axial profiles of heat transfer coefficients in a liquid film evaporator

Axial profiles of heat transfer coefficients in a liquid film evaporator Axial profiles of heat transfer coefficients in a liquid film evaporator Pavel Timár, Ján Stopka, Vladimír Báleš Department of Chemical and Biochemical Engineering, Faculty of Chemical and Food Technology,

More information

Principles of Food and Bioprocess Engineering (FS 231) Example Problems on Units and Dimensions

Principles of Food and Bioprocess Engineering (FS 231) Example Problems on Units and Dimensions Principles of Food and Bioprocess Engineering (FS 231) Example Problems on Units and Dimensions 1. Determine the dimensions of the following quantities starting from their units: a. Work b. Specific heat

More information

Modelling of Economical Design of Shell and Tube Type Heat Exchanger Using Specified Pressure Drop

Modelling of Economical Design of Shell and Tube Type Heat Exchanger Using Specified Pressure Drop Modelling of Economical Design of Shell and Tube Type Heat Exchanger Using Specified Pressure Drop M. M. El-Fawal *1, A. A. Fahmy 2 and B. M. Taher 3 1 National Center for Nuclear Safety and Radiation

More information

Heat and Mass Transfer Unit-1 Conduction

Heat and Mass Transfer Unit-1 Conduction 1. State Fourier s Law of conduction. Heat and Mass Transfer Unit-1 Conduction Part-A The rate of heat conduction is proportional to the area measured normal to the direction of heat flow and to the temperature

More information

SKM DRILLING ENGINEERING. Chapter 3 - Drilling Hydraulics

SKM DRILLING ENGINEERING. Chapter 3 - Drilling Hydraulics 1 SKM 3413 - DRILLING ENGINEERING Chapter 3 - Drilling Hydraulics Assoc. Prof. Abdul Razak Ismail Petroleum Engineering Dept. Faculty of Petroleum & Renewable Energy Eng. Universiti Teknologi Malaysia

More information

Turbulent Compressible Flow in a Slender Tube

Turbulent Compressible Flow in a Slender Tube Turbulent Compressible Flow in a Slender Tube Kurt O. Lund* 1, and Christine M. Lord 2 1 COMSOL Consultant, 2 Lord Engineering Corp. *Corresponding author: 135 Sixth Street, Del Mar, CA 92014, kurtlund@roadrunner.com

More information

HEAT TRANSFER BY CONVECTION. Dr. Şaziye Balku 1

HEAT TRANSFER BY CONVECTION. Dr. Şaziye Balku 1 HEAT TRANSFER BY CONVECTION Dr. Şaziye Balku 1 CONDUCTION Mechanism of heat transfer through a solid or fluid in the absence any fluid motion. CONVECTION Mechanism of heat transfer through a fluid in the

More information

ENG3103 Engineering Problem Solving Computations Semester 2, 2013

ENG3103 Engineering Problem Solving Computations Semester 2, 2013 Assessment: Assignment 2 Due: 16 September 2013 Marks: 100 Value: 10 % Question 1 (70 marks) Introduction You are designing a pipe network system that transfers water from the upper pipe to the lower pipe.

More information

PROBLEM h fg ρ v ρ l σ 10 3 T sat (kj/kg) (kg/m 3 ) (N/m) (K)

PROBLEM h fg ρ v ρ l σ 10 3 T sat (kj/kg) (kg/m 3 ) (N/m) (K) PROBLEM 10.9 KNOWN: Fluids at 1 atm: mercury, ethanol, R-1. FIND: Critical heat flux; compare with value for water also at 1 atm. ASSUMPTIONS: (1) Steady-state conditions, () Nucleate pool boiling. PROPERTIES:

More information