Advertisement
epheterson

Eric L. Pheterson - Homework 5 - Problem 10.26

Oct 18th, 2011
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.79 KB | None | 0 0
  1. function p10_26
  2. fprintf('\n\nEric L. Pheterson - Homework 5 - Problem 10.26\n\n');
  3. syms h
  4.  
  5. %Liquid (Table A6)
  6. hfg=2257E3; %J/kg
  7. pl =1/1.044E-3; %kg/m^3
  8.  
  9. %Vapor (Table A4)
  10. pv =.3829; %kg/m^3
  11. kv =.0401; %W/m-K
  12. cpv=2.012E3; %J/kg-K
  13. vv=51.82E-6; %m^2/s
  14.  
  15. %Al-2024
  16. ks=185; %W/m-k
  17. ps=2700; %kg/m^3
  18. cps=875; %J/kg-K
  19.  
  20. %Given
  21. Ts=500+273; %K
  22. Tsat=100+273; %K
  23. dT=500-100; %K, ºC
  24. g=9.81; %m/s^2
  25. dt=30; %s
  26.  
  27. %Sphere
  28. D=20E-3; %m
  29. E=0.25;
  30. As= pi*D^2 %m^2
  31. Vs=4/3*pi*(D/2)^3 %m^3
  32.  
  33. %Constants
  34. C=0.67;
  35. s=5.67E-8; %W/m^2-K^4
  36.  
  37. hfgp=hfg+0.8*cpv*dT
  38. NuD=C*((g*(pl-pv)*hfgp*D^3)/(vv*kv*dT))^(1/4)
  39. hconv=NuD*kv/D
  40.  
  41. hrad=E*s*(Ts^4-Tsat^4)/(Ts-Tsat)
  42.  
  43. h=solve(-h^(4/3)+hconv^(4/3)+hrad*h^(1/3),h);
  44. h=180
  45.  
  46. f=hrad/h*100
  47.  
  48. Lc=(D/2)/3;
  49. Bi=h*Lc/ks
  50.  
  51. DT=h*(Ts-Tsat)*As*dt/(ps*cps*Vs)
  52. Tf = (Ts-DT)-273
  53.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement