gycall.m
来自「电力系统分析计算程序」· M 代码 · 共 18 行
M
18 行
function Gycall(a)global DAEif ~a.n, return, endV = DAE.y(a.vbus);at = a.con(:,8);bt = a.con(:,10);P0 = a.dat(:,1);Q0 = a.dat(:,2);V0 = a.dat(:,3);DAE.Gy = DAE.Gy + sparse(a.bus,a.vbus,a.u.*P0.* ... (V./V0).^(at-1).*at./V0,DAE.m,DAE.m);DAE.Gy = DAE.Gy + sparse(a.vbus,a.vbus,a.u.*Q0.* ... (V./V0).^(bt-1).*bt./V0,DAE.m,DAE.m);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?