Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. M=828120;
  2. F=1293.3;
  3. F2=2587.89;
  4. l=2560;
  5. E=210000;
  6. d=72;
  7. I=(3.14*d.^4)/64;
  8. x1=0:0.1:l/2;
  9. w1=(F/6*x1.^3-M/2*x1.^2)/(E*I);
  10.  
  11. x2=l/2:0.01:l;
  12. w2=(F/6*x2.^3-M/2*x2.^2 -F2/6*(x2-l/2).^3)/(E*I);
  13.  
  14.  
  15. x=[x1 x2];
  16. w=[w1 w2];
  17.  
  18. grid on
  19. plot (x,w)
  20. xlim([0 2560])
  21. ylim([-1 0.2])
  22. ybounds = ylim()
  23. set(gca, 'ytick', ybounds(1):0.2:ybounds(2))
  24. xlabel('l [mm]')
  25. ylabel('Biegung [mm]')
  26. pbaspect([3 1 1])
  27. export_fig Biegelinie -pdf -transparent -r300 -painters
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement