0

Sizing of a fixed shunt capacitor

Dear All

I want to size my Fixed shunt capacitor based on my loadflow: so say my Capacitor is 300 MVAr but the initial loadflow voltage is 1.05,Thus I want to re-size my MSC as Q/V^2 (almost a constant Q).

I would like to do this in python: i got to the stage of using psspy.shunt_chng of

psspy.shuntchng(153,r"""1""",i,[_f, 300.0/(voltage)**2])

but I do not know know how to obtain a single voltage value for the desired bus which in this case is 153. All I want is to obtain (recall) a numerical value for the given bus so this formula works, but I do not want to type it in.

Can someone help me? Also I would like to do this in array for a larger system but once I prove this simple calculation in python.

PSSE_ABCD's avatar
11
PSSE_ABCD
asked 2015-07-10 01:29:30 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

0

Sounds like you just need to get the bus voltage for a bus. To get the voltage in pu for bus 153, use the following code:

ierr, busvoltage = psspy.busdat(153,'PU')
nwilson's avatar
100
nwilson
answered 2015-07-10 15:56:14 -0500
edit flag offensive 0 remove flag delete link

Comments

Yes it works, thanks so much....I now have to apply it to an array.

PSSE_ABCD's avatar PSSE_ABCD (2015-07-11 01:05:22 -0500) edit
add a comment see more comments

Your Answer

Login/Signup to Answer