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

其他行业

开发平台:

Matlab

  1. %  This program prints the power flow solution in a tabulated form
  2. %  on the screen.
  3. %
  4. %  Copyright (C) 1998 by H. Saadat.
  5. %clc
  6. disp(tech)
  7. fprintf('                      Maximum Power Mismatch = %g n', maxerror)
  8. fprintf('                             No. of Iterations = %g nn', iter)
  9. head =['    Bus  Voltage  Angle    ------Load------    ---Generation---   Injected'
  10.        '    No.  Mag.     Degree     MW       Mvar       MW       Mvar       Mvar '
  11.        '                                                                          '];
  12. disp(head)
  13. for n=1:nbus
  14.      fprintf(' %5g', n), fprintf(' %7.3f', Vm(n)),
  15.      fprintf(' %8.3f', deltad(n)), fprintf(' %9.3f', Pd(n)),
  16.      fprintf(' %9.3f', Qd(n)),  fprintf(' %9.3f', Pg(n)),
  17.      fprintf(' %9.3f ', Qg(n)), fprintf(' %8.3fn', Qsh(n))
  18. end
  19.     fprintf('      n'), fprintf('    Total              ')
  20.     fprintf(' %9.3f', Pdt), fprintf(' %9.3f', Qdt),
  21.     fprintf(' %9.3f', Pgt), fprintf(' %9.3f', Qgt), fprintf(' %9.3fnn', Qsht)