First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
Use the subsystem_info function described here and the full listing is available here. This little function saves you the bother of distinguishing lines from transformers. This is how I use it:
branchinfo = subsystem_info('brn', ['FROMNUMBER', 'TONUMBER', 'MVA', 'P'], sid=1)
#print branchinfo
trfinfo = subsystem_info('trn', ['FROMNUMBER', 'TONUMBER', 'MVA', 'P'], sid=1)
#print trfinfo
Hope that helps.
2 | No.2 Revision |
Use the subsystem_info function described here and the . The full listing is available here. This little function saves you the bother of distinguishing lines from transformers. This is how I use it:
branchinfo = subsystem_info('brn', ['FROMNUMBER', 'TONUMBER', 'MVA', 'P'], sid=1)
#print branchinfo
trfinfo = subsystem_info('trn', ['FROMNUMBER', 'TONUMBER', 'MVA', 'P'], sid=1)
#print trfinfo
Hope that helps.