0

I have a program that's need a method for ploting an electrical circuit with node numbers(netlist). It's example of netlist: number 1 net list:

  1. number 1 net list:

R1 1 2 4

R2 2 0 4

R3 2 0 4

I1 1 0 2

  1. number 2 net list:

V1 1 0 10

R1 2 1 2

R2 2 0 2

C3 2 3 200u

R4 2 3 10

I5 3 2 2 90

L4 3 0 1m

in this net lists first and second numbers are node numbers and third number is size of electrical component.

N.Sh
  • 37
  • 9
  • See also: [is-it-possible-to-draw-circuits-through-code](https://electronics.stackexchange.com/questions/336946/is-it-possible-to-draw-circuits-through-code) – phoenix Oct 20 '19 at 12:18

1 Answers1

1

You could try lcapy.

Other Python schematic libraries worth considering:

phoenix
  • 7,988
  • 6
  • 39
  • 45
  • 1
    I use lcapy.It can draw one loop circuit. schemadraw can't get node list and skidl just create a netlist from thing you enter in your code. – N.Sh Oct 21 '19 at 15:48