0

How to create a subsystem of transmission lines whose "From bus", "To bus" and Circuit ID are known

Normally, my approach would be to create a bus subsystem of areas and monitor all the transmission lines within the subsystem. However, this increases my simulation time since I am not interested in all the lines. Also, I know the from bus, to bus and the circuit ID for the transmission lines I am interested in. Is there any way to create a subsystem of only those transmission lines so that I can get other values corresponding to these lines like 'STATUS', 'PU', 'MAXMVA' etc.

Rounak's avatar
3
Rounak
asked 2017-08-22 07:46:39 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

0

Having a list of buses (include the from-bus and the to-bus for the lines of interest. The circuit ID is not used here.):

buses = [101,101,201, 202, 301, 302]
psspy.bsys(sid=1, numbus=len(buses), busnum=buses)

The buses list can be read from a file with the appropriate coding.

jconto's avatar
2.9k
jconto
answered 2017-08-22 11:18:54 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments

Your Answer

Login/Signup to Answer