isload.m

来自「matpower软件下」· M 代码 · 共 21 行

M
21
字号
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 + =
减小字号Ctrl + -
显示快捷键?