Home > matpower6.0 > extras > sdp_pf > t_case9mod_opf.m

t_case9mod_opf

PURPOSE ^

T_CASE9MOD_OPF Power flow data for 9 bus, 3 generator case, with OPF data.

SYNOPSIS ^

function [baseMVA, bus, gen, branch, areas, gencost] = t_case9mod_opf

DESCRIPTION ^

T_CASE9MOD_OPF    Power flow data for 9 bus, 3 generator case, with OPF data.
   This is the same as t_case9_opf except for a line-flow limit of 100 MVA
   rather than 40 MVA for the line between buses 6 and 7. This less strict
   line-flow limit results in an exact semidefinite relaxation for this
   problem. Also all lines have minimum resistances of 1e-4 per unit.
   Please see CASEFORMAT for details on the case file format.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function [baseMVA, bus, gen, branch, areas, gencost]  = t_case9mod_opf
0002 %T_CASE9MOD_OPF    Power flow data for 9 bus, 3 generator case, with OPF data.
0003 %   This is the same as t_case9_opf except for a line-flow limit of 100 MVA
0004 %   rather than 40 MVA for the line between buses 6 and 7. This less strict
0005 %   line-flow limit results in an exact semidefinite relaxation for this
0006 %   problem. Also all lines have minimum resistances of 1e-4 per unit.
0007 %   Please see CASEFORMAT for details on the case file format.
0008 
0009 %% MATPOWER Case Format : Version 1
0010 
0011 %%-----  Power Flow Data  -----%%
0012 %% system MVA base
0013 baseMVA = 100;
0014 
0015 %% bus data
0016 %    bus_i    type    Pd    Qd    Gs    Bs    area    Vm    Va    baseKV    zone    Vmax    Vmin
0017 bus = [
0018     1    3    0    0    0    0    1    1    0    345    1    1.1    0.9;
0019     2    2    0    0    0    0    1    1    0    345    1    1.1    0.9;
0020     30    2    0    0    0    0    1    1    0    345    1    1.1    0.9;
0021     4    1    0    0    0    0    1    1    0    345    1    1.1    0.9;
0022     5    1    90    30    0    0    1    1    0    345    1    1.1    0.9;
0023     6    1    0    0    0    0    1    1    0    345    1    1.1    0.9;
0024     7    1    100    35    0    0    1    1    0    345    1    1.1    0.9;
0025     8    1    0    0    0    0    1    1    0    345    1    1.1    0.9;
0026     9    1    125    50    0    0    1    1    0    345    1    1.1    0.9;
0027 ];
0028 
0029 %% generator data
0030 %    bus    Pg    Qg    Qmax    Qmin    Vg    mBase    status    Pmax    Pmin
0031 gen = [
0032     1    0    0    300    -300    1    100    1    250    90;
0033     2    163    0    300    -300    1    100    1    300    10;
0034     30    85    0    300    -300    1    100    1    270    10;
0035 ];
0036 
0037 %% branch data
0038 %    fbus    tbus    r    x    b    rateA    rateB    rateC    ratio    angle    status
0039 branch = [
0040     1    4    0.0001    0.0576    0    0    250    250    0    0    1;
0041     4    5    0.0170    0.0920    0.158    0    250    250    0    0    1;
0042     5    6    0.0390    0.1700    0.358    150    150    150    0    0    1;
0043     30    6    0.0001    0.0586    0    0    300    300    0    0    1;
0044     6    7    0.0119    0.1008    0.209    100    150    150    0    0    1;
0045     7    8    0.0085    0.0720    0.149    250    250    250    0    0    1;
0046     8    2    0.0001    0.0625    0    250    250    250    0    0    1;
0047     8    9    0.0320    0.1610    0.306    250    250    250    0    0    1;
0048     9    4    0.0100    0.0850    0.176    250    250    250    0    0    1;
0049 ];
0050 
0051 %%-----  OPF Data  -----%%
0052 %% area data
0053 %    area    refbus
0054 areas = [
0055     1    5;
0056 ];
0057 
0058 %% generator cost data
0059 %    1    startup    shutdown    n    x1    y1    ...    xn    yn
0060 %    2    startup    shutdown    n    c(n-1)    ...    c0
0061 gencost = [
0062     1    0    0    4    0    0    100    2500    200    5500    250    7250;
0063     2    0    0    2    24.035    -403.5    0    0    0    0    0    0;
0064     1    0    0    3    0    0    200    3000    300    5000    0    0;
0065 ];

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