Home > matpower6.0 > most > t > ex_xgd_uc.m

ex_xgd_uc

PURPOSE ^

EX_XGD_UC Example xGenData table for stochastic unit commitment.

SYNOPSIS ^

function xgd_table = ex_xgd_uc(mpc)

DESCRIPTION ^

EX_XGD_UC  Example xGenData table for stochastic unit commitment.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function xgd_table = ex_xgd_uc(mpc)
0002 %EX_XGD_UC  Example xGenData table for stochastic unit commitment.
0003 
0004 %   MOST
0005 %   Copyright (c) 2015-2016, Power Systems Engineering Research Center (PSERC)
0006 %   by Ray Zimmerman, PSERC Cornell
0007 %
0008 %   This file is part of MOST.
0009 %   Covered by the 3-clause BSD License (see LICENSE file for details).
0010 %   See http://www.pserc.cornell.edu/matpower/ for more info.
0011 
0012 %% initial xGenData
0013 xgd_table.colnames = {
0014     'CommitKey', ...
0015         'CommitSched', ...
0016             'MinUp', ...
0017                 'MinDown', ...
0018                     'PositiveActiveReservePrice', ...
0019                             'PositiveActiveReserveQuantity', ...
0020                                     'NegativeActiveReservePrice', ...
0021                                             'NegativeActiveReserveQuantity', ...
0022                                                     'PositiveActiveDeltaPrice', ...
0023                                                             'NegativeActiveDeltaPrice', ...
0024                                                                     'PositiveLoadFollowReservePrice', ...
0025                                                                             'PositiveLoadFollowReserveQuantity', ...
0026                                                                                 'NegativeLoadFollowReservePrice', ...
0027                                                                                         'NegativeLoadFollowReserveQuantity', ...
0028 };
0029 xgd_table.data = [
0030     1   1   1   1   5       250     10      250     1e-9    1e-9    1e-6    250 1e-6    250;
0031     1   1   3   1   1e-8    250     2e-8    250     1e-9    1e-9    1e-6    250 1e-6    250;
0032     1   1   1   1   1.5     600     3       600     1e-9    1e-9    10      100 10      250;
0033     2   1   1   1   1e-8    800     2e-8    800     1e-9    1e-9    1e-6    800 1e-6    800;
0034 ];

Generated on Fri 16-Dec-2016 12:45:37 by m2html © 2005