⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 runmkt.m

📁 MATPOWER 一款基于MATLAB的电力系统潮流计算及优化的程序
💻 M
字号:
function [MVAbase, cq, cp, bus, gen, gencost, branch, f, dispatch, success, et] = ...                runmkt(casename, q, p, mkt, max_p, u0, t, mpopt, fname, solvedcase)%RUNMKT  Runs smart market for PowerWeb, computing a new generation%        schedule from a set of offers and bids.%%   [baseMVA, cq, cp, bus, gen, gencost, branch, f, dispatch, success, et] = ...%           runmkt(casename, q, p, mkt, max_p, u0, t, mpopt, fname, solvedcase)%%   Computes the new generation and price schedules based on the offers%   submitted, where offers are specified by q and p, mkt tells it what%   type of market to use, max_p is the price cap, u0 is a vector%   containing the commitment status of each generator from the previous%   period (for computing startup/shutdown costs), t is the time duration%   of the dispatch period in hours, and mpopt is a MATPOWER options vector%   (see 'help mpoption' for details). Uses default options if mpopt is not%   given. The rows in q and p correspond to the rows in gen and gencost,%   and each column corresponds to another block in the marginal offer or%   bid. The market codes are defined as the sum of the%   following numbers:%        1000                - all markets%         100 * adjust4loc   - adjust4loc = 0 to ignore network,%                              1 to compute locational adjustments via AC OPF,%                              2 to compute them via DC OPF%          10 * auction_type - where the values for auction_type are as follows:%%      0 - discriminative pricing (price equal to offer or bid)%      1 - last accepted offer auction%      2 - first rejected offer auction%      3 - last accepted bid auction%      4 - first rejected bid auction%      5 - first price auction (marginal unit, offer or bid, sets the price)%      6 - second price auction (if offer is marginal, then price is set%                                   by min(FRO,LAB), if bid, then max(FRB,LAO)%      7 - split the difference pricing (price set by last accepted offer & bid)%      8 - LAO sets seller price, LAB sets buyer price%%   If p or q are empty or not given, they are created from the generator%   cost function. The default market code is 1150, where the marginal%   block (offer or bid) sets the price. The default max_p is 500, the%   default u0 is all ones (assume everything was running) and the default%   duration t is 1 hour. The results may optionally be printed to a file%   (appended if the file exists) whose name is given in fname (in addition%   to printing to STDOUT). Optionally returns the final values of baseMVA,%   cq, cp, bus, gen, gencost, branch, f, dispatch, success, and et. If a%   name is given in solvedcase, the solved case will be written to a case file%   in MATPOWER format with the specified name with a '.m' extension added.%   MATPOWER%   $Id: runmkt.m,v 1.12 2005/10/31 15:02:25 ray Exp $%   by Ray Zimmerman, PSERC Cornell%   Copyright (c) 1996-2005 by Power System Engineering Research Center (PSERC)%   See http://www.pserc.cornell.edu/matpower/ for more info.%%-----  initialize  -----%% default argumentsif nargin < 10    solvedcase = '';                        %% don't save solved case    if nargin < 9        fname = '';                         %% don't print results to a file        if nargin < 8            mpopt = mpoption;               %% use default options            if nargin < 7                t = [];                     %% use default dispatch period duration (hours)                if nargin < 6                    u0 = [];                %% use default for previous gen commitment                    if nargin < 5                        max_p = 500;        %% use default price cap                        if nargin < 4                            mkt = [];       %% use default market                            if nargin < 3                                q = []; p = []; %% p & q not defined (use gencost)                                if nargin < 1                                    casename = 'case9'; %% default data file is 'case9.m'                                end                            end                        end                    end                end            end        end    endend%% define named indices into data matrices[PQ, PV, REF, NONE, BUS_I, BUS_TYPE, PD, QD, GS, BS, BUS_AREA, VM, ...    VA, BASE_KV, ZONE, VMAX, VMIN, LAM_P, LAM_Q, MU_VMAX, MU_VMIN] = idx_bus;[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;%% read data & convert to internal bus numberingmpc = loadcase(casename);%% find indices for gens and variable loadsng = size(mpc.gen, 1);gbus = mpc.gen(:, GEN_BUS);G = find( ~isload(mpc.gen) );   %% real generatorsL = find(  isload(mpc.gen) );   %% variable loads%% create offers, bidsif isempty(q) | isempty(p)	offers.P.qty = [];	offers.P.prc = [];	bids.P.qty = [];	bids.P.prc = [];else	offers.P.qty = q(G, :);	offers.P.prc = p(G, :);	bids.P.qty = q(L, :);	bids.P.prc = p(L, :);end%% parse market codecode        = mkt - 1000;adjust4loc  = fix(code/100);    code = rem(code, 100);auction_type= fix(code/10);if adjust4loc == 2    OPF = 'DC';elseif adjust4loc == 1    OPF = 'AC';else    error('invalid market code');end%% eliminates offers (but not bids) above max_plim = struct( 'P', struct( 'max_offer',         max_p, ...                           'max_cleared_offer', max_p ) );mkt = struct(   'auction_type', auction_type, 'OPF', OPF, ...                'lim', lim, 't', t', 'u0', u0   );[mpc_out, co, cb, f, dispatch, success, et] = ...                runmarket(mpc, offers, bids, mkt, mpopt, fname, solvedcase);cq(G, :) = co.P.qty;cp(G, :) = co.P.prc;cq(L, :) = cb.P.qty;cp(L, :) = cb.P.prc;bus = mpc_out.bus;gen = mpc_out.gen;gencost = mpc_out.gencost;branch = mpc_out.branch;%% this is just to prevent it from printing baseMVA%% when called with no output argumentsif nargout, MVAbase = mpc_out.baseMVA; endreturn;

⌨️ 快捷键说明

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