• 大小: 1KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-05-15
  • 语言: Matlab
  • 标签: chaoliujisua  

资源简介

matlab中的直流潮流计算的程序 直流潮流计算= 用于计算

资源截图

代码片段和文件信息

%%-----  run the power flow  -----                                          %%%%%%%%%%%%%%%%直流潮流计算固定块。
%% initial state
Va0 = bus(: VA) * (pi/180);                                               %%转换为弧度。
%% build B matrices and phase shift injections
[B Bf Pbusinj Pfinj] = makeBdc(baseMVA bus branch);                   %%计算出B矩阵 从而利用makesbus计算出输入功率的电压角度和末端功率的输出角度
%% compute complex bus power injections (generation - load)
Pbus = real(makeSbus(baseMVA bus gen)) - Pbusinj - bus(: GS) / baseMVA; %%real里面计算母线的复功率S;取real后相当于有功功率P。
%% “run“ the power flow   
Va = dcpf(B Pbus Va0 ref pv pq);                                      %%直

评论

共有 条评论

相关资源