idx_disp.m

来自「以上所传的内容为电力系统比较全面的分析程序,才用的是matlab编写m的文件」· M 代码 · 共 20 行

M
20
字号
function [QUANTITY, PRICE, FCOST, VCOST, SCOST, PENALTY] = idx_disp%IDX_DISP   Defines variables for column indices to dispatch.%   [QUANTITY, PRICE, FCOST, VCOST, SCOST, PENALTY] = idx_disp%   MATPOWER%   $Id: idx_disp.m,v 1.3 2004/08/23 20:56:30 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 indicesQUANTITY        = 1;    %% quantity produced by generator in MWPRICE           = 2;    %% market price for power produced by generator in $/MWhFCOST           = 3;    %% fixed cost in $/MWhVCOST           = 4;    %% variable cost in $/MWhSCOST           = 5;    %% startup cost in $PENALTY         = 6;    %% penalty cost in $return;

⌨️ 快捷键说明

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