Advertisement
Guest User

Untitled

a guest
Oct 16th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. clc
  2. close all
  3. clear all
  4. A=-1*[-j*2.939e-5 -j*4.384e-5 -j*4.33308e-5 -j*3.0992e-5]*(-j*2.9671e+5);
  5. B=-1*[j*1.7301e-5 -j*0.49824e-5 -j*1.2065e-5 -j*1.3104e-5]*(-j*1.8435e+6);
  6. C=-1*[-j*8.9371e-7 j*0.30452e-5 -j*8.4088e-7 -j*7.0633e-6]*(-j*1.3167e+07);
  7. D=-1*[-j*1.2757e-6 j*0.99325e-5 -j*1.9888e-5 j*1.8248e-5]*(-j*4.2807e+06);
  8. % A=-1*[-2.939e-5 -4.384e-5 -4.33308e-5 -3.0992e-5];
  9. % B=-1*[1.7301e-5 -0.49824e-5 -1.2065e-5 -1.3104e-5];
  10. % C=-1*[-8.9371e-7 0.30452e-5 -8.4088e-7 -7.0633e-6];
  11. % D=-1*[-1.2757e-6 0.99325e-5 -1.9888e-5 1.8248e-5];
  12. x=[1 2 3 4]
  13. freq=[12.44 27 41.15 56.1]
  14. figure(1)
  15. plot((A))
  16. hold on
  17. % plot(A2)
  18. plot((B))
  19. hold on
  20. plot((C))
  21. hold on
  22. plot((D))
  23. title('Mode Shapes using residues')
  24. ylabel('Magnitude')
  25. xlabel('Meassurement points')
  26. legend('12.44 Hz','27 Hz','41.15 Hz','56.1 Hz')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement