Lgshort.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.4 during a
  3. % phase-ground fault. The function returns the state derivatives
  4. % of the current.
  5. % Copyright (c) 1998 H. Saadat
  6. function iprime =lgshort(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;   L0 =0.002;
  12. ra = 0.002;   rF = 0.4000;   rD  = 0.015;  rQ = 0.0150;
  13. VF = 400;                % DC field voltage
  14. V = [0; -VF; 0; 0];      % Voltage column vector
  15. K=sqrt(1.5);
  16. Ls=(L0+Ld+Lq)/3;  Lm=(Ld-Lq)/3;
  17. R=[ra-2*w*Lm*sin(2*theta) -w*MF*sin(theta)   -w*MD*sin(theta)  w*MQ*cos(theta)
  18.         -w*MF*sin(theta)             rF                   0               0
  19.         -w*MD*sin(theta)              0                  rD               0
  20.          w*MQ*cos(theta)              0                   0              rQ];
  21. L=[Ls+Lm*cos(2*theta)  MF*cos(theta)   MD*cos(theta)  MQ*sin(theta)
  22.       MF*cos(theta)                      LF                MR              0
  23.       MD*cos(theta)                      MR                LD              0
  24.       MQ*sin(theta)                       0                 0             LQ];
  25. Li=inv(L);
  26. iprime= -Li*V - Li*R*i;