Skip to main content

REGCOIL

A regularized current potential method for fast computation of the shapes of stellarator coils

This program is described in the paper M Landreman, "An improved current potential method for fast computation of stellarator coil shapes," Nuclear Fusion 57, 046003 (2017), which is available in this repository and also at arXiv:1609.04378.

This repository provides a pip-installable python package, with compiled kernels for the computationally intensive steps. The original fortran implementation of the REGCOIL algorithm is available in the companion repository https://github.com/landreman/regcoil_fortran

Installation

This package is available on pypi (which provides pre-compiled wheels), so it can be installed in the usual way with pip:

pip install regcoil

If you want updates that are more recent than the most recent release, or if you want to edit the source code, you can also install regcoil from source. To do so, first clone the repository and then pip-install from the local repository:

git clone https://github.com/landreman/regcoil.git
cd regcoil
pip install "meson-python>=0.16.0"
pip install .[dev]

For editable installs from source, it is necessary to include the --no-build-isolation flag due to a quirk of the meson build system:

pip install --no-build-isolation -e .[dev]

From the cloned repository, tests can be run using

pytest

Quickstart

import regcoil

ds = regcoil.examples("W7-X")  # Or "NCSX"
# ds then provides paths to a vmec wout file, simsopt virtual casing file,
# stellopt bnorm file, and coil winding surface in nescin format.

# Define the plasma boundary surface:
plasma = regcoil.PlasmaSurface.from_wout(ds.wout, ntheta=64, nzeta=64)
# Assign B_normal data associated with the plasma current:
plasma.set_bnormal_from_virtual_casing(ds.vcasing)

# Define a coil winding surface:
coil = regcoil.CoilSurface.from_uniform_offset(
    plasma, separation=0.3, ntheta=64, nzeta=64, mpol=12, ntor=12
)

problem = regcoil.Regcoil(plasma, coil, mpol_potential=12, ntor_potential=12)
solution = problem.solve(lam=1e-14)
# You can also solve for a range of lambda values, or search for lambda that 
# results in a desired f_B, f_K, max_K, etc
print(f"f_B = {solution.f_B:.1e}, f_K = {solution.f_K:.1e}")
# f_B = 2.7e-01, f_K = 1.1e+15

# Results can then be saved and plotted.

Full documentation, covering installation, typical usage, saving/loading data, plotting, and the API reference, are available at regcoil.readthedocs.io.

Download files

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

Source Distribution

regcoil-0.1.1.tar.gz (13.6 MB view details)

Uploaded Source

Built Distributions

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

