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

其他行业

开发平台:

Matlab

  1. P = 40;                                           % real power, MW
  2. V = 30/sqrt(3)+ j*0;                           % phase voltage, kV
  3. Zs = j*9;                                  % synchronous impedance
  4. ang = acos(0.4);
  5. theta=ang:-0.01:-ang;   % Angle from 0.4 leading to 0.4 lagging pf
  6. P= P*ones(1,length(theta));       % generates P array of same size
  7. Iam = P./(3*abs(V)*cos(theta));             % current magnitude kA
  8. Ia = Iam.*(cos(theta) + j*sin(theta));            % current phasor
  9. E = V + Zs.*Ia;                        % excitation voltage phasor
  10. Em = abs(E);                    % excitation voltage magnitude, kV
  11. If = Em*1000/2000;                              % field current, A
  12. plot(If, Iam), grid
  13. xlabel('If, A'), ylabel('Ia, kA')
  14. text(3.4, 1, 'Leading pf'), text(13, 1, 'Lagging pf')
  15. text(9, .71, 'Upf')