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.
0001 function TorF = isload(gen) 0002 %ISLOAD Checks for dispatchable loads. 0003 % TORF = ISLOAD(GEN) returns a column vector of 1's and 0's. The 1's 0004 % correspond to rows of the GEN matrix which represent dispatchable loads. 0005 % The current test is Pmin < 0 AND Pmax == 0. 0006 % This may need to be revised to allow sensible specification 0007 % of both elastic demand and pumped storage units. 0008 0009 % MATPOWER 0010 % Copyright (c) 2005-2016, Power Systems Engineering Research Center (PSERC) 0011 % by Ray Zimmerman, PSERC Cornell 0012 % 0013 % This file is part of MATPOWER. 0014 % Covered by the 3-clause BSD License (see LICENSE file for details). 0015 % See http://www.pserc.cornell.edu/matpower/ for more info. 0016 0017 [GEN_BUS, PG, QG, QMAX, QMIN, VG, MBASE, GEN_STATUS, PMAX, PMIN, ... 0018 MU_PMAX, MU_PMIN, MU_QMAX, MU_QMIN, PC1, PC2, QC1MIN, QC1MAX, ... 0019 QC2MIN, QC2MAX, RAMP_AGC, RAMP_10, RAMP_30, RAMP_Q, APF] = idx_gen; 0020 0021 TorF = gen(:, PMIN) < 0 & gen(:, PMAX) == 0;