0

PSSE bus codes

A reference of all the bus types in PSSE.

Type 1: Load Bus
Type 2: Generator Bus
Type 3: Swing Bus
Type 4: Disconnected
Type 5: Load Bus (at boundary of an area)

Have you ever used Type 5? I only came across it today in my research.

Here is how to create a new type 1 bus

busnumber, busname = 20020, "PARK_2"
psspy.bus_data_2(i=busnumber, intgar1=1, name=busname)

Beware though, if bus number 20020 already existed then this would change it's type and name - It wouldn't create a new bus at all.

JervisW's avatar
1.3k
JervisW
asked 2012-10-16 19:37:46 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

2 Answers

1

I had this (type 5) error crop up using

psspy.extr(0)

to extract sbs 0, where there were branches to deleted buses connected to in service buses they became type 5. An interim fix (as you can't actually do any operations with a type 5 bus in the case) is to use

psspy.extr(0,0,[0,0])

Alastair P's avatar
26
Alastair P
answered 2014-07-21 17:02:40 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments
0

Hello,

I am getting an error called: "3 in-service branches connected to type 5 bus 3WNDTR [] * BUS"

Can you tell me what this is and how to go about solving this error..

Avi89's avatar
1
Avi89
answered 2013-04-29 05:38:07 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments

Your Answer

Login/Signup to Answer