electricpy.passive.inductive_voltdiv

electricpy.passive.inductive_voltdiv(Vin=None, Vout=None, L1=None, L2=None, find='')[source]

Inductive voltage divider.

Inductive voltage divider Inductive voltage dividers are made out of two inductors. One of the inductors is connected from the input to the output and the other one is connected from the output to ground. You can also use other components like resistors and inductors.

\[V_{out} = \frac{V_{in}*L1}{L1+L2}\]
../_images/inductive-voltage-divider-circuit.png
Parameters:
  • Vin (float, optional) – The input voltage for the system, default=None

  • Vout (float, optional) – The output voltage for the system, default=None

  • L1 (float,optional) – Value of the inductor above the output voltage, default=None

  • L2 (float,optional) – Value of the inductor below the output voltage, default=None

  • find (str, optional) – Control argument to specify which value should be returned.

Returns:

  • Vin (float, optional) – The input voltage for the system, default=None

  • Vout (float, optional) – The output voltage for the system, default=None

  • L1 (float,optional) – Value of the inductor above the output voltage, default=None

  • L2 (float,optional) – Value of the inductor below the output voltage