idx_area.m

来自「求最优潮流的matlab程序」· M 代码 · 共 23 行

M
23
字号
function [AREA_I, PRICE_REF_BUS] = idx_area%IDX_AREA   Defines constants for named column indices to areas matrix.%   [AREA_I, PRICE_REF_BUS] = idx_area%%   The index, name and meaning of each column of the areas matrix is given%   below:% %   columns 1-2%    1  AREA_I       	area number%    2  PRICE_REF_BUS	price reference bus for this area%   MATPOWER%   $Id: idx_area.m,v 1.6 2004/12/15 22:46:26 ray Exp $%   by Ray Zimmerman, PSERC Cornell%   Copyright (c) 1996-2004 by Power System Engineering Research Center (PSERC)%   See http://www.pserc.cornell.edu/matpower/ for more info.%% define the indicesAREA_I          = 1;    %% area numberPRICE_REF_BUS   = 2;    %% price reference bus for this areareturn;

⌨️ 快捷键说明

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