forked from MATPOWER/matpower
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathisload.m
21 lines (18 loc) · 939 Bytes
/
isload.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
% Copyright (c) 2005-2016, Power Systems Engineering Research Center (PSERC)
% by Ray Zimmerman, PSERC Cornell
%
% This file is part of MATPOWER.
% Covered by the 3-clause BSD License (see LICENSE file for details).
% 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, PC1, PC2, QC1MIN, QC1MAX, ...
QC2MIN, QC2MAX, RAMP_AGC, RAMP_10, RAMP_30, RAMP_Q, APF] = idx_gen;
TorF = gen(:, PMIN) < 0 & gen(:, PMAX) == 0;