Home > matpower7.1 > most > lib > t > ex_xgd.m

ex_xgd

PURPOSE ^

EX_XGD Example xGenData table for stochastic OPF.

SYNOPSIS ^

function xgd_table = ex_xgd(mpc)

DESCRIPTION ^

EX_XGD  Example xGenData table for stochastic OPF.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function xgd_table = ex_xgd(mpc)
0002 %EX_XGD  Example xGenData table for stochastic OPF.
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 https://github.com/MATPOWER/most 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     1e-8    250     2e-8    250     1e-9    1e-9;
0023     1e-8    250     2e-8    250     1e-9    1e-9;
0024     1e-8    600     2e-8    600     1e-9    1e-9;
0025     1e-8    800     2e-8    800     1e-9    1e-9;
0026 ];

Generated on Fri 09-Oct-2020 11:21:31 by m2html © 2005