pqcost.m

来自「MATLAB潮流计算和最优潮流计算的程序」· M 代码 · 共 30 行

M
30
字号
function [pcost, qcost] = pqcost(gencost, ng, on)
%PQCOST  Splits the gencost variable into two pieces if costs are given for Qg.
%   [pcost, qcost] = pqcost(gencost, ng, on) checks whether gencost has cost
%   information for reactive power generation (rows ng+1 to 2*ng). If so it
%   returns the first ng rows in pcost and the last ng rows in qcost.
%   Otherwise, leaves qcost empty. Also does some error checking.
%   If on is specified (list of indices of generators which are on line)
%   it only returns the rows corresponding to these generators.

%   MATPOWER Version 2.0
%   by Ray Zimmerman, PSERC Cornell    9/19/97
%   Copyright (c) 1997 by Power System Engineering Research Center (PSERC)
%   See http://www.pserc.cornell.edu/ for more info.

if nargin < 3
	on = [1:ng]';
end

if size(gencost, 1) == ng
	pcost = gencost(on, :);
	qcost = [];
elseif size(gencost, 1) == 2 * ng
	pcost = gencost(on, :);
	qcost = gencost(on+ng, :);
else
	error('gencost has wrong number of rows');
end

return;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?