Advertisement
epheterson

Eric L. Pheterson - Homework 5 - Problem 10.61

Oct 18th, 2011
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.47 KB | None | 0 0
  1. function p10_61()
  2. fprintf('\n\nEric L. Pheterson - Homework 5 - Problem 10.61\n\n');
  3.  
  4. Ts=150+273; %K
  5. D=100E-3; %m
  6.  
  7. %Saturated Ethylene Glycol Vapor
  8. Tsat=470; %K
  9. hfg=812E3; %J/kg
  10. pv=0; %kg/m^3
  11.  
  12. %Liquid Ethylene Glycol @ T-373K
  13. pl=1058.5; %kg/m^3
  14. cpl=2742; %J/kg-K
  15. ul=0.215E-2; %N-s/m^2
  16. kl=0.263; %W/m-K
  17.  
  18. Ja = cpl*(Tsat-Ts)/hfg
  19. hfgp=hfg*(1+0.68*Ja)
  20.  
  21. A = pi*D^2
  22.  
  23. C=0.826;
  24. g=9.81; %m/s^2
  25. hd=C*(g*pl*(pl-pv)*kl^3*hfgp/(ul*(Tsat-Ts)*D))^(1/4)
  26.  
  27. m=hd*A*(Tsat-Ts)/hfgp
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement