You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current version (v0.21.2) supports calc_basic_ptdf_matrix, but there is no Line Outage Distribution Factor (LODF) matrix computation utility.
I have a working implementation that I would be happy to contribute if you'd like that.
What I am thinking about is a calc_basic_lodf_matrix function, which would return a matrix LODF of size ExE, where E is the number of branches in the system. Thereby, given pre-contingency flow vector pf, the flow on branch e under contingency k is given by
pf_after_outage[e] = pf[e] + LODF[e, k] * pf[k]
The text was updated successfully, but these errors were encountered:
This would be a welcome addition, please make a PR.
The name calc_basic_lodf_matrix sounds right to me.
I personally don't know the definition of LODF off the top of my head, but what you write here sounds right to me. Make sure the this new feature is discussed in the basic data utilities docs and that the expected usage is something like pf_after_outage[e] = pf[e] + LODF[e, k] * pf[k]
The current version (v0.21.2) supports
calc_basic_ptdf_matrix
, but there is no Line Outage Distribution Factor (LODF) matrix computation utility.I have a working implementation that I would be happy to contribute if you'd like that.
What I am thinking about is a
calc_basic_lodf_matrix
function, which would return a matrixLODF
of sizeExE
, whereE
is the number of branches in the system. Thereby, given pre-contingency flow vectorpf
, the flow on branche
under contingencyk
is given byThe text was updated successfully, but these errors were encountered: