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 circuit element modified inductance (impedance.models.circuits.elements.La(p, f)) is stated correctly in the documentation, but implemented incorrectly in the code.
Currently it is implemented as Z = (L * 1j * omega) ** alpha. However it must be Z = L * (1j * omega) ** alpha.
The text was updated successfully, but these errors were encountered:
The circuit element modified inductance (
impedance.models.circuits.elements.La(p, f)
) is stated correctly in the documentation, but implemented incorrectly in the code.Currently it is implemented as
Z = (L * 1j * omega) ** alpha
. However it must beZ = L * (1j * omega) ** alpha
.The text was updated successfully, but these errors were encountered: