⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imss3plt.m

📁 关于电机的.m程序
💻 M
字号:
%imss3plt : Plots derived for im3ss.mdl
clc,close all
Is=sqrt(I_real.^2+I_imag.^2);
[speed; torque; Is;I_real;I_imag]'
disp('    speed     torque      Is      I_real    I_imag')
  figure('Position',[100 390 900  300],'Name','Steady-state characteristics',...
      'NumberTitle','off','MenuBar','none');
   subplot(1,2,1),plot(speed,torque);title('Torque-speed curve');xlabel('Speed [pu]'),ylabel('Torque [pu]'),grid
   subplot(1,2,2),plot(speed,Is);title('Current-speed curve');xlabel('Speed [pu]'),ylabel('Current [pu]'),grid
  figure('Position',[220 35 330 330],'Name','Circle diagram',...
      'NumberTitle','off','MenuBar','none');
   plot([0 1],[0 0],'-r',I_real,I_imag),title('CURRENT CIRCLE DIAGRAM'),grid,hold on
compass([0 0.91],[0 -0.4]),
compass([0 I_real(1)],[0 I_imag(1)])
axis([-3 3 -6 0]);
axis equal

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -