Advertisement
sposhard

Untitled

Apr 5th, 2020
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.61 KB | None | 0 0
  1. % Исходные данные
  2. J=0.35;
  3. %La=0.01;
  4. La=0.1;
  5.  
  6. Ra=0.3;
  7. R_v=145;
  8. U_c=220 ;
  9. w=4000;
  10. Ce=205;
  11. Cm=200;
  12. %Номинальные данные
  13. F_nom=U_c*w/R_v;
  14. Potok_nom=0.007;
  15. w_nom=100;
  16. i_nom=50;
  17. M_nom=70;
  18. a=[w*Potok_nom U_c R_v*F_nom/w La*i_nom Ce*Potok_nom*w_nom i_nom*Ra U_c J*w_nom M_nom Cm*Potok_nom*i_nom];
  19. u=[0.8 1.2 0.8];
  20. c=[0.7479 -0.1896 0.5022];
  21. subplot(1,2,1);
  22. hPlot=plot(x(:,2),x(:,3));
  23. set( hPlot, 'LineWidth', 2 );
  24. xlabel('Ф');
  25. ylabel('Iг')
  26. grid on;
  27. subplot(1,2,2);
  28. h2Plot=plot(x(:,3),x(:,4));
  29. set( h2Plot, 'LineWidth', 2 );
  30. xlabel('Iг');
  31. ylabel('w')
  32. grid on;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement