Skip to main content

Standalone multilayer graphene Hamiltonians and single-particle utilities.

Project description

contimod_graphene

PyPI Docs CI

contimod_graphene is a standalone Python package for multilayer graphene tight-binding Hamiltonians, parameter sets, basis metadata, and related single-particle utilities.

This is a public preview release series. The package is still pre-1.0, so APIs, parameter conventions, and preset details may still change between minor releases; pin an exact version if you need stable downstream behavior.

Current scope includes:

  • Bernal (ABA) stacking
  • Rhombohedral (ABC) stacking
  • Immutable, JSON-backed parameter sets
  • Standalone model objects with thin wrappers over the kernel layer
  • Basis and symmetry helpers
  • JAX-friendly batched Hamiltonian evaluation

It includes both zero-field Hamiltonians and Landau-level (LL) Hamiltonians.

The maintained starting points are:

For examples/tests on this machine, prefer JAX_PLATFORMS=cpu; the Apple Metal backend still hits known JAX failures in this repo.

Quick Start

For an ABC-trilayer Hamiltonian, its low-energy 2-band reduction, and a bilayer LL matrix:

import numpy as np
import contimod_graphene as cg

params = cg.GrapheneTBParameters.preset("tlg").replace(U=20.0, Delta=0.0)
abc = cg.RhombohedralMultilayer(n_layers=3, params=params)
ab = cg.BernalMultilayer(n_layers=2)

print(abc.hamiltonian(0.1, 0.0).shape)
print(np.round(np.linalg.eigvalsh(np.asarray(abc.two_band_hamiltonian(0.02, 0.0))), 3))
print(ab.landau_level_hamiltonian(10.0, n_cut=6, valley="K").shape)
(6, 6)
[-10.178  11.608]
(22, 22)

If you want the maintained script rather than a pasted snippet:

JAX_PLATFORMS=cpu python examples/standalone_quickstart.py

The built-in ABC/TLG preset carries U=30.0 meV and Delta=-1.15 meV. The quickstart pins Delta=0.0 so the example isolates the outer-layer bias U.

The main public entry points are:

  • GrapheneTBParameters
  • load_parameter_set(name_or_path)
  • list_parameter_sets()
  • BernalMultilayer
  • RhombohedralMultilayer

Physicist-friendly aliases are also available:

  • ABAMultilayer
  • ABCMultilayer

For a slightly longer walkthrough with equations, conventions, and more outputs, see docs/usage.md. For maintained example material, start with examples/standalone_quickstart.py, docs/examples.md, and examples/README.md.

Physics At A Glance

The package exposes three common surfaces:

$$ H(\mathbf{k}) \psi_{n\mathbf{k}} = E_n(\mathbf{k}) \psi_{n\mathbf{k}} $$

$$ H^{ABC_N}_{2\mathrm{band}} \propto \begin{pmatrix} 0 & (\pi^\dagger)^N \ \pi^N & 0 \end{pmatrix}, \qquad E \propto k^N $$

$$ \dim H_{\mathrm{LL}} = n_{\mathrm{layers}} \left(2 n_{\mathrm{cut}} - 1\right) $$

Useful parameter conventions:

  • Bernal Delta is the package A/B sublattice mass term, while Bernal delta is the dimer/non-dimer onsite offset.
  • Rhombohedral Delta matches the usual trilayer Δ2 meaning for n_layers=3; for thicker stacks it is reused as a package-specific inversion-even layer-curvature parameter.
  • LL builders return dense matrices, so the size formula above matters quickly when you increase n_cut.

Low-Level Modules

The low-level kernel modules remain available for advanced use, JAX-focused workflows, and direct access to the functional core:

  • contimod_graphene.bernal
  • contimod_graphene.rhombohedral
  • contimod_graphene.params
  • contimod_graphene.basis
  • contimod_graphene.symmetry
  • contimod_graphene.landau
  • contimod_graphene.utils

Installation

Install from PyPI:

pip install contimod-graphene

Quick smoke check:

python -c "import contimod_graphene as cg; print(cg.list_parameter_sets())"

The distribution name on PyPI uses a hyphen, but the Python import remains contimod_graphene.

If you want the unreleased main branch instead of the latest published version:

pip install git+https://github.com/skilledwolf/contimod_graphene.git

For local development, clone the repo and run pip install -e ".[dev]". If you prefer hatch, use hatch env create and hatch shell.

Author

Tobias Wolf (public@wolft.xyz) is the author and maintainer of this package. Please give appropriate credit if you use this work.

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

contimod_graphene-0.2.0.tar.gz (173.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

contimod_graphene-0.2.0-py3-none-any.whl (28.3 kB view details)

Uploaded Python 3

File details

Details for the file contimod_graphene-0.2.0.tar.gz.

File metadata

  • Download URL: contimod_graphene-0.2.0.tar.gz
  • Upload date:
  • Size: 173.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for contimod_graphene-0.2.0.tar.gz
Algorithm Hash digest
SHA256 cc7c183b19f9bdb4449d6e33d4a184df2c42d8a5d3b8d5b29705a5546889623f
MD5 9b34222f1338927b779f0ce2949b2444
BLAKE2b-256 0b7a44c2c13004a640d1575e208601efd7a813ddc38deef3856b0715ed31280f

See more details on using hashes here.

Provenance

The following attestation bundles were made for contimod_graphene-0.2.0.tar.gz:

Publisher: release.yml on skilledwolf/contimod_graphene

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file contimod_graphene-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for contimod_graphene-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6bd63097fe31322398b7bfa5500d8aea4f028fcebc567c27b9986d769acf794b
MD5 16cb1292a74de23a77f79187511aea2a
BLAKE2b-256 8ce91ffb7f7514391df24abadd83140c7127de19d49f7f1857e3a3bd87ca06c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for contimod_graphene-0.2.0-py3-none-any.whl:

Publisher: release.yml on skilledwolf/contimod_graphene

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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