1. Overview

1.1. What is PySpice ?

PySpice is an open source Python module which provides a Python interface to the Ngspice and Xyce circuit simulators.

Ngspice is a fork of the famous SPICE circuit simulator, while Xyce is a SPICE compatible simulator developed by the Sandia National Laboratories.

It permits:

  • definition of a circuit, through a netlist,

  • simulation using Ngspice and Xyce,

  • analysis of the output using Numpy and Matplotlib.

1.2. How is PySpice licensed ?

PySpice is licensed under the GPLv3.

1.3. Are there some papers or talks about PySpice ?

You can watch Circuit Simulation using Python given at the PyParis 2017 conference (PDF file)

1.4. Going further with PySpice

The best way to know what you can do with PySpice, and to learn it, is to look at the examples:

1.5. How can PySpice be used for learning ?

  • PySpice comes with many examples covering several topics.

1.6. Which platforms are supported by PySpice ?

PySpice runs on Linux, Windows 64-bit and Mac OS X.

1.7. How to install PySpice ?

The procedure to install PySpice is described in the Installation Manual.

1.8. How does PySpice differ from simulator like LTspice ?

  • PySpice, Ngspice and Xyce are Free Software and thus open source,

  • PySpice doesn’t feature a schematic editor (*) or GUI, but,

  • It has the power of Python for data analysis,

  • And thus provide modern data analysis tools.

  • Moreover PySpice is feature unlocked due to its open design.

(*) However you can export netlist from Kicad to PySpice.

1.9. How can a non-GUI simulator be helpful ?

It is often not easy to write a netlist, and a tool like a schematic editor can help to visualise the circuit. Tools like Circuit_macros and Tikz are complex and need some practices. However, the learning curve is no worse than for a musical instrument.

Another question is to discuss the possibility to simulate a real design, i.e. to integrate the simulation in the Electronic Design Automation (EDA) process, from the schematic to the PCB. Often, it does not make sense to simulate a real design, and we only simulate parts or models of a design to ensure the real design is right.

In fact each tool has advantages and drawbacks which are often orthogonal.

Having discussed the main drawbacks, we will now look at the advantages:

  • Since it is code, you can describe completely your simulation project. There are no actions that require to use a mouse to interact with the GUI.

  • It can be easily versioned using a tool like Git.

  • If you work with an editor and a console in parallel, then you can easily and quickly change things, and rerun the simulation, e.g. comment out a diode or a capacitor to see what happen. Using a GUI, this task would require many actions.

  • Thanks to the tool Pyterate, you can enrich your simulation with text, formulae and figures.

Is is possible to use both approaches all together ? The technical answer is, ‘yes we can’. For example the Modelica language uses a concept of annotations to describe the schema. A schematic editor like Kicad could be updated to interact closely with PySpice.

1.10. What are the benefits of PySpice over Ngspice / Xyce ?

  • You can steer your netlist and simulation using Python.

Which supersede Spice parameters and expressions.
Which make Monte Carlo simulation easier for example.
  • You can analyse the output using scientific packages for Python.

Which supersede tools like TclSpice.

1.11. How is PySpice interfaced with Ngspice ?

  • PySpice can parse a Spice netlist and generate the equivalent Python code, or instantiate it directly.

  • PySpice can generate a Spice netlist.

  • PySpice can send a simulation to Ngspice and read back the output using either the server or shared mode.

By default, PySpice uses the server mode. Shared mode is only required when you need advanced features.

When using shared mode

  • PySpice permits defining the external voltage and current source in Python (or even in C).

  • PySpice permits getting and sending data to the simulator during the simulation process.

  • CFFI is used to interface C to Python.

1.12. How is PySpice interfaced with Xyce ?

Actually, PySpice run Xyce as a subprocess and read the raw output.

1.13. How is the netlist defined ?

  • The netlist is defined using an object-oriented API

  • PySpice can also work with Spice netlist and import netlist from a schematic editor like Kicad.

1.14. Can I run Ngspice using interpreter commands ?

Thanks to the Ngspice shared library binding, you are not tied to the object-oriented API of PySpice. You can run Ngspice as you did before and just upload the simulation output as Numpy arrays. For an example, look at the Ngspice shared examples.

1.15. How are Spice libraries handled ?

  • PySpice features a library manager that scan a path for library files.

  • Libraries can be included as is using the include directive.

  • Subcircuits can be defined as Python classes.

1.16. How are units handled ?

  • PySpice features a unit module that support the SI Units.

  • Value units can be defined using function shortcuts or a special syntax: e.g. kilo(1.2), 1.2@u_kV, 1.2@u_mΩ.

1.17. Which version of Python is required ?

PySpice requires Python 3 and the version 3.5 is recommended so as to benefit from the new @ syntax for units.

1.18. Which version of Ngspice is required ?

You should use the latest version of Ngspice and take care it was compiled according to the Ngspice manual, i.e. you should check somebody didn’t enable experimental features which could break PySpice, generate a wrong simulation, or produce bugs.

Note that Ngspice is not distributed with PySpice !

1.19. Which version of Xyce is required ?

You should use the latest version provided by Sandia.

1.20. Which flavours of SPICE are supported ?

Up to now PySpice only support Ngspice and Xyce.

But PySpice could support easily any simulator providing an API similar to Ngspice.

1.21. What else should you be aware of ?

Users should be aware of these disclaimers:

  • Ngspice and PySpice are provided without any warranty.

Thus you must use it with care for real design.
Best is to cross-check the simulation using an industrial grade simulator.
  • Ngspice is not compliant with industrial quality assurance processes.

  • Simulation is a design tool and not a perfect description of the real world.