Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. % giant ass calculator for ENGN 310 design calcs
  2.  
  3. %input parameters
  4. w_in = .5;
  5. l_in = 8;
  6. t_in = .187;
  7. m = 6;
  8.  
  9. width = w_in * 0.0254;
  10. l = l_in * 0.0254;
  11. t = t_in * 0.0254;
  12.  
  13. % i) for k
  14. I = (width*(t^3))/12;
  15. E = 3.2*10^6;
  16. k = (3*E*I)/l^3
  17.  
  18. % ii) tobias has in his tiny notebook
  19. w0 = 736.44 ; %rad/s
  20.  
  21. % ii) critical value for de (at pull-in length)
  22. % eq: k = 2.7/de^(1+2.7) ==>
  23. decrit = (2.7/k)^(1/3.7) % in cm
  24.  
  25. % iii) know operating de is twice decrit
  26. de = decrit*2;
  27. ke = 2.7/de^(3.7)
  28. c = 1;
  29.  
  30. wm = ((k - ke)/m)^(1/2)
  31. % max amp occurs at wm
  32. max_amp = ((1+((2*c*wm)/w0)^2)^(1/2))/((1- (wm^2/w0^2))^2 + (2*c*wm/w0)^2)^(1/2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement