2015-04-09 00:41:22 +08:00
|
|
|
__author__ = 'dmy'
|
|
|
|
|
|
|
|
|
|
from reader import *
|
2015-04-30 22:42:21 +08:00
|
|
|
from YMatrix import *
|
2015-04-09 00:41:22 +08:00
|
|
|
|
|
|
|
|
if __name__=='__main__':
|
|
|
|
|
ieeeData=IEEEData('IEEE4.dat')
|
2015-04-30 22:42:21 +08:00
|
|
|
yMatrix=FormYMatrix(ieeeData.lineBlock,ieeeData.transBlock,ieeeData.busNum)
|
2015-04-09 00:41:22 +08:00
|
|
|
print('Finished.')
|