Current Source Elements #92
Answered
by
nitbharambe
kostek184-coder
asked this question in
Q&A
|
How to model a current source such as IBR? |
Answered by
nitbharambe
Jul 9, 2026
Replies: 2 comments 3 replies
|
Hi @kostek184-coder , we can model it as a sym_gen or sym_load in a steady state power flow or state estimation calculation. You can also specify it to be of constant power/current/impedance(ZIP) if required. IBR related modelling depend on context of the calculation and features you would like to use. Let me know if you are looking for something different than a simple load or generator or a study other than steady state powerflow. |
0 replies
|
I would like to use them to short circuit calculation. This model could be the same as in panda power with definition of current angle of the current injection https://pandapower.readthedocs.io/en/latest/shortcircuit/current_source.html |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @kostek184-coder , there is not easy and direct way to do so via PGM at the moment. Feel free to create a feature request for such contributions.
The workaround way involving current injection via source component is possible but kind of complicated to implement. Hence do so if there is urgency:
Source as current injection demo
It involves first calculating short circuit current. Then we conduct a power flow generators modelled as a source with
sk = sn_kva * k / scaling_factorandu_ref = 1.0 * scaling_factorwhere scaling_factor is any large number. By virtue of superposition theorem, we can then add all currents of short circuit and load flow to find resultant fault current.TLDR: At…