First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version | asked 2017-11-23 16:53:04 -0500 Anonymous |
Hi
How do you export 3ph fault currents to excel.
Im using:
robj = pssarrays.iecs_currents(sid=sid, all=0, flt3ph=1)
to run the study and store the results in the object robj. How do i get the values within this object and insert them into excel just like you would for bus numbers for example...
ierr, busses = psspy.abusint(sid=sid, flag=flag, "NUMBER")...... workbook.set_range(2, 'a', zip(*busses))
2 | No.2 Revision |
Hi
How do you export 3ph fault currents to excel.
Im using:
robj = pssarrays.iecs_currents(sid=sid, all=0, flt3ph=1)
to run the study and store the results in the object robj. How do i get the values within this object and insert them into excel just like you would for bus numbers for example...
ierr, busses = psspy.abusint(sid=sid, flag=flag, "NUMBER")...... workbook.set_range(2, 'a', zip(*busses))
Thank you
3 | No.3 Revision |
Hi
How do you export 3ph fault currents to excel.
Im using:
robj = pssarrays.iecs_currents(sid=sid, all=0, flt3ph=1)
to run the study and store the results in the object robj. How do i get the values within this object for multiple buses, and insert them into excel just like you would for bus numbers for example...
ierr, busses = psspy.abusint(sid=sid, flag=flag, "NUMBER")...... workbook.set_range(2, 'a', zip(*busses))
Thank you