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

其他行业

开发平台:

Matlab

  1. % The function iprime = llshort(t, i) defines the differential
  2. % equations of the synchronous machine in Example 8.3 during a
  3. % phase-phase fault. The function returns the state derivatives
  4. % of the current.
  5. % Copyright  (c) 1998 H. Saadat
  6. function iprime =llshort(t,i)
  7. f=60.;  w=2.*pi*f;
  8. d=0.;   d=d*pi/180.;  theta=w*t+d +pi/2;
  9. %  Parameters of a 500 MVA, 30 kV Synchronous Machine
  10. LF = 2.500;   LD = 0.0068;   LQ = 0.0016;  Ld = 0.0072;   Lq = 0.0070;
  11. MF = 0.100;   MD = 0.0054;   MQ = 0.0026;  MR = 0.1250;
  12. ra = 0.002;   rF = 0.4000;   rD  = 0.015;  rQ = 0.0150;
  13. VF = 400;                % dc field voltage
  14. V = [-VF; 0; 0; 0];   % Voltage column vector
  15. K=sqrt(1.5);  RT2=sqrt(2.0);
  16. R=[RT2*K*w*MF*cos(theta)        rF          0               0
  17.    RT2*K*w*MD*cos(theta)        0           rD              0
  18.    RT2*K*w*MQ*sin(theta)        0           0              rQ
  19.    RT2*(ra+w*(Ld-Lq)*sin(2*theta))   K*w*MF*cos(theta)  K*w*MD*cos(theta) ...
  20.    K*w*MQ*sin(theta)];
  21. L=[RT2*K*MF*sin(theta)          LF         MR         0
  22.    RT2*K*MD*sin(theta)          MR         LD         0
  23.   -RT2*K*MQ*cos(theta)           0          0        LQ
  24.    RT2*(Ld*sin(theta)^2+Lq*cos(theta)^2)  K*MF*sin(theta)  K*MD*sin(theta) ...
  25.   -K*MQ*cos(theta)];
  26. Li=inv(L);
  27. iprime=-Li*V - Li*R*i;