Skip to main content

Chemical Equilibrium with Applications

Project description

Build and docs Basic Build License Release

CEA (Chemical Equilibrium with Applications)

CEA logo

A modernized version of NASA's Chemical Equilibrium with Applications.

Online documentation and examples are located at https://nasa.github.io/cea/

Overview

The NASA software package CEA (Chemical Equilibrium with Applications) enables the rapid solution of chemical equilibrium problems for complex mixtures. The core solver computes equilibrium product concentrations given a set of reactants and thermodynamic states. These product concentrations are then used to compute the thermodynamic and transport properties of the equilibrium mixture. Applications include estimation of theoretical rocket performance, Chapman-Jouguet detonation characteristics, and shock-tube parameters for incident and reflected shocks. Associated with the program are independent databases with transport and thermodynamic properties of individual species. Over 2000 species are contained in the thermodynamic database.

This software repository is a complete re-implementation of the original CEA software, with initial development supported by the NASA Engineering & Safety Center (NESC). The software represents the latest evolution of a series of computer programs that developed at the NASA Glenn (formerly Lewis) Research Center since the 1950s. The primary goals of the re-implementation were to modernize the CEA code base to adopt modern software engineering practices and improve CEA's ability to interface with other software packages and analysis environments via well-defined programming APIs in multiple languages.

Install (Recommended)

For most users, install the published Python package directly:

python -m pip install cea

This is the fastest path to start using the Python API (import cea) without building from source.

If you need the legacy CLI executable (cea) or C/Fortran build artifacts, use the source build path below.

Prebuilt release assets are also available on the GitHub Releases page, including platform executables and shared libraries (.so, .dll, .lib, .dll.a).

Build and Install from Source

The CEA software package is compiled and installed using CMake v3.19+. The core software has no external dependencies, and is known to build successfully on a wide range of platforms and using the Intel and GNU Fortran compilers. The basic installation process is as follows:

cd <cea_source_dir>
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=<cea_install_dir> -DCEA_BUILD_TESTING=OFF ..
cmake --build .
cmake --install .

This will build and install the cea executable, libcea library, default thermodynamic and transport property databases, documentation, and sample problems to the user-specified cea_install_dir.

Upon installation, all that is required to use the cea applications is to add the CEA install directory to the user's PATH environment variable, e.g.:

export PATH="<cea_install_dir>/bin:$PATH"

Once properly configured, you should be able to run the provided sample problems from any working directory as follows:

cea <cea_source_dir>/samples/rp1311_examples

Build Prerequisites

To build the Python bindings from source, Ninja is required (scikit-build-core uses the Ninja generator). Ensure ninja is available on your PATH before running pip install . or pip install -e ..

Minimal Builds

If you want a Fortran-only build or a Fortran+C build without Python/Cython/NumPy dependencies, use the presets below.

Fortran-only (no C/Python bindings):

cmake --preset core
cmake --build build-core
cmake --install build-core

Fortran + C (no Python bindings):

cmake --preset core-c
cmake --build build-core-c
cmake --install build-core-c

If you are not using presets, set -DCEA_ENABLE_BIND_PYTHON=OFF and also disable the MATLAB wrapper (it forces Python on). For Fortran-only, also set -DCEA_ENABLE_BIND_C=OFF.

Python Binding from a Source Checkout

The new Python binding provides direct access to compiled CEA routines. If you are developing locally or want to build from a checkout, use:

cd <cea_source_dir>
pip install .

A binary wheel distribution can also be generated with the following:

cd <cea_source_dir>
pip wheel --no-deps -w dist .

This will build a standalone binary wheel distribution in the ./dist directory. This distribution can then be installed on compatible local hosts with:

pip install path/to/wheel/<wheel-file-name>

The Python binding to CEA has been successfully compiled and executed on macOS, Linux, and Windows systems.

Examples

Legacy CLI (classic .inp deck - run this from the build/source directory):

./cea ../samples/example1

Note that specifying the .inp extension for input files is optional.

Python example (runs the H2/O2 case after installing the Python bindings):

python source/bind/python/cea/samples/h2_o2.py

Database Generation

CEA requires thermodynamic and transport property databases. When using the provided CMake build system, these databases are automatically compiled from data/thermo.inp and data/trans.inp during the build process and installed alongside the cea executable.

Custom Database Generation

In many applications it is necessary to perform calculations with modified versions of the provided databases. To generate custom databases, run the cea program in compilation mode with your modified input files:

./cea --compile-thermo path/to/thermo.inp
./cea --compile-trans path/to/trans.inp

This will produce thermo.lib and trans.lib in the current directory.

To use the customized databases, copy them into the working directory where you will be executing the cea program (usually the same directory as the .inp problem definition file). Database files in the working directory will take precedence over the installed database files in <cea_install_dir>/data/.

Database Lookup

CEA locates thermo.lib and trans.lib in the following order:

  • For the CLI and C/Fortran APIs: current working directory, CEA_DATA_DIR (if set), ./data, then <cea_install_dir>/data.
  • For Python (cea.init() with no path): current working directory, CEA_DATA_DIR (if set), packaged cea/data, then the repo data/ directory when running from a source checkout.

You can override the search path by setting CEA_DATA_DIR or by passing explicit paths:

export CEA_DATA_DIR=/path/to/cea/data
import cea
cea.init("/path/to/cea/data")

References

  1. McBride, B.J., Zehe, M. J., Gordon, S., "NASA Glenn Coefficients for Calculating Thermodynamic Properties of Individual Species", NASA TP-2002-211556, 2002. NTRS
  2. McBride, B.J., Gordon, S., and Reno, M.A., "Thermodynamic Data for Fifty Reference Elements", NASA TP-3287/REV1, 2001. NTRS
  3. Gordon, S., McBride, B.J., "Thermodynamic Data to 20 000 K for Monatomic Gases", NASA TP-1999-208523, 1999. NTRS
  4. Svehla, R.A., "Transport Coefficients for the NASA Lewis Chemical Equilibrium Program", NASA TM-4647, 1995. NTRS
  5. McBride, B.J., and Gordon, S., "Computer Program for Calculating and Fitting Thermodynamic Functions", NASA RP-1271, 1992. NTRS

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

cea-3.1.1.tar.gz (765.6 kB view details)

Uploaded Source

Built Distributions

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

cea-3.1.1-cp314-cp314-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.14Windows x86-64

cea-3.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

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

cea-3.1.1-cp314-cp314-macosx_15_0_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

cea-3.1.1-cp314-cp314-macosx_14_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

cea-3.1.1-cp313-cp313-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.13Windows x86-64

cea-3.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

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

cea-3.1.1-cp313-cp313-macosx_15_0_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

cea-3.1.1-cp313-cp313-macosx_14_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

cea-3.1.1-cp312-cp312-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.12Windows x86-64

cea-3.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

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

cea-3.1.1-cp312-cp312-macosx_15_0_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

cea-3.1.1-cp312-cp312-macosx_14_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

cea-3.1.1-cp311-cp311-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.11Windows x86-64

cea-3.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

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

cea-3.1.1-cp311-cp311-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

cea-3.1.1-cp311-cp311-macosx_14_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

File details

Details for the file cea-3.1.1.tar.gz.

File metadata

  • Download URL: cea-3.1.1.tar.gz
  • Upload date:
  • Size: 765.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cea-3.1.1.tar.gz
Algorithm Hash digest
SHA256 d70cd8cd10d6b82ac3eee0ac58ccbab54c9e46011ad752bbafc3359f6b5f7365
MD5 674a76314e9296741aad5bda872f62ca
BLAKE2b-256 cf0f8449ffd73ad5a326bc574fa399b3e41aae22dd34dd7b552a1d6333ce637a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.1.1.tar.gz:

