You are on page 1of 14

‫‪ID‬‬ ‫‪NAME‬‬

‫‪20010626‬‬ ‫زياد جمال عبد هللا‬


‫‪20010495‬‬ ‫حسين خالد حسين السيد‬
‫‪19016180‬‬ ‫كريم محمد ناصح حفني‬
‫‪20011962‬‬ ‫مصطفي مرهف مصطفي عطية‬
‫‪20011980‬‬ ‫معتز محمد السيد حجاج‬
‫‪20010205‬‬ ‫احمد محمد مسعد شلبي‬
‫‪20011780‬‬ ‫محمود ايهاب كامل اسماعيل مراد‬
‫‪20011611‬‬ ‫محمد صابر احمد‬
‫‪20010811‬‬ ‫عبد الرحمن سامي سمير‬
‫‪20010019‬‬ ‫ابراهيم مجدي احمد عبد الفضيل‬
Heat transfer coefficients at velocity = 20 km/h
H=(15.97601 w/m^2*C)
* coefficient of friction at velocity =20 km/h
*coefficient of friction = 0.00367673
*The surface temperature at 20 Km/h
*Temperature = 306.15 (k)
*The table of results appear by ansys program
h avg Cf
velociy (W/m^2*c)
km/hr avg temp (k)

20 306.15 15.98 0.003677

40 300.733 26.948 0.012581


60 298.589 37.19 0.026438
80 297.3923 47.22397 0.045009

0.06809
100 296.6336 56.98911

120 296.1099 66.49837 0.095529

140 295.7231 75.85714 0.127213


EES CODE
"GIVEN"
{Vel=20*(1000/3600)} "[km/h], parameter to be varied"
w=2.5 "[m]"
L=8 "[m]"
A=2.5*8{[m^2]}
q_dot_rad=200 {[W/m^2]}
"q_dot_rad=200 [W/m^2], parameter to be varied"
T_infinity=20[C] "[C]"
"PROPERTIES"
Fluid$='air'
k=conductivity(Fluid$, T=T_film)
Pr=prandtl(Fluid$, T=T_film)
rho=density(Fluid$, T=T_film, P=101.3)
mu=viscosity(Fluid$, T=T_film)
nu=mu/rho
T_film=1/2*(T_s+T_infinity)
"ANALYSIS"
Re=(Vel*L)/nu
"Reynolds number is greater than the critical Reynolds number.
We use combined laminar
and turbulent flow relation for Nusselt number"
Nusselt_avg=0.3 + 0.016 * Re^0.85 * Pr^0.33 * (1 + (0.04 /
Pr)^(2/3))^(0.25)
h_avg=k/L*Nusselt_avg
q_dot_conv=h_avg*(T_s-T_infinity)
q_dot_conv=q_dot_rad
T_savg = T_s + 273
{calculation avg skin friction coefficient and drag force and limited
for Re=5*10^5 to 10^8}
Cf_avg=(0.074/Re^(1/5)-1742/Re)
FD=0.5*rho*Cf_avg*(Vel^2)*A

Plot
EES plot
Excel plot

Tsavg and havg vs Uinfinity


308 90
306.8
306 80
76.71
70
304 67.26
60
302 57.58

Axis Title
Tavg

50
300.6 47.59
300
40
37.22
298.4
298
30
297.2
26.31
296.5
296 296 20
295.6
14.5
294 10
0 5 10 15 20 25 30 35 40 45
Uinfinty
Parametric tables for data:

Comments:
1)The relation between Tsavg and havg is an inverse relation
from the equation (q=havg*(Tsavg-Tinfinity)) we will notice
that(q , Tinfinity) are constant and this relation appeared in
the graph
Plot drag force and coffieicint
Excel plot

drag
50 0.0033
45 44.77 0.0032
0.003177
40 0.0031
35
0.002989 33.76 0.003
30
0.0029

Cfavg
Fd

25 0.002831 24.15
0.0028
20
0.00271
16 0.0027
15
0.002615 0.0026
10 9.385
0.002536
5 4.388 0.0025
0.00247
0 1.155 0.0024
0 5 10 15 20 25 30 35 40 45
Uinfinity

3)the relation between the viscous boundary layer and the


length of the cartage:
Code Matlab
%givens
T_ambient=20 %[C]
T_s=33.8%[c]
u=5.556 %[m/s]
T_f=(T_s+T_ambient)/2
P=1.01325 %[bar]
%property
rho=1.1764%kg/m^3
mu=1.8577*10^(-5)

xcr=1.421;
i=1

for x=0:0.01:8

Re=(rho*u.*x)./mu;
if Re<5*10^5
delta_x(i)=(5*x)./(Re.^(0.5));
else
delta_x(i)=(0.381*Re.^(-1/5)-
10256*(1./Re)).*x;
end
M(i)=x
i=i+1
end

plot(M,delta_x,'linewidth',2)
grid on
xlabel('x')
ylabel('delta_x')
plot matlab

You might also like