N.Sh
N.Sh

Reputation: 37

How to draw an electrical circuit with node numbers in python?

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

  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.

Upvotes: 0

Views: 2738

Answers (1)

johnthagen
johnthagen

Reputation: 9189

You could try lcapy.

Other Python schematic libraries worth considering:

Upvotes: 1

Related Questions