Skip to main content

Flexible and easy to use non-linear transient electric circuit simulator.

Project description

Flexible and easy to use non-linear transient electric circuit simulator.

Install

pip3 install respice

Usage

Create your circuit and simulate it!

from respice.analysis import Circuit
from respice.components import CurrentSourceDC, R, C

# Define components for our circuit.
R1 = R(100)
R2 = R(200)
C3 = C(10e-6)
R4 = R(200)
R5 = R(100)
Isrc = CurrentSourceDC(0.1)

# Construct the circuit. All circuits are just
# Digraphs allowing multiple edges. On each edge
# one component.
wheatstone_bridge = Circuit()
wheatstone_bridge.add(R1, 0, 1)
wheatstone_bridge.add(R2, 0, 2)
wheatstone_bridge.add(C3, 1, 2)
wheatstone_bridge.add(R4, 1, 3)
wheatstone_bridge.add(R5, 2, 3)
wheatstone_bridge.add(Isrc, 3, 0)

# Simulate! From t1 = 0ms to t2 = 5ms with 100 steps.
simulation = wheatstone_bridge.simulate(0, 0.005, 100)

The results are stored in the returned object and can be easily accessed via simulation.v(component), simulation.i(component) or simulation.p(component). Those contain the voltages, currents and powers respectively for each time step as a list. The time steps can be accessed with simulation.t().

All simulations are asynchronous. Accessing results early may only give partial results. Use simulation.wait() to wait until the result is ready.

Results can be immediately plotted. For plotting, plotly is required.

from respice.examples import RC

# Define an example RC circuit. The package respice.examples
# contains a few!
rc = RC(100, 100e-6, 10)  # 100Ohm, 100uF, 10V
simulation = rc.simulate(0, 0.1, 100)
simulation.plot()

The plot function will wait automatically until the result is finished. Live-plotting is not supported yet.

More simulations can be found on the snippets page.

Supports

  • MNA - Modified Nodal Analysis

    This is the algorithm employed by this software. So it’s easily possible to handle voltages as well as currents.

  • Transient non-linear steady-state analysis

    Find quickly periodic steady-state solutions of a circuit that appear when the circuit transients have settled.

  • Multi-terminal components

    Components with more than just two terminals can be handled easily. Whether each sub-branch of them is a current- or voltage-branch, or whether they are current- or voltage-driven.

  • Mutual coupling

    Usually required by multi-terminal components, mutual coupling is easily implementable. Each sub-branch in a component is automatically receiving the voltages and currents of all other branches comprising the component.

Documentation

More details and explanations are available in the documentation.

Documentation is generated via Sphinx. To build the documentation:

pip3 install -r requirements.txt -r docs-requirements.txt
make html

The index file can then be opened with your favorite browser at build/html/index.html.

Documentation is also available online.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

respice-0.3.10.tar.gz (55.5 kB view details)

Uploaded Source

Built Distribution

respice-0.3.10-py3-none-any.whl (83.4 kB view details)

Uploaded Python 3

File details

Details for the file respice-0.3.10.tar.gz.

File metadata

  • Download URL: respice-0.3.10.tar.gz
  • Upload date:
  • Size: 55.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for respice-0.3.10.tar.gz
Algorithm Hash digest
SHA256 8ad94ae697baf5c4828224b18d47418826b07d84250cf3dc9d3cfabfd9ae7609
MD5 2e20b00e50bec63024af12635c8b274f
BLAKE2b-256 b7387e07ef0187d881feaab94360d4510fbc3c708596345753242d47975f5148

See more details on using hashes here.

File details

Details for the file respice-0.3.10-py3-none-any.whl.

File metadata

  • Download URL: respice-0.3.10-py3-none-any.whl
  • Upload date:
  • Size: 83.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for respice-0.3.10-py3-none-any.whl
Algorithm Hash digest
SHA256 0b2ddcb57a0cabebc74441f10ce809f1313c8fc4f8c0ae5512cf5b24e74da0ea
MD5 b1a57191399503f34f03f911cd3a719d
BLAKE2b-256 142a4e35557b613ebc867a23375ae51fbad8e17d55107b798d6aece159c733a4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page