Ask Your Question

g.valentim's profile - activity

2018-12-17 16:13:26 -0500 received badge  Famous Question (source)
2018-12-15 12:55:11 -0500 received badge  Enthusiast
2018-12-15 12:55:11 -0500 received badge  Enthusiast
2018-12-08 19:22:37 -0500 received badge  Famous Question (source)
2018-12-08 18:12:11 -0500 received badge  Popular Question (source)
2018-12-08 18:12:11 -0500 received badge  Notable Question (source)
2018-12-06 16:48:08 -0500 asked a question How to I get the contribution of neighboring buses, after the ascc_currents api runs?

I ran the ascc_currents API to get the three-phase fault currents in the buses of the working case and I wanted to know if it's possible to get the contribution of the neighboring buses to that current of a specific bus.

Assuming the working case has only 3 buses, if I get the three-phase fault current of bus 2, what is the contribution of buses 1 and 3 to that bus 2 fault current?

2018-11-14 10:55:47 -0500 commented answer How do I get the short circuit current with the ASCC_3 API?

And to get the the short circuit current i used: Short_circuit = cc_current() but it doesn't appear in the console

2018-11-14 10:54:16 -0500 commented answer How do I get the short circuit current with the ASCC_3 API?

For the short circuit current I used the following code: def cc_current(): ierr, current = pssarrays.ascc_currents(sid=0,all=1,flt3ph=1) print current vector_current=[] vector_current.append(current) return vector_current

2018-11-14 10:50:42 -0500 commented answer How do I get the short circuit current with the ASCC_3 API?

And to get the Thevenin impedance i used: Impedance = thevenin_impedance()

2018-11-14 10:49:58 -0500 commented answer How do I get the short circuit current with the ASCC_3 API?

For the Thevenin Impedance I used the following code: def thevenin_impedance(): ierr, Thevenin_impedance = psspy.ascc_3(sid=0,all=1,status11=1) print Thevenin_impedance vector_thevenin=[] vector_thevenin.append(Thevenin_impedance) return vector_thevenin

2018-11-08 10:11:31 -0500 received badge  Notable Question (source)
2018-11-04 13:04:37 -0500 received badge  Popular Question (source)
2018-11-01 12:48:00 -0500 asked a question How do I get the short circuit current with the ASCC_3 API?

I'm trying to get the short circuit currents of a case study. I've applied the ascc_3 api to get the three phase faults in the way down bellow:

ierr, Theveninimpedance = psspy.ascc3(sid=0,all=1,status11=1,scfile=scfilename)

I get the thevenin impedances in the console but I want to export them and the currents to excel as well, how do I do this? I've tried using the asccfile and ascccurrents API's but maybe I did something wrong.