2

This site is using CircuitLab. In some SPICE programs it is possible to simulate CM choke. For example:

Mutual Inductance is designated in a SPICE netlist by beginning the first word (label) of a new line with the letter "K". It is unique among the basic circuit elements in LTspice in that a schematic symbol is not used to represented it.

Is there a way to achieve this by using CircuitLab?

pnatk
  • 1,389
  • 12
  • 33

1 Answers1

1

(CircuitLab simulation engine author here -- just noticed this question!)
CircuitLab does support coupled inductors. Define a Parameter Element with a name like "K L1 L2". For example:

schematic

simulate this circuit – Schematic created using CircuitLab

(Example adapted from: https://web.cecs.pdx.edu/~tymerski/ece222/How%20to%20create%20a%20transformer%20using%20LTSpice.pdf)

It can also handle multiple inductors, and you can even do parameter sweeps over the coupling coefficient, for example:

schematic

simulate this circuit

(Example adapted from: https://web.cecs.pdx.edu/~tymerski/ece222/How%20to%20create%20a%20transformer%20using%20LTSpice.pdf)

Lp, Ls1, Ls2 effectively form a center-tapped transformer. If you run the simulation, this second example shows a parameter sweep which allows you to compare the results for different values of the coupling coefficient.

SamGibson
  • 17,231
  • 5
  • 37
  • 58
compumike
  • 3,624
  • 23
  • 20