📄 isload.m
字号:
function TorF = isload(gen)%ISLOAD Checks for dispatchable loads.% TorF = isload(gen) returns a column vector of 1's and 0's. The 1's% correspond to rows of the gen matrix which represent dispatchable loads.% The current test is Pmin < 0 AND Pmax == 0.% This may need to be revised to allow sensible specification% of both elastic demand and pumped storage units.% MATPOWER% $Id: isload.m,v 1.1 2005/01/21 20:36:16 ray Exp $% by Ray Zimmerman, PSERC Cornell% Copyright (c) 2005 by Power System Engineering Research Center (PSERC)% See http://www.pserc.cornell.edu/matpower/ for more info.[GEN_BUS, PG, QG, QMAX, QMIN, VG, MBASE, ... GEN_STATUS, PMAX, PMIN, MU_PMAX, MU_PMIN, MU_QMAX, MU_QMIN] = idx_gen;TorF = gen(:, PMIN) < 0 & gen(:, PMAX) == 0;return;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -