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 (from_wout accepts a filename or simsopt.mhd.Vmec object):
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
)

# Visualize the plasma and coil winding surfaces before solving:
regcoil.plot.cross_sections(plasma, coil)
regcoil.plot.plot_3d(plasma=plasma, winding_surface=coil)

problem = regcoil.Regcoil(plasma, coil, mpol_potential=12, ntor_potential=12)
# You can solve the system with a specific value of the regularization parameter
# lambda, or scan over a range of lambdas, or search for the lambda that achieves
# a desired value of a metric such as f_B, f_K, max_K, or avg_Bnormal_over_B:
solution = problem.solve_for_target("avg_Bnormal_over_B", 0.005)
print(f"f_B = {solution.f_B:.1e}, f_K = {solution.f_K:.1e}")
# f_B = 5.0e-02, f_K = 1.1e+15

# Save the plasma and coil surfaces along with the solution:
solution.save("regcoil_out.nc")

# Cut discrete coils from the current potential and plot them:
cut_coils = solution.cut(coils_per_half_period=5)
regcoil.plot.plot_3d(plasma=plasma, coils=cut_coils)

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.3.tar.gz (14.0 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.3-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.3-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.3-cp314-cp314t-macosx_15_0_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

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

Uploaded CPython 3.14tmacOS 14.0+ ARM64

regcoil-0.1.3-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.3-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.3-cp314-cp314-macosx_15_0_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 14.0+ ARM64

regcoil-0.1.3-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.3-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.3-cp313-cp313-macosx_15_0_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

regcoil-0.1.3-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.3-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.3-cp312-cp312-macosx_15_0_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

regcoil-0.1.3-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.3-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.3-cp311-cp311-macosx_15_0_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

regcoil-0.1.3-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.3-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.3-cp310-cp310-macosx_15_0_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

regcoil-0.1.3-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.3.tar.gz.

File metadata

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

File hashes

Hashes for regcoil-0.1.3.tar.gz
Algorithm Hash digest
SHA256 ff0237c70e05bac698db6714086deb7db462319b86b977c296fcc011a91001ec
MD5 689ced8eb32ee987c60ba867f5a2bc3d
BLAKE2b-256 420ce11c4682100cd09f10dfb166495c337dd5ecfa9a0bd6f5ed116e2dfe8a43

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3.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.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b04638b424772375686853c7083cabb73f4ea675211ae687dec964218009a2d6
MD5 ff176c3f36ae8125959f1214ff84df72
BLAKE2b-256 3f16bd81a91a8f0d2c0e7dc5ab95adbb0fbaa4d091b142aec7711fa29c869fc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 98b3545ba21679e3c1daf0393344d5b6f96718790f36b02a7368736d2a95b0ee
MD5 9f6121c2edaf4a1a441e0ecf54a52393
BLAKE2b-256 203248f133b451181e5e7064d133796209e9b2046bb70ecf439c6fcbdabdf5c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1d3a958ef5076aed04c61c3ebe894a1d53c9deb127998ac6fda14bf8aae253cf
MD5 35605b42244c9ebeda8a9c648b67899b
BLAKE2b-256 1ec08ed26768bb1bf2c1c478923498266d4b80b435bea6bbd3cfa4dfc8db8c13

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp314-cp314t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a34c9f689c329863806f02708153eed71b17657415030a20053358542cc7060e
MD5 aeda74378c576df09c33c553240df78e
BLAKE2b-256 2b6bbab64d3817289472740c0eecfcc644fc60ba7275af26481b6b90771ad046

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3088b1c167c957d6a5705137898db21c0d1798cb6f212f5c4a2890d0f04148e7
MD5 38840e4923a4e184664e371f2ca29cf3
BLAKE2b-256 4376346ad135c27207e73694082a9aa2492e71ab7d0a332f6f73cf540a17d3c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a893ce116831ae218d8799139d467eb7630d97f823868436489a267c778f234
MD5 55a8e9eb771f98389c2550e9623302dd
BLAKE2b-256 4535378563b84e4044fdbb1c10068b8ab2e7f361dbed5262ef87d10ee44b069e

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a3420628c3cebd4d7728038b6fc670bc2740cc77c6e6809bdbd121e240b69a9e
MD5 f42b4e03c90f65b9fca3560bf1d2bdd5
BLAKE2b-256 53cb4e1c13777f35069459850ec1e2cd6f70651db7d99c9c7e1802eda7956a6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f93afd1ee069949d83a37ad705632fe8abf7460edb7b7946a45cb2641d3dbaef
MD5 dc6d4e3ee46a84de24de3a2069b2fc13
BLAKE2b-256 288b71fc2104c6f4105885982dbe9b95268c32f61849d4dae96e64e57a827b02

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95930b500b764444dca25e8333085c203d01c679d91090e699a30c7be4002b4a
MD5 b34cda59f3bcbfc8bc7a2ebfa1813c54
BLAKE2b-256 37482f871fefdb4e8f44e44bb77e15508d331243ca6cee3a6f2dc0ac58fbb962

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ca554d6287f2e0d9d805d93d7c3e500f86eaac178b02f32c3bf71263909e8a9
MD5 6967eedadbd1f457595ea3c862eff17a
BLAKE2b-256 284903a12765700e6baa2a8a8bba6c60dca082dcaf4efe2ab65ce3ef0b4a9b48

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 81720cd59c6c0a699c9cecf3a72769043ee71dc3ecf8f3f1055337e34371c484
MD5 e68385488ee13689e459e0f7093e6549
BLAKE2b-256 a61b09fafb6902133518917046dc519dc5a16036c7e0739df9c97141f90b38f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a0e4e4d27d61f2c439f8d3b80054084486b5d7b94f2425b54ee05e2977074b22
MD5 5dd09a734e8329cdd6a3d2f72c6dd8ec
BLAKE2b-256 9c1b151d51183b3ceb21aafd59b9bf05009e0d00f36cd7fbe93f8e868b68e2e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dad00b3b182d64662c4f448f1b4c16a204dda096d6f1addd5cb2bb3b93d34c3c
MD5 c69f8705756d3601d36a3fcc4a44d398
BLAKE2b-256 ec5c1de5fca3105c2be9e3b4d02069437a807cdcd09efccbc53f05d0a6956cf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 137ad3e3d4c5d59e51488f38232b0ff21f03ccaf4d84b59f7ed002dca727a266
MD5 ca377ba02cef5f0ca617cb326a6980a4
BLAKE2b-256 8ce9347bdea84b7fe15a89ab121fd03ccc01dcd595790ed8ca2cc9e6d2e4fdcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 cab11d01a6326053bb13d9adf7ecfff24cdcaf99f6e926d4e7be6d586e615cb3
MD5 fbd4376877a663fd5f5713fbefa552a9
BLAKE2b-256 3f765d8c6e72dae93b8e76aa871366c73a1f9f745f7fc11a98e24cca3bce9ba3

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 597089a40f578946d75e14129d4b1e1a86a9f29ea2fb05da86840f11c9f9b15c
MD5 d218a9e9354350e4728e44305ab0e0ce
BLAKE2b-256 6cd3954e09460973d946f7886406c170c7e73c9c01b54d58eb158224d983ab40

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c63f6a578c4664ac25fdf4412e7560daeda68f9d1d88dfb24613cf957356053b
MD5 d28dfef667da5aad2649508afb365473
BLAKE2b-256 7e3ee0a675accac7864ef9bd96a1300054081af6655ddd00b6e8d7dd47fd5281

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f3ec523d4ef01700a6705ee84474a6b17a099cbe6e5f8cf3fbdaf9cca0e22b22
MD5 47548e2c052135666a9e60c7488c8992
BLAKE2b-256 d2d808f73aaec85fb47e04edc83eea17eea8846b6801267c8f22de1600f68cb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 aee193cb5a21f1994b5c9f52605ba5464fbd9656109abead1ebc63120f43d032
MD5 6167e8111f7ea5e7221ef98ed16638ab
BLAKE2b-256 6d37cd2a3d4e9f0ff5845b4f0bae1dade2dc52e14509e46f16845e50795f3fc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 8a02641baeb809c647c440cba53dba91ccc07065240f74e62d3c71d17b55cdca
MD5 3dd763123d0d0d1c1487ad921484b9df
BLAKE2b-256 b85d5faea5db51cc4a8cb20c1522afb9eeaeafee069fa8b6b3766930c5ed0d20

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db60fe1e6e5cf8a6b9a68d6eedcbbe0f58faf193d6fbf8fcd3104c0b04a78eeb
MD5 422faea4c28ec6a395c3d90e6db87d5d
BLAKE2b-256 ab14393db17404f845681a459ac27952b0de35fb6a03f76ebdce2c1d66f787df

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 586ba26509649ec17ffc4513a115b997f22dd29e546af0cfd48243d169b9ead5
MD5 bb81b8b0b05f17f02202c030f9d67890
BLAKE2b-256 295839a3ea360cf5b7e060971829f3a8d8c6279948e671bb25e3a3fa167617d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c9da7174559e6e28d97fb35bf89ab9a65d6504e0a9cf37fd2ab6e0ae5f5c7fcc
MD5 5ce7c56320c5841e8b584ca541a58543
BLAKE2b-256 a828c121bd841c4f8be8f7b91ffb22e7643d171f92ea2f07cd9c0b3e564a70b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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.3-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for regcoil-0.1.3-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a0406505602446ede3dfd4153f03720665c3c37337895d2ce638cb6c604c30cf
MD5 c5b7fbee7b7af386e46c7e11632794cd
BLAKE2b-256 84078b326f266e6c844749f609248d708edc46838e18499ec8acbf1b92dff4d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for regcoil-0.1.3-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

This release

0.1.3 This release

25 files

0.1.2

25 files

0.1.1

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