0

Bus net MW injection or extraction - Through flow

Hi,.

Is there a function to extract total MW injection into a bus or total MW out of a bus?

Regards

Mutenda's avatar
1
Mutenda
asked 2018-09-23 05:02:08 -0500
edit flag offensive 0 remove flag close merge delete

Comments

What do you mean with total injection? Is it the total of power flowing into the bus from branches, transformers, HVDC, FACTS etc, excluding the power flowing out? I.e. only the power with direction to the bus.

perolofl's avatar perolofl (2018-09-26 01:15:50 -0500) edit

Yes, it is total of power flowing into the bus from branches, transformers, HVDC, FACTS etc.

Mutenda's avatar Mutenda (2018-09-27 00:28:54 -0500) edit

You can write a simple bus other model and call the flow1 function and assign the MW and MVAr flow to VARs in your model. You will be able to get the flows in the line. For Flow1 function, take a look at model documentation

txc's avatar txc (2018-11-30 19:25:35 -0500) edit
add a comment see more comments

2 Answers

0

There is no such function available. You have to write your own!

perolofl's avatar
3.8k
perolofl
answered 2018-09-27 01:39:06 -0500
edit flag offensive 0 remove flag delete link

Comments

Ok, thank you

Mutenda's avatar Mutenda (2018-09-27 02:02:19 -0500) edit
add a comment see more comments
0

ierr, cmpval1 = psspy.busdt2(1, "MVA", "ACT") This will give you the MVA value for the bus 1, as a complex number which has both real and imaginary parts. To acces the real part of that number (true power [MW]), do: truePowerMW = cmpval1.real

rafaels100's avatar
29
rafaels100
answered 2018-09-25 12:17:35 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments

Your Answer

Login/Signup to Answer