Ask Your Question
0

3 winding transformer loss of all winding

asked Dec 22 '3

Anil gravatar image

How to get loss of all winding of three winding transformer

1 answer

Sort by » oldest newest most voted
0

answered Dec 25 '3

jbarberia gravatar image

In order to get the losses of the transformer you can sum the incoming flows like this:

bus_number = [3000, 3112, 3201]
ickt = "1"

flows = []
for i in range(3):
    ierr, flow = psspy.wnddt2(
        bus_number[i % 3],
        bus_number[(i + 1) % 3],
        bus_number[(i + 2) % 3],
        ickt,
        "FLOW"
    )
    flows.append(flow)

losses = sum(flows)

If you want the losses of an specific winding, the subsystem data retrieval API has the function awndreal with the string "PLOSS" and "QLOSS". Finally, the function awndint and awndchar can help you to make a tabular data structure.

link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.
Want to format code in your answer? Here is a one minute demo on Youtube

Add Answer

[hide preview]

Question Tools

Stats

Asked: Dec 22 '3

Seen: 157 times

Last updated: Dec 25 '23