Reputation: 37
I have a program that's need a method for ploting an electrical circuit with node numbers(netlist).
It's example of netlist:
R1 1 2 4
R2 2 0 4
R3 2 0 4
I1 1 0 2
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
Reputation: 9189
You could try lcapy.
Other Python schematic libraries worth considering:
Upvotes: 1