Home > matpower5.0 > t > t_case9_pfv2.m

t_case9_pfv2

PURPOSE ^

T_CASE9_PFV2 Power flow data for 9 bus, 3 generator case, no OPF data.

SYNOPSIS ^

function mpc = t_case9_pfv2

DESCRIPTION ^

T_CASE9_PFV2   Power flow data for 9 bus, 3 generator case, no OPF data.
   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 mpc = t_case9_pfv2
0002 %T_CASE9_PFV2   Power flow data for 9 bus, 3 generator case, no OPF data.
0003 %   Please see CASEFORMAT for details on the case file format.
0004 
0005 %   MATPOWER
0006 %   $Id: t_case9_pfv2.m 1559 2010-03-10 18:08:32Z ray $
0007 
0008 %% MATPOWER Case Version 2
0009 mpc.version = '2';
0010 
0011 %%-----  Power Flow Data  -----%%
0012 %% system MVA base
0013 mpc.baseMVA = 100;
0014 
0015 %% bus data
0016 %    bus_i    type    Pd    Qd    Gs    Bs    area    Vm    Va    baseKV    zone    Vmax    Vmin
0017 mpc.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    Pc1    Pc2    Qc1min    Qc1max    Qc2min    Qc2max    ramp_agc    ramp_10    ramp_30    ramp_q    apf
0031 mpc.gen = [
0032     1    0    0    300    -300    1    100    1    250    90    0    0    0    0    0    0    0    0    0    0    0;
0033     2    163    0    300    -300    1    100    1    300    10    0    0    0    0    0    0    0    0    0    0    0;
0034     30    85    0    300    -300    1    100    1    270    10    0    0    0    0    0    0    0    0    0    0    0;
0035 ];
0036 
0037 %% branch data
0038 %    fbus    tbus    r    x    b    rateA    rateB    rateC    ratio    angle    status    angmin    angmax
0039 mpc.branch = [
0040     1    4    0    0.0576    0    250    250    250    0    0    1    -360    360;
0041     4    5    0.017    0.092    0.158    250    250    250    0    0    1    -360    360;
0042     5    6    0.039    0.17    0.358    150    150    150    0    0    1    -360    360;
0043     30    6    0    0.0586    0    300    300    300    0    0    1    -360    360;
0044     6    7    0.0119    0.1008    0.209    40    150    150    0    0    1    -360    360;
0045     7    8    0.0085    0.072    0.149    250    250    250    0    0    1    -360    360;
0046     8    2    0    0.0625    0    250    250    250    0    0    1    -360    360;
0047     8    9    0.032    0.161    0.306    250    250    250    0    0    1    -360    360;
0048     9    4    0.01    0.085    0.176    250    250    250    0    0    1    -360    360;
0049 ];

Generated on Mon 26-Jan-2015 15:21:31 by m2html © 2005