Publisher: publish_wheels.yml on nasa/cea

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

File details

Details for the file cea-3.1.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cea-3.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cea-3.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2f2e073eb668b203019858dc071492aa96dc395b6367b0f5154b7978555e72df
MD5 b5c60688b484152b19805eef1a5bcfa3
BLAKE2b-256 c5954c824923bef7af3fe53f6e08b886a10b4291a5dd43ae0f99347b57d98b00

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.1.1-cp314-cp314-win_amd64.whl:

Publisher: publish_wheels.yml on nasa/cea

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

File details

Details for the file cea-3.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cea-3.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45acdd1f80a68bf94d06215c92092f4d0823f156902351eed1adc354707fc0e5
MD5 71b25e5dfdc0b258b327d62800da1530
BLAKE2b-256 01206360a1c17e118ae1929d905fa5d9b2a5a105fe3c465ccf8142cfb4c654bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_wheels.yml on nasa/cea

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

File details

Details for the file cea-3.1.1-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for cea-3.1.1-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 fff8edf5dfdc916b514f718acfaca5f708ec81140e4b4e922e243c0443eb9a51
MD5 1a6b036527f788f6c15cbe338c81ad12
BLAKE2b-256 db01d14e97c26fae8a1fc135f35a2680cce258a70fd4c524e4b57c36cd18cd10

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.1.1-cp314-cp314-macosx_15_0_x86_64.whl:

Publisher: publish_wheels.yml on nasa/cea

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

File details

Details for the file cea-3.1.1-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

  • Download URL: cea-3.1.1-cp314-cp314-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cea-3.1.1-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6810070c6116100d0ea4be2137dad02e9c675181a91ba1865a1e8afa51819c52
MD5 c121cf78d4e7b628263b75a0d17b3094
BLAKE2b-256 7c4dceacbc79566d143b7b6a734e0cd05f3b6f30b284b8f7088b1cdb25a83341

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.1.1-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: publish_wheels.yml on nasa/cea

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

File details

Details for the file cea-3.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cea-3.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cea-3.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a4d503b4a4651a437af86ad86fd26087f01df9d245967ea8a6306b1dae8c55c4
MD5 ea0fb2816297a3a1ab3bd72efcc12026
BLAKE2b-256 6294d3a429f032213acc77ea3834e6866f9e1fe253310e1b5b99e7df945a5982

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.1.1-cp313-cp313-win_amd64.whl:

Publisher: publish_wheels.yml on nasa/cea

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

File details

Details for the file cea-3.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cea-3.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 485425920c6f174e152701ff25c00e54e315a78c2cece828e31fa9513e28be02
MD5 2ef58291c15ede6eee2d4ab0c97a7546
BLAKE2b-256 2074c65444bdec1dbd87d387b7a2d24f6d618befa448e1a97bd6d49d7485ef30

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_wheels.yml on nasa/cea

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

File details

Details for the file cea-3.1.1-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for cea-3.1.1-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 7232151d3fee18ae88103046c77797131263bd3ec58cb4c61940f3a0df0dc861
MD5 657ab0a6da7d481ed7ee9c7a7c094dfe
BLAKE2b-256 fa68320fc3dd51527b52adba0ea1af17164d84aef2c636a35b922aaef35e1e18

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.1.1-cp313-cp313-macosx_15_0_x86_64.whl:

Publisher: publish_wheels.yml on nasa/cea

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

File details

Details for the file cea-3.1.1-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

  • Download URL: cea-3.1.1-cp313-cp313-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cea-3.1.1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f4629201369a8fe5b01397ca951583c08708729d3007df42cb51ffb695439eea
MD5 36e76457e3be46da03836269b643543f
BLAKE2b-256 968e72298ab883970a8ded49067b83625bdd9df1997c283a02326bf4ae13b26f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.1.1-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: publish_wheels.yml on nasa/cea

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

File details

Details for the file cea-3.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cea-3.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cea-3.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 953c841c72467bbbe3881e64ee4d980a5917e52398a3fe5fa30e92778d205099
MD5 4d09a58c7029477c7913f5870c603daf
BLAKE2b-256 c36e491fc345405f31ef0168d81c1f2d7264d78bd13b9c8a8afee1fc95350e24

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.1.1-cp312-cp312-win_amd64.whl:

Publisher: publish_wheels.yml on nasa/cea

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

File details

Details for the file cea-3.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cea-3.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 842a7e54271a685565443f28e0e33e33e94726045bb46d3532edf9a2d3de0c33
MD5 216065d31210e8bc7796f1e6dbbd6987
BLAKE2b-256 4ef445041815d83a8a0f35285b8faedecf47a854d821f443aab8c56af2936ee7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_wheels.yml on nasa/cea

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

File details

Details for the file cea-3.1.1-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for cea-3.1.1-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b62dbbf01f1f6b8a9c11a4ae7e6db2435600845dea54daf07fee663ce8d07e7e
MD5 ab8c5327491866b8896bcb405df60012
BLAKE2b-256 6ad390af9f5f8b6cba0dbb27fb5f00cae0e1b4ba56e5415ab12d05e82275249a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.1.1-cp312-cp312-macosx_15_0_x86_64.whl:

Publisher: publish_wheels.yml on nasa/cea

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

File details

Details for the file cea-3.1.1-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

  • Download URL: cea-3.1.1-cp312-cp312-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cea-3.1.1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9f2026f80f3982a4e98ad74dc8ad49b6a3701dd816b4f66ab6bef614d559b360
MD5 e1812a88973ed311fa1ec9ec6b11dd05
BLAKE2b-256 4c5b836076378c2aff62ca83aeea93f83ae1f2c27a4353077e4136547a9832df

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.1.1-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: publish_wheels.yml on nasa/cea

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

File details

Details for the file cea-3.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cea-3.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cea-3.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9e1960e8ba1b19d8859caead5d18dd57c0844f0ec731bfb4f946e819eba86374
MD5 25fab9f234fe88de27b15736f7353826
BLAKE2b-256 c8a9e4ab0264e9337a692c01ae561308d334aaa62644518d656192dc10da7749

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.1.1-cp311-cp311-win_amd64.whl:

Publisher: publish_wheels.yml on nasa/cea

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

File details

Details for the file cea-3.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cea-3.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e18c0642254fdea2ce1a82e830de54f1207adf9eeb2c6a99fe16fc3336538bf
MD5 2b0325199b21832d3d0fff4387a71aaf
BLAKE2b-256 b277c3693de1142bbd5c580aa682ea989c276f3dff9b03d88aa482a4cc678713

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_wheels.yml on nasa/cea

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

File details

Details for the file cea-3.1.1-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for cea-3.1.1-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e6abbc89bdbd0c9aae39faa707d801fbad5976d6df866134a65eaca46f22eb80
MD5 def5389ee157e228a612a7d6cac9c616
BLAKE2b-256 cd3bdb6699a37a6028089a11ba3b6299a46c2e0398798ccf360ac6333e45cc4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.1.1-cp311-cp311-macosx_15_0_x86_64.whl:

Publisher: publish_wheels.yml on nasa/cea

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

File details

Details for the file cea-3.1.1-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

  • Download URL: cea-3.1.1-cp311-cp311-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cea-3.1.1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ae9b2906b7b5c18ea827a20a155efe3d1adb1655d6d917b1de4b053c88dcc0a6
MD5 a34bc521a3d7dcd1d322029108d30d39
BLAKE2b-256 d3a70e0eab8ca26d7836a64172bf027b5a00cdfc9a50aa0ca0c291e5ea3b2cf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.1.1-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: publish_wheels.yml on nasa/cea

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