PySpice icon indicating copy to clipboard operation
PySpice copied to clipboard

Simulate electronic circuit using Python and the Ngspice / Xyce simulators

Results 152 PySpice issues
Sort by recently updated
recently updated
newest added

I'm trying to define a non linear component using current-dependent voltage source : ``` circuit = Circuit('Voltage Divider') circuit.V('alim',circuit.gnd, 'n1', 10@u_V) circuit.V('Vdummy','n1', 'n2', 0) circuit.B('RNL','n2', 'n3', v="0.001*i(VVdummy)**2") circuit.R('R', 'n3', circuit.gnd,...

Links to https://pyspice.discourse.group return a DNS error. I'm trying to find a place to ask a few questions, so it would be pretty great if those were working 😁 On...

The main problem I'm having is that I just don't know where to find the results of `.measure` calls after running a simulation using PySpice. I get pretty plots that...

Related to #346 This PR allows PySpice to parse .measure results out of ngspice `run` output and attach them to Analysis objects when using the `ngspice-shared` simulation backend. The code...

I wanted to use the pyspice framework to run spectre, I see some people have ported it to standard technologies. " Anybody have a branch where they have made updates...

Change the unit shortcut generation script to include all SI prefixes, not just those prefixes defined in spice.

### Environment (OS, Python version, PySpice version, simulator) OS: Manjaro Linux Python version: 3.10 Pyspice version: 1.5 Simulator: ngspice ```python from PySpice.Spice.Netlist import Circuit # for creating circuits circuit =...

### Environment (OS, Python version, PySpice version, simulator) Unix, python3.8, I am using the same parameter of BJT Gummel Poon model do get the input and output I-V curve, but...

### Environment (OS, Python version, PySpice version, simulator) Ubuntu 20.04.5 LTS, Python 3.10, PySpice 1.5 ### Actual Behaviour The last commented line from https://pyspice.fabrice-salvaire.fr/releases/v1.5/examples/advanced-usages/internal-device-parameters.html (compute the DC transfer function) failed...

I am trying to simulate a large circuit several times for different inputs. Since the only difference between runs is the input, I was trying to use the `alter` command...