Inductor

class qultra.L(node_minus, node_plus, L_value)[source]

Bases: object

Represents an inductor component

Parameters:
  • node_minus (int) – The node to which the negative terminal is connected

  • node_plus (int) – The node to which the positive terminal is connected

  • L_value (float) – Inductance value [H]

admittance(z)[source]

Calculate the admittance of an inductor L

Y = 1/s*L

Parameters:

z (complex) – Complex variable (complex frequency)

Returns:

Y – Complex admittance

Return type:

complex