Ask Your Question

AaronH's profile - activity

2021-10-02 08:46:46 -0500 received badge  Good Question (source)
2019-08-29 10:13:53 -0500 received badge  Taxonomist
2012-11-21 05:04:58 -0500 received badge  Famous Question (source)
2012-11-07 09:02:09 -0500 received badge  Notable Question (source)
2012-11-01 10:06:02 -0500 received badge  Popular Question (source)
2012-10-31 00:36:13 -0500 asked a question How to check bus current in PSSE?

Need to check the load current (amps) for 40+ lines. Can Python check the load current?

This is what I have so far:

bus1 = 1004
bus2 = 1005
ckt = "1"

amps = brnmsc(bus1,bus2,ckt,"AMPS")
print amps

But I have 40+ lines. I only know to check the first line.

2012-10-04 06:45:30 -0500 received badge  Famous Question (source)
2012-08-02 10:19:27 -0500 received badge  Notable Question (source)
2012-07-13 20:30:37 -0500 received badge  Popular Question (source)
2012-07-12 10:05:24 -0500 received badge  Self-Learner (source)
2012-07-12 10:05:24 -0500 received badge  Teacher (source)
2012-07-12 10:05:13 -0500 received badge  Nice Question (source)
2012-07-11 03:22:25 -0500 received badge  Scholar (source)
2012-07-11 03:22:24 -0500 received badge  Supporter (source)
2012-07-11 03:21:34 -0500 answered a question How do I change the loads on PSSE?

Thank you daniel. It works for me but. I had to change the bus numbers to get it working properly.

I had to write this for it to work

load_data_3(1043, '1', [_i, _i, _i, _i], [2.3, _f, _f, _f, _f, _f])

but then I get a new error:

NameError _i not found. I think there is a problem with the solution. Can it be fixed?

Thanks ahead!

2012-07-10 20:20:34 -0500 received badge  Student (source)
2012-07-10 08:07:58 -0500 received badge  Editor (source)
2012-07-10 08:07:39 -0500 commented question How do I change the loads on PSSE?

Ok I found how to edit thanks

2012-07-10 08:07:22 -0500 commented question How do I change the loads on PSSE?

How do I edit my question?

2012-07-10 08:07:00 -0500 received badge  Organizer (source)
2012-07-10 08:05:38 -0500 asked a question How do I change the loads on PSSE?

I have 5 loads attached to one bus. I need to increase the P and Q for all of the loads. How can I do that using Python and PSSE? I already know how to do this by clicking on the grid editor inside of PSSE.

Must I use lodint from the psspy manual?

Thanks ahead

Aaron