Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. %Matthew Sturm
  2. %MicroSystems Integration
  3. %Independent Project - Thermal Analysis
  4. clc, clear all
  5.  
  6. %Thermal Resistance of solder joints:
  7. K_s = 53; %W/m-C
  8. L_s = 50e-6; %Height = 50um
  9. A_s = 400*pi*(50e-6)^2; %20x20 solder joints = 400, radius = 50um
  10. R_s = L_s/(K_s*A_s);
  11.  
  12. %Thermal Resistance of air gap:
  13. K_e = 0.5; %W/m-C
  14. L_e = 50e-6; %Height = 50um
  15. A_e = (2e-2*2e-2)-400*pi*(50e-6)^2; %area of substrate - area of solder joints
  16. R_e = L_e/(K_e*A_e);
  17.  
  18. %thermal conduction resistance from location of heat generation to the solder joint
  19. K_c = 100; %W/m-C
  20. L_c = 1e-2/20; %Average distance
  21. A_c = (1e-2)*(500e-6); %1cm*500um - side length*thinkness
  22. R_c = L_c/(K_c*A_c);
  23.  
  24. %Spreading thermal resistance
  25. a = 50e-6; %radius of solder joint
  26. K_TGP = 100; %W/m-C
  27. R_spread = 1/(2*sqrt(pi*a)*K_TGP)/400;
  28.  
  29. %Thermal Resistance of substrate:
  30. R_TGP = 4.349; %C/W
  31. %4.349
  32. %Conductive thermal resistance of Arm-Support
  33. L_armsupport = 0.003; %m
  34. A_armsupport = 0.00194; %m^2
  35. %K_armsupport = ???
  36. %R_armsupport = L_armsupport/(K_armsupport*A_armsupport)
  37.  
  38. %Thermal Resistance of Arm-Support:
  39. DT = 100-38; %deg C
  40. Power = 3; %W
  41. R_armsupport = DT/Power - ((R_e*(R_c+R_s+R_spread))/(R_e+R_c+R_s+R_spread) + R_TGP)
  42. %Thermal conductivity of arm-support
  43. K_armsupport = L_armsupport/(R_armsupport*A_armsupport)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement