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

其他行业

开发平台:

Matlab

  1. % (a) Solution by mesh analysis
  2. Zs=j*12; Zm=j*4; VL=100*sqrt(3);
  3. Z= [(Zs-Zm)  -(Zs-Zm)      0
  4.        0      (Zs-Zm)  -(Zs-Zm)
  5.        1         1         1   ];
  6. V=[VL*cos(pi/6)+j*VL*sin(pi/6)
  7.    VL*cos(-pi/2)+j*VL*sin(-pi/2)
  8.              0                  ];
  9. Y=inv(Z)
  10. Iabc=Y*V;                           % Line currents (Rectangular form)
  11. Iabcp=[abs(Iabc), angle(Iabc)*180/pi]     % Line currents (Polar form)
  12. % (b) Solution by symmetrical component method
  13. disp('Solution by Symmetrical component method' )
  14. Z012=[Zs+2*Zm   0     0                % Symmetrical components matrix
  15.         0     Zs-Zm   0
  16.         0       0   Zs-Zm];
  17. V012=[0; VL/sqrt(3); 0];    % Symmetrical components of phase voltages
  18. I012=inv(Z012)*V012;         % Symmetrical components of line currents
  19. a=cos(2*pi/3)+j*sin(2*pi/3);
  20. A=[ 1  1  1; 1 a^2  a; 1 a a^2];               % Transformation matrix
  21. Iabc=A*I012;                        % Line currents (Rectangular form)
  22. Iabcp=[abs(Iabc), angle(Iabc)*180/pi]     % Line currents (Polar form)