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

ex_wind_uc

PURPOSE ^

EX_WIND_UC Example Wind data file for stochastic unit commitment.

SYNOPSIS ^

function wind = ex_wind_uc(mpc)

DESCRIPTION ^

EX_WIND_UC  Example Wind data file for stochastic unit commitment.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function wind = ex_wind_uc(mpc)
0002 %EX_WIND_UC  Example Wind data file 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 %%-----  wind  -----
0013 %% generator data
0014 %    bus    Pg    Qg    Qmax    Qmin    Vg    mBase    status    Pmax    Pmin    Pc1    Pc2    Qc1min    Qc1max    Qc2min    Qc2max    ramp_agc    ramp_10    ramp_30    ramp_q    apf
0015 wind.gen = [
0016     2    0    0    50    -50    1    100    1    100    0    0    0    0    0    0    0    0    200    200    0    0;
0017 ];
0018 %% xGenData
0019 wind.xgd_table.colnames = {
0020     'CommitKey', ...
0021         'CommitSched', ...
0022             'InitialPg', ...
0023                 'RampWearCostCoeff', ...
0024                     'PositiveActiveReservePrice', ...
0025                         'PositiveActiveReserveQuantity', ...
0026                             'NegativeActiveReservePrice', ...
0027                                 'NegativeActiveReserveQuantity', ...
0028                                     'PositiveActiveDeltaPrice', ...
0029                                         'NegativeActiveDeltaPrice', ...
0030                                             'PositiveLoadFollowReservePrice', ...
0031                                                 'PositiveLoadFollowReserveQuantity', ...
0032                                                     'NegativeLoadFollowReservePrice', ...
0033                                                         'NegativeLoadFollowReserveQuantity', ...
0034 };
0035 
0036 wind.xgd_table.data = [
0037     2    1    0    0    1e-8    200    2e-8    200    1e-9    1e-9    1e-6    200    1e-6    200;
0038 ];

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