Exa16.m
上传用户:eighthdate
上传日期:2014-05-24
资源大小:270k
文件大小:1k
源码类别:

其他行业

开发平台:

Matlab

  1. wt = 0: 0.05: 3*pi;
  2. v=120*sin(wt);                       % Sinusoidal voltage
  3. i=100*sin(wt-pi/4);                  % Sinusoidal current
  4. p=v.*i;                              % Instantaneous power
  5. subplot(2, 2, 1),plot(wt,v, wt,i);       % Plot of v & i versus wt
  6. title('Voltage & current')
  7. xlabel('wt,  radians ');
  8. subplot(2, 2, 2),plot(wt,p);          % Instantaneous power vs. wt
  9. title('Power')
  10. xlabel(' wt,  radians ');
  11. Fm=3.0;
  12. fa = Fm*sin(wt);                    % Three-phase mmf's fa, fb, fc
  13. fb = Fm*sin(wt-2*pi/3);
  14. fc = Fm*sin(wt-4*pi/3);
  15. subplot(2, 2, 3),plot(wt,fa, wt,fb, wt,fc )
  16. title('3-phase mmf');
  17. xlabel(' wt,  radians ');
  18. fR = 3/2*Fm;
  19. subplot(2, 2, 4),plot(-fR*cos(wt),fR*sin(wt))
  20. title('Rotating mmf')
  21. subplot(111)