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

其他行业

开发平台:

Matlab

  1. % This function forms the bus admittance matrix including load
  2. % admittances during fault.  The corresponding reduced bus
  3. % admittance matrix is obtained for transient stability study.
  4. %
  5. % Copyright (c) 1998 by H. Saadat
  6. function Ypf=ybusdf(Ybus, nbus1, nbust, nf)
  7. global Pm f H E  Y th ngg
  8. nbusf=nbust-1;
  9. Ybus(:,nf:nbusf)=Ybus(:,nf+1:nbust);
  10. Ybus(nf:nbusf,:)=Ybus(nf+1:nbust,:);
  11. YLL=Ybus(1:nbus1-1, 1:nbus1-1);
  12. YGG = Ybus(nbus1:nbusf, nbus1:nbusf);
  13. YLG = Ybus(1:nbus1-1, nbus1:nbusf);
  14. Ypf=YGG-YLG.'*inv(YLL)*YLG;