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

其他行业

开发平台:

Matlab

  1. % State variable representation of the multimachine system
  2. % after fault. (for use with trstab)
  3. %
  4. % Copyright (C) 1998 H. Saadat
  5. function xdot = afpek(t,x)
  6. global Pm f H E  Y th ngg
  7. Pe=zeros(1, ngg);
  8. for ii = 1:ngg
  9. for jj = 1:ngg
  10. Pe(ii) = Pe(ii) + E(ii)*E(jj)*Y(ii, jj)*cos(th(ii, jj)-x(ii)+x(jj));
  11. end, end
  12. for k=1:ngg
  13. xdot(k)=x(k+ngg);
  14. xdot(k+ngg)=(pi*f)/H(k)*(Pm(k)-Pe(k));
  15. end
  16. xdot=xdot';        % use with MATLAB 5 (remove for MATLAB 4)