-
|
This continues the discussion started here. So, after some tweaking of the parameters, the powerflow seems to converge. I have a question regarding the output that I get. How do I get the total losses (active and reactive) of the circuit that I modelled? Here is my input data: And here is my output data: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi @leovsch, Sorry for my late reply. We've had some other priorities we needed to address first. The easiest way is to sum over all losses per component that can handle loss (branches + shunts (the zero-sequence component)):
Important side notes:
|
Beta Was this translation helpful? Give feedback.
Hi @leovsch,
Sorry for my late reply. We've had some other priorities we needed to address first.
The easiest way is to sum over all losses per component that can handle loss (branches + shunts (the zero-sequence component)):
branch.p_to + branch.p_frombranch.q_to + branch.q_fromp(active power loss) orq(reactive power loss)branch3.p_1 + branch3.p_2 + branch3.p_3branch3.q_1 + branch3.q_2 + branch3.q_3Impor…