How to create resistor in PySpice: Minimal example
This creates a resistor named R1
which has its +
pin connected to node n1
and its -
pin connected to GND
. The value of the resistor is set to 1kΩ
.
r1 = circuit.R('R1', 'n1', circuit.gnd, 1@u_kΩ)
Full example:
import PySpice.Logging.Logging as Logging
logger = Logging.setup_logging()
from PySpice.Probe.Plot import plot
from PySpice.Spice.Netlist import Circuit
from PySpice.Unit import *
circuit = Circuit("MyCircuit")
r1 = circuit.R('R1', 'n1', circuit.gnd, 1@u_kΩ)