Superconducting Circuit Analysis Package
Project description
SCCircuits
SCCircuits is a Python package for numerical superconducting-circuit analysis. It focuses on matrix-based black-box quantization, dense Hamiltonian construction, spectroscopy workflows, and small research utilities for superconducting quantum circuits.
Documentation
The user-facing documentation is published at:
https://joanjcaceres.github.io/sccircuits/
Recommended starting points:
- BBQ Overview explains the practical workflow from cQEDraw or circuit matrices to
BBQresults. - BBQ Quickstart gives a runnable matrix example with frequencies and phase ZPFs.
- BBQ Examples collects worked examples and the planned cQEDraw project-download example.
- BBQ Validation explains the code-backed checks behind the matrix reductions and branch conventions.
- BBQ Implementation Notes maps the mathematical derivation to the current
BBQimplementation stages. - BBQ API shows how to call
sccircuits.BBQ, read frequencies and phase ZPFs, and build Hamiltonians. - Circuit Matrix Quantization documents the matrix reductions, mode normalization, units, and branch phase zero-point fluctuations.
The site is intentionally incremental. BBQ is the first fully documented
research workflow because it is currently the most mature path between cQEDraw
and SCCircuits. The rest of the package should be documented through the same
site as those workflows stabilize.
The Markdown source for the website lives in docs/. Build it locally with:
pixi run -e sccircuits docs-build
Companion GUI
cQEDraw is the companion web app for drawing and
analyzing superconducting circuit graphs. A typical workflow is:
- Draw the circuit in cQEDraw.
- Export or copy the generated capacitance matrix, inverse-inductance matrix, and Josephson junction records.
- Pass those matrices and records to
sccircuits.BBQ. - Inspect mode frequencies, branch phase ZPFs, and Hamiltonian spectra in Python.
Installation
Recommended: pip
Researchers should install SCCircuits from PyPI:
python -m pip install sccircuits
This installs the pure-Python SCCircuits package plus NumPy, SciPy, Matplotlib, SymPy, and PyYAML from normal Python wheels. Pixi is not required to use the package.
Optional extras are available for notebook widgets, development, and docs:
python -m pip install "sccircuits[interactive]"
python -m pip install "sccircuits[dev]"
python -m pip install "sccircuits[docs]"
Development: Pixi
Pixi remains the recommended contributor environment because it keeps the NumPy/SciPy stack reproducible while developing and testing the repository.
git clone https://github.com/joanjcaceres/sccircuits.git
cd sccircuits
pixi run -e sccircuits install-dev
pixi run -e sccircuits test
For local editable development without Pixi:
python -m venv .venv
source .venv/bin/activate
python -m pip install -e ".[dev,interactive,docs]"
Performance Baseline
SCCircuits relies on NumPy and SciPy wheels for cross-platform BLAS/LAPACK linear algebra. The first public package does not compile native extensions or require GPU-specific backends.
To record a quick local diagonalization baseline:
python benchmarks/diagonalization_smoke.py
Quick Example
import numpy as np
from sccircuits import BBQ
capacitance_matrix = np.array(
[
[40e-15, -32.9e-15],
[-32.9e-15, 40e-15],
]
)
inverse_inductance_matrix = np.array(
[
[1 / 1.23e-9, 0.0],
[0.0, 1 / 1.23e-9],
]
)
bbq = BBQ(
capacitance_matrix,
inverse_inductance_matrix,
nonlinear_branches=(0, 1),
)
print("Mode frequencies in GHz:", bbq.frequencies_ghz)
print("Branch phase ZPFs:", bbq.branch_phase_zpfs)
For cQEDraw exports with Josephson junction records, pass the records directly:
bbq = BBQ(
capacitance_matrix,
inverse_inductance_matrix,
junctions=junctions,
)
BBQ keeps the junction row order when reporting branch_phase_zpfs and
josephson_energies_ghz, so drawing tools can map results back to the original
branches.
Core Modules
sccircuits.BBQ: black-box quantization from capacitance and inverse-inductance matrices.sccircuits.Circuit: dense superconducting-circuit Hamiltonian construction and diagonalization.sccircuits.TransitionFitter: transition-frequency fitting utilities.sccircuits.PointPicker: interactive point selection for data analysis.
Development
Run the main checks with:
pixi run -e sccircuits test
pixi run -e sccircuits lint
pixi run -e sccircuits docs-build
Check the pip package path with:
python -m build
python -m twine check dist/*
python -m pip install dist/sccircuits-0.1.0-py3-none-any.whl
python -m pip check
python tests/pip_smoke.py
If dependency resolution becomes inconsistent, recreate the Pixi environment:
pixi clean
pixi run -e sccircuits install-dev
License
This project is licensed under the MIT License. See LICENSE for details.
Contact
Joan Caceres - contact@joanjcaceres.com
Project link: https://github.com/joanjcaceres/sccircuits
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sccircuits-0.1.0.tar.gz.
File metadata
- Download URL: sccircuits-0.1.0.tar.gz
- Upload date:
- Size: 59.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
703de6f54229f15dd67bad6abee613e82097223e87f9a8c7dc5ab136b7a31872
|
|
| MD5 |
d6650ed67d8c8f5e921cd843adda4332
|
|
| BLAKE2b-256 |
bf941007cfd3eb8632993c559534e3f5bc5ca40e4eda9c3465da6f5369c44d9b
|
Provenance
The following attestation bundles were made for sccircuits-0.1.0.tar.gz:
Publisher:
publish.yml on joanjcaceres/sccircuits
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sccircuits-0.1.0.tar.gz -
Subject digest:
703de6f54229f15dd67bad6abee613e82097223e87f9a8c7dc5ab136b7a31872 - Sigstore transparency entry: 1730952842
- Sigstore integration time:
-
Permalink:
joanjcaceres/sccircuits@ce8875b3928e49af9e6bc3ad41afda661b96b618 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/joanjcaceres
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ce8875b3928e49af9e6bc3ad41afda661b96b618 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sccircuits-0.1.0-py3-none-any.whl.
File metadata
- Download URL: sccircuits-0.1.0-py3-none-any.whl
- Upload date:
- Size: 53.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c7d935bb55a8fed72907d2ee49d3aa9b4f022badddee5ca3b3048ba33b2bc5d
|
|
| MD5 |
1113b9001e2d9cab59d1df4632a2e35c
|
|
| BLAKE2b-256 |
9d12708107adeed24b0f5902e036fc3f42fdc35df1b083375ca4a86a2aeba426
|
Provenance
The following attestation bundles were made for sccircuits-0.1.0-py3-none-any.whl:
Publisher:
publish.yml on joanjcaceres/sccircuits
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sccircuits-0.1.0-py3-none-any.whl -
Subject digest:
4c7d935bb55a8fed72907d2ee49d3aa9b4f022badddee5ca3b3048ba33b2bc5d - Sigstore transparency entry: 1730952869
- Sigstore integration time:
-
Permalink:
joanjcaceres/sccircuits@ce8875b3928e49af9e6bc3ad41afda661b96b618 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/joanjcaceres
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ce8875b3928e49af9e6bc3ad41afda661b96b618 -
Trigger Event:
release
-
Statement type: