⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gams.m

📁 用于电力系统的一个很好的分析软件
💻 M
字号:
function [n,data,Li,Lj,Gh,Bh,Ghc,Bhc] = gams(a,method)global Bus GAMS Settingsn = int2str(a.n);nl = [1:a.n];nb = Bus.n;% Flows on transmission linestps = a.con(:,11).*exp(j*a.con(:,12)*pi/180);r = a.con(:,8);x = a.con(:,9);chrg =  a.u.*a.con(:,10)/2;z = r + j*x;y = a.u./z;g = real(y);b = imag(y);m = tps.*conj(tps);y1 = tps.*y./m;g1 = real(y1);b1 = imag(y1);g0 = g./m;if GAMS.flow == 1 | GAMS.flow == 3  b0 = chrg;else  b0 = chrg-b./m;endswitch method case 1  Li = [];  Lj = [];   case 2  Li = sparse(nl,a.fr,b,a.n,nb);  Lj = sparse(nl,a.to,b,a.n,nb); otherwise  Li = sparse(nl,a.fr,1,a.n,nb);  Lj = sparse(nl,a.to,1,a.n,nb);endif method ~= 1  Gh = real(a.Y);  Bh = imag(a.Y);  Gh(1,1) = Gh(1,1) + 1e-8;  Bh(1,1) = Bh(1,1) + 1e-8;else  Gh = [];  Bh = [];end  switch method case {4,6,7}  if GAMS.line    a.u(GAMS.line) = 0;    a = build_y(a);    Ghc = real(a.Y);    Bhc = imag(a.Y);  else    Ghc = Gh;    Bhc = Bh;  end otherwise  Ghc = [];  Bhc = [];endif GAMS.flow  Pijmax = getflowmax(a,GAMS.flow);  Pjimax = Pijmax;else  Pijmax = 999*Settings.mva*ones(a.n,1);  Pjimax = 999*Settings.mva*ones(a.n,1);enddata.val = [g1,b1,g0,b0,Pijmax,Pjimax];data.labels = {cellstr(num2str([1:a.n]')), ...	    {'g','b','g0','b0','Pijmax','Pjimax'}};data.name = 'N';

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -