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

ex_xgd_ramp

PURPOSE ^

EX_XGD_RAMP Example xGenData table for multiperiod DC OPF with ramping.

SYNOPSIS ^

function xgd_table = ex_xgd_ramp(mpc)

DESCRIPTION ^

EX_XGD_RAMP  Example xGenData table for multiperiod DC OPF with ramping.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function xgd_table = ex_xgd_ramp(mpc)
0002 %EX_XGD_RAMP  Example xGenData table for multiperiod DC OPF with ramping.
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                                                     'PositiveLoadFollowReservePrice', ...
0021                                                             'PositiveLoadFollowReserveQuantity', ...
0022                                                                 'NegativeLoadFollowReservePrice', ...
0023                                                                         'NegativeLoadFollowReserveQuantity', ...
0024 };
0025 xgd_table.data = [
0026     5       250     10      250     1e-9    1e-9    1e-6    250 1e-6    250;
0027     1e-8    250     2e-8    250     1e-9    1e-9    1e-6    250 1e-6    250;
0028     1.5     600     3       600     1e-9    1e-9    10      100 10      250;
0029     1e-8    800     2e-8    800     1e-9    1e-9    1e-6    800 1e-6    800;
0030 ];

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