Question

1) A spherical aluminum ball at a uniform temperature of 250°C is dropped into an oil t(s) Tscat t(C] bath at 50°C. The ball
0 0
Add a comment Improve this question Transcribed image text
Answer #1

I am using Matlab for this problem.

(a) Plot for the given Data

eeeeee Temprature 0 50 100 150 Time(s) 200 250 300

(b) Conversion of the given Equation to the linear form:

6 forms conversion of the function to unear o(t) = 0o e-(ec) rog (ab) = logat logbo applying log on both sides =) 20g Olt) =

(c) Linear Graph is just obtained using the log of Temperature value. I Have included the Raw data with a fitted curve. It can

2.48 • data fitted curve 2.35 2.3 2.25 2.2 2.15 2.1 TO 50 100 150 200 250 300

be noticed from part (b) why I took just log_10 for temprature.

These are the values for Linear fitted plot.

Linear model Poly1:
val(x) = p1*x + p2
Coefficients
p1 = -0.001246  
p2 = 2.38  

I have used inbuilt Matlab package but it can also be done using traditional formula.

(d) Now If we got the Slope then we can easily calculate the value of 'h' i.e. 560.789 (I have included the code in the answer so you can check how I computed it.)

(e) Now simply check the ratio for D(diameter) and h(Thermal heat conductivity) as given in the question for Aluminium. It should be less than 1. I chose Diameter because it is whole lenght of the sphere.

Code:

time = 0:10:300;

temp = [250.3 238.1 230.1 221.0 219.0 210.2 197.9 196.0 193.1 185.9 176.7 172.4 170.3 163.0 153.5 151.3 149.8 143.4 139.0 137.0 132.3 131.4 131.1 122.9 126.6 114.7 112.4 115.7 110.8 104.1 104.4];

plot(time,temp,'r-o')

plot(time,log10(temp)) % Linear Graph is just obtained using log of Temprature value

grid

hold on

xlabel('Time(s)')

ylabel('Temprature')

xyfit = fit(time',log10(temp)','poly1')

plot(xyfit,time,log10(temp))

hold off

rho = 2700; %kg/m^3

C = 1000; %kJ/(kg-k)

D = 1; %cm

h = -(xyfit.p1)*rho*C*D/6 %p1 is slope of the fitted curve

% I have Used negative sign to cancel out negative sign in slope

Add a comment
Know the answer?
Add Answer to:
1) A spherical aluminum ball at a uniform temperature of 250°C is dropped into an oil...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT