0% found this document useful (0 votes)
23 views2 pages

Case 09

The document provides power flow data for a 9 bus, 3 generator case, including system MVA base, bus data, generator data, and branch data. The data is structured in a format suitable for power system analysis, based on Joe H. Chow's book. It also includes generator cost data for operational planning.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views2 pages

Case 09

The document provides power flow data for a 9 bus, 3 generator case, including system MVA base, bus data, generator data, and branch data. The data is structured in a format suitable for power system analysis, based on Joe H. Chow's book. It also includes generator cost data for operational planning.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

# Copyright (c) 1996-2015 PSERC. All rights reserved.

# Use of this source code is governed by a BSD-style


# license that can be found in the LICENSE file.

"""Power flow data for 9 bus, 3 generator case.


"""

from numpy import array

def case9():
"""Power flow data for 9 bus, 3 generator case.
Please see L{caseformat} for details on the case file format.

Based on data from Joe H. Chow's book, p. 70.

@return: Power flow data for 9 bus, 3 generator case.


"""
ppc = {"version": '2'}

##----- Power Flow Data -----##


## system MVA base
ppc["baseMVA"] = 100.0

## bus data
# bus_i type Pd Qd Gs Bs area Vm Va baseKV zone Vmax Vmin
ppc["bus"] = array([
[1, 3, 0, 0, 0, 0, 1, 1, 0, 345, 1, 1.1, 0.9],
[2, 2, 0, 0, 0, 0, 1, 1, 0, 345, 1, 1.1, 0.9],
[3, 2, 0, 0, 0, 0, 1, 1, 0, 345, 1, 1.1, 0.9]
## [4, 1, 0, 0, 0, 0, 1, 1, 0, 345, 1, 1.1, 0.9],
## [5, 1, 90, 30, 0, 0, 1, 1, 0, 345, 1, 1.1, 0.9],
## [6, 1, 0, 0, 0, 0, 1, 1, 0, 345, 1, 1.1, 0.9],
## [7, 1, 100, 35, 0, 0, 1, 1, 0, 345, 1, 1.1, 0.9],
## [8, 1, 0, 0, 0, 0, 1, 1, 0, 345, 1, 1.1, 0.9],
## [9, 1, 125, 50, 0, 0, 1, 1, 0, 345, 1, 1.1, 0.9]
])

## generator data
# 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
ppc["gen"] = array([
[1, 0, 0, 300, -300, 1, 100, 1, 250, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0],
[2, 163, 0, 300, -300, 1, 100, 1, 300, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0],
[3, 85, 0, 300, -300, 1, 100, 1, 270, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
])

## branch data
# fbus, tbus, r, x, b, rateA, rateB, rateC, ratio, angle, status, angmin,
angmax
ppc["branch"] = array([
[1, 2, 0, 0.0576, 0, 250, 250, 250, 0, 0, 1, -360, 360],
[1, 3, 0.017, 0.092, 0.158, 250, 250, 250, 0, 0, 1, -360, 360],
[2, 3, 0.039, 0.17, 0.358, 150, 150, 150, 0, 0, 1, -360, 360]
## [3, 6, 0, 0.0586, 0, 300, 300, 300, 0, 0, 1, -360, 360],
## [6, 7, 0.0119, 0.1008, 0.209, 150, 150, 150, 0, 0, 1, -360, 360],
## [7, 8, 0.0085, 0.072, 0.149, 250, 250, 250, 0, 0, 1, -360, 360],
## [8, 2, 0, 0.0625, 0, 250, 250, 250, 0, 0, 1, -360, 360],
## [8, 9, 0.032, 0.161, 0.306, 250, 250, 250, 0, 0, 1, -360, 360],
## [9, 4, 0.01, 0.085, 0.176, 250, 250, 250, 0, 0, 1, -360, 360]
])

##----- OPF Data -----##


## area data
# area refbus
#ppc["areas"] = array([
# [1, 5]
# ])

## generator cost data


# 1 startup shutdown n x1 y1 ... xn yn
# 2 startup shutdown n c(n-1) ... c0
ppc["gencost"] = array([
[2, 1500, 0, 3, 0.11, 5, 150],#0.11
[2, 2000, 0, 3, 0.085, 1.2, 600],#0.085
[2, 3000, 0, 3, 0.1225, 1, 335] #0.1225
])

return ppc

You might also like