How can I get the impedance matrix of the network?

729 Views Asked by At

Is there any way to calculate impedance matrix of the network in pandapower?

1

There are 1 best solutions below

1
On BEST ANSWER

Searching in GitHub/Issues I came up with this:

Nodal Admittance Matrix:

Ybus = net._ppc["internal"]["Ybus"].todense()

While the

Jacobian Matrix:

J = net._ppc["internal"]["J"].todense()