?? idx_disp.m
字號:
function [QUANTITY, PRICE, FCOST, VCOST, SCOST, PENALTY] = idx_disp%IDX_DISP Defines constants for named column indices to dispatch matrix.% [QUANTITY, PRICE, FCOST, VCOST, SCOST, PENALTY] = idx_disp%% The index, name and meaning of each column of the dispatch matrix is given% below:% % columns 1-6% 1 QUANTITY quantity produced by generator in MW% 2 PRICE market price for power produced by generator in $/MWh% 3 FCOST fixed cost in $/MWh% 4 VCOST variable cost in $/MWh% 5 SCOST startup cost in $% 6 PENALTY penalty cost in $ (not used)% MATPOWER% $Id: idx_disp.m,v 1.4 2004/12/15 22:46:31 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 $ (not used)return;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -