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

ex_xgd_res

PURPOSE ^

EX_XGD_RES Example xGenData table for stochastic OPF w/reserve costs.

SYNOPSIS ^

function xgd_table = ex_xgd_res(mpc)

DESCRIPTION ^

EX_XGD_RES  Example xGenData table for stochastic OPF w/reserve costs.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function xgd_table = ex_xgd_res(mpc)
0002 %EX_XGD_RES  Example xGenData table for stochastic OPF w/reserve costs.
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     'PositiveActiveReservePrice', ...
0015             'PositiveActiveReserveQuantity', ...
0016                     'NegativeActiveReservePrice', ...
0017                             'NegativeActiveReserveQuantity', ...
0018                                     'PositiveActiveDeltaPrice', ...
0019                                             'NegativeActiveDeltaPrice', ...
0020 };
0021 xgd_table.data = [
0022     5       250     10      0       1e-9    1e-9;
0023     1e-8    100     2e-8    0       1e-9    1e-9;
0024     1.5     600     3       0       1e-9    1e-9;
0025     1e-8    800     2e-8    0       1e-9    1e-9;
0026 ];

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