regcoil-0.1.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (16.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

regcoil-0.1.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

regcoil-0.1.1-cp314-cp314t-macosx_15_0_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

regcoil-0.1.1-cp314-cp314t-macosx_14_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

regcoil-0.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (16.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

regcoil-0.1.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

regcoil-0.1.1-cp314-cp314-macosx_15_0_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

regcoil-0.1.1-cp314-cp314-macosx_14_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

regcoil-0.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (16.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

regcoil-0.1.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

regcoil-0.1.1-cp313-cp313-macosx_15_0_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

regcoil-0.1.1-cp313-cp313-macosx_14_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

regcoil-0.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (16.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

regcoil-0.1.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

regcoil-0.1.1-cp312-cp312-macosx_15_0_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

regcoil-0.1.1-cp312-cp312-macosx_14_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

regcoil-0.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (16.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

regcoil-0.1.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

regcoil-0.1.1-cp311-cp311-macosx_15_0_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

regcoil-0.1.1-cp311-cp311-macosx_14_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

regcoil-0.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (16.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

regcoil-0.1.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

regcoil-0.1.1-cp310-cp310-macosx_15_0_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

regcoil-0.1.1-cp310-cp310-macosx_14_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file regcoil-0.1.1.tar.gz.

File metadata

  • Download URL: regcoil-0.1.1.tar.gz
  • Upload date:
  • Size: 13.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for regcoil-0.1.1.tar.gz
Algorithm Hash digest
SHA256 9df3ed7257a654e17e948ee3f44b977e04a756f7c63c3a729419e3f8667bb0d0
MD5 d4d48589de41d3f2295282a0a8a5c581
BLAKE2b-256 e5fbaf36520d9265b7e2a1882ffbe031ec2b29ab45a8bc38559ef844b9dab751

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1.tar.gz:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b03d943210634134bcdbf968a7e0d4691057d241d16c0301dad5ad8d8635b1a
MD5 cdfbc8a50a150f2b658b7030dd4c3aff
BLAKE2b-256 565e5969d5149e9da92796ede565c6f064a89f93a8d9aadb39b6dc7294d9b947

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ea67967de0db9ab792d66c3b87e1a41669b0ff4fca6faf6626550092e5d4380
MD5 545229071085467eddd635af37207379
BLAKE2b-256 f51504cae441803d486c09858882c9a2524c1d16b27ce1cdcf319f28b96f9812

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 06b04ab9ec49cf34be48b072e1887424c2b4bb95a0d932277fe9851eb510e903
MD5 496fff426b2f726ce8301e3120fbc750
BLAKE2b-256 5c34f4ecaad42d060cd8abeecbb74df7471acb520239e6f46dd75b993e357b0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp314-cp314t-macosx_15_0_x86_64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp314-cp314t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 4e3d7e21c8a98df582b8fd611fdafc68417d5eac85b4b1553b018d1ad7877391
MD5 c36aa7dd76b76ec92d76c44d82447043
BLAKE2b-256 66d5be24de44f3631be6069488695fa67d4940b42bbbe69d2cb0eed9cbce4ba7

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp314-cp314t-macosx_14_0_arm64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d35c3441a3da47f520b1555819fce3f164dc1634220a93827eb2e0f039cf121e
MD5 c8a227384f50ea9856b063d105e753b7
BLAKE2b-256 8d79b7de587bf96d45601d45045a2f26b8e32093a4262d56c293a2378b15b6c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3269de86dc1d4f65ee25b5b8ca2a44ea0fe41470f8def0c15e141e351c757630
MD5 d27c9cbdf11210beef8051b23319616e
BLAKE2b-256 4bcdb29c662158966e682da74e670fa6347c15ca11fd65bd308dcec6a9415d91

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c408d08a883caef53c4ec7be99d1bfd5df2a82af24d723e856b2c34c766132fb
MD5 3b243be00d50218a88487cb5ae39f354
BLAKE2b-256 4f4b6a841019e819bf99d597f53d557d262c8cbaf56ee29de58ff58220c86e09

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp314-cp314-macosx_15_0_x86_64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b3c756ca8da8e430e52aac6ad37a3448bd796d13158ea78021b9b2f916cfdb02
MD5 2df0f6b69513a937429d2a32cd08b683
BLAKE2b-256 6022798302628bf587c204741cfc0d0901f088b4febbf34e594acc3083ee250a

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 60a03640370def5dd0103eeca9357e25934ba1d2b4d44f43781693b2e36ad7a9
MD5 2797aa19d7e31f77da4445cccb90c163
BLAKE2b-256 c5d02906564ee90d2a6946b7ac4d12246c365a1d6556c761cb40bfa69a1592c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2311388e4457d5f9969f8dde447865da73513b648e84d949b8f5ea73714c1c9e
MD5 7f2acd1abc41568e324d2c723a976e67
BLAKE2b-256 5aa2a4c4467e7d2637fd8651d040167b50b781167f20a1208635bd41cff55a40

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 fab48e97f977163d8027d10e378ce478f84226e3863347d7d57b9cc189a443c7
MD5 c3306c307f5001d2658b7cd4152093c4
BLAKE2b-256 8dbc96d5b61b60791defeb3eb1d0a74c10396098b17646cb5f6838f82c72a8a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp313-cp313-macosx_15_0_x86_64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6a8eb9cab31b564a7f83dc1b420520a2a1f51edbc70ca1bb33185eb88102e387
MD5 30669107f79608c38040aff8694e6661
BLAKE2b-256 ac1205734ee7bd8791b387a4948ada1417537e245d86687faca01bed02109e39

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c96e1e57fc7dbdae1c9731102165b9c0e96f13cb6a8dfb4f1aebdf6e2c78745
MD5 d32182956c07f4a4e26d45c8bdd66ef6
BLAKE2b-256 21f249f84a8d7ace0c94aa2bab54617748dadb0186b14709335ffb70c8ee5831

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d22d388e5e6d419479469f20a02091d62489c9192a6f420a30c1fc915a73546b
MD5 5c44e80cd5c9a189000ddfe130570c98
BLAKE2b-256 2acbd21546ab8482f35470b412097a02a2617fcf0ec83557cfe5d03462411597

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a0beb65a93d119f618c22373dac6c970ba4354126e77af4f76ba105a71b68c19
MD5 375d0d0aa8de840be3c4b0c7e051abba
BLAKE2b-256 c370462f7e69208175fd121d4b585dcb8d49667a6f155204649b01134eab8400

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp312-cp312-macosx_15_0_x86_64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d99292408f1abbae21fa964ac86fbbf7a330bc139bdd95196756aee6857e898d
MD5 5847f80bac2463805739ee27c3c932c0
BLAKE2b-256 38778f49b0e8c566effab17418f90a96b0721249bc2b865205a2231b8a18f7d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c03e3e0b608448299cdb37dbd21f1673d2083d6cfa5e7d4108ab3bd863896b06
MD5 bba3172b8a66c2047c6f1127c649912f
BLAKE2b-256 a239e8ad9b710de3a7948029ade1834d863085b399928128fabb3a10d72bbb27

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19f7d27738c74430f9ca371885282615087838acadc97cd03174ca8c1dbb8c2d
MD5 23940203665f687142a82e8973a78b78
BLAKE2b-256 f3ae14a3decaf5b90a5174f79bb87341cc1d26a63f4e4360867648fcf30972f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 74ea273b74ed3b3b1b620417bb5ef3ad78e9b466ad1de4c521b95b99360809aa
MD5 9d0c9ad6b890e245b6db576e19d29418
BLAKE2b-256 bb02e6500d16c227e5141fc3f8567150a64fe207d1962640dc97ba723a3bdfa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp311-cp311-macosx_15_0_x86_64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 13456294cf32770d89f81a9d6beb530b8316056d9d997605be0e472ace88680e
MD5 754cf9722f21137f60174656b8045c07
BLAKE2b-256 65f56a088abf8cf0c02f4b0c9f9a47ba64233a4d908438051989ceddc37240f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ee66f0853315482f061fe248df492afdfeca0c9cf8f921daa0d5169fa022752
MD5 e3d0a956c692cc4f2bc042ee7c2c84d4
BLAKE2b-256 2415eed5c24291c7a7b5e82130bfd223663a9590dd802ab16f1dbdc1906a4c01

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa656d9a5176454d6b5a14040cefa5a99d2b0b0937028ff91325cc143898a657
MD5 83cf0a4356a401dbdfa40c902299b992
BLAKE2b-256 051ba601972afaaf17ee8313a8f74648da7c6ba69d3977f91cfe4acd80859db2

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 261e09c7dcd3978d0a04620502108621d501f757645a36f4f84eae55461ffafa
MD5 015ab3520e181035eb0ab385dd5f2590
BLAKE2b-256 2c51d3dc9bf1c7b9e49b83f1b814043928193a6f8131d6d07b0881e01bb21c54

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp310-cp310-macosx_15_0_x86_64.whl:

Publisher: release.yml on landreman/regcoil

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

File details

Details for the file regcoil-0.1.1-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.1-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 87e9a478ff183f999d5bf3e42a3472b1fd3f866574abe93632ddb71e35145c09
MD5 0c73b00bc3ec0f58f04376ba5376e82d
BLAKE2b-256 6e509417543120fc9cd244f8290b883aba968581338b843a12dc1547ac5f3df3

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.1-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: release.yml on landreman/regcoil

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

Release history Release notifications | RSS feed

0.1.3

25 files

0.1.2

25 files

This release

0.1.1 This release

25 files

0.1.0

21 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page