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.2.0.tar.gz (782.9 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.2.0-cp314-cp314-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.14Windows x86-64

cea-3.2.0-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.2.0-cp314-cp314-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 14.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

cea-3.2.0-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.2.0-cp313-cp313-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

cea-3.2.0-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.2.0-cp312-cp312-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

cea-3.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

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

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

Uploaded CPython 3.11macOS 15.0+ x86-64

cea-3.2.0-cp311-cp311-macosx_14_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for cea-3.2.0.tar.gz
Algorithm Hash digest
SHA256 9e88ba65fc5c42da0729eb45293227f7e5b5a790fee8bb5afe4f94a1c4ef51e0
MD5 63e494d4e5c083844f127654a305b9dd
BLAKE2b-256 7737d84975b950a3c30925b51feefe6acc9827a3bfb9d5dc48ca2b542d62616b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.2.0.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.2.0-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for cea-3.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6e3f8fe716c94b3ea566fc9d57f966aa963f204b85ae55484e3c0db65179e9a7
MD5 c4d3cafb118f2e66f2a6794c9ef04dfa
BLAKE2b-256 c8b4e3207823473e40ba72276a1bf3089ef4c07f73dfb926031628b68dbdf82a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.2.0-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.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cea-3.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e6a202cd52c735a7e8f7d181bc6c43b9abe432e0a8e7a1d9668697e946cc7c23
MD5 9f6cb2b943b18e51965402c9da2f870e
BLAKE2b-256 aea6104e2e2b755169964ffde778c95ddb11e8537ed488a1de5c60d5a0b14a76

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.2.0-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.2.0-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for cea-3.2.0-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 dcecfbeb5bfdc78e2b9b413e6af0c864a4e2e4b5e5b7a0c35f51e62dd5cee070
MD5 a9a9d14a074f6096e7c9c7faa999e0e7
BLAKE2b-256 fa18a5c6d820b223d687a7338a02c875b6adb572d8ba76105f59efbce4836778

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.2.0-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.2.0-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

  • Download URL: cea-3.2.0-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.12

File hashes

Hashes for cea-3.2.0-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3b12da1f9cead5a7ae6a4fce286ae8a6961aa85ba38b612d079753da4e2b6f4a
MD5 22e01443aa2495a22f03468c420e1106
BLAKE2b-256 327ee019ec669cfff83c5bc639b0aed28ace8c2ab714c72f0d17b501f084bbc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.2.0-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.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cea-3.2.0-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.12

File hashes

Hashes for cea-3.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e78462d8d6dac7d4098936d9c25be9ca1d0273a1c1df4441858b0530b6c4c9d8
MD5 166bbc1b9485245e43515c6512975f6d
BLAKE2b-256 91bd83bb6884243b1086954ccaebae880bd42787b902cb1237d36af45c177fcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.2.0-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.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cea-3.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 28441601c159868e7083bbdd8e1d5e53e6966de78bca269ba3bd57884ccb06c7
MD5 814e9bdb393b71664b29d7020b959f42
BLAKE2b-256 9f30d6129691ca2e9e88ee5754b5b6030f1b47b6a656af6f4eaafe5ef19c626a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.2.0-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.2.0-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for cea-3.2.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 08ffdcc80a61216d2b40c8159b83ff50dfaa1b3c179563aaafb857a6d1a01dab
MD5 5553551ecad6a71c3d87d91f23fc2c89
BLAKE2b-256 8a8b3de4c2a94499a6ab5e70644816d35de552f033446b09c114dce763eac8e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.2.0-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.2.0-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

  • Download URL: cea-3.2.0-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.12

File hashes

Hashes for cea-3.2.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 325372fe4fe1fb84c3cdebb149f56fbc91cbcb9d4132204755a3792faf6278d7
MD5 44a99e1bc83d2c7ed825bae9a683c725
BLAKE2b-256 b251fcb1c2423c2eb82229326e575595c463d156343f02a79145448c3e1c11d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.2.0-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.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cea-3.2.0-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.12

File hashes

Hashes for cea-3.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 76ccd1d68290ad6d160956c7c706f711d6ad5573699a028180efd91b82614825
MD5 328300bccf164bbd7cf5499b27e22885
BLAKE2b-256 94772fdd621d48c22bb104e2827f4ad11b85864f71083abc190907180414db8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.2.0-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.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cea-3.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b15c699f63df7d9962327ab0e4bc9445233c22ccb26a3cd5a1a1451bcce0b02c
MD5 476d655402583043f745878cf4c9110e
BLAKE2b-256 cf8cd7e6dd6b6f0077c70bb8c3e7b93ef16eafb887acb922536aa80496887404

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.2.0-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.2.0-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for cea-3.2.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 eb1dc0b3e44f702b7eae6a52d5f81c12412000e7a7f8d6a17012f6733e62470f
MD5 f247ae4f692cc858e106dc2575d82642
BLAKE2b-256 d27d8ed56b78c8823d7d25e679feed25a4af3499092996428d7bc517a1595dde

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.2.0-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.2.0-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

  • Download URL: cea-3.2.0-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.12

File hashes

Hashes for cea-3.2.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 87b490056f56d9b83b53b0ada0fab1b79698129a38e099786611f0c7cfcf063a
MD5 8c54a651a0cb9408eca3bda8d9ea1d2f
BLAKE2b-256 60c6b6a99c8c9ab1c8d13b28ec9e3e45f169100fbccbd41ee9790b8330e32843

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.2.0-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.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cea-3.2.0-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.12

File hashes

Hashes for cea-3.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4fe4637ca217756fffa774050c347a5d7e22b7f04a84f7d2b364aaae466b6156
MD5 c96975ca3198db9d09e578b89805f5a2
BLAKE2b-256 9f80482798b924faa2fb5053c676e9ca6d6ce7e22a5455712cc7a5992c52eab1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.2.0-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.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cea-3.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0b080ad66ad12a7c655c0509b69aaccd2b68d0f462676bc823fcf12930b530e
MD5 262c1ed134bcc7fcd2308da336cfc5f5
BLAKE2b-256 d54f364bf01b377c2685ec0ba6bc45a716f4bf2b72c5b71fb218448a7aa15819

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.2.0-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.2.0-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for cea-3.2.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2620d5d79feef71e588827bf2996ca19b93d18e40abf315d5e0c77113a99d2db
MD5 3cabb75d03e86377fed910ac374848ba
BLAKE2b-256 c09165d3369a17b83df2fed4f539c4249299a99be16a8f1d1fc232a302de565a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.2.0-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.2.0-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

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

File hashes

Hashes for cea-3.2.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ac240f20df19b407d2d5541438eae06adc89f315bc03f33c3a1c65e20df79d16
MD5 c50cf7966ac1604a9bc8375f3600535a
BLAKE2b-256 c34c825e6e44dcfdddb903d2063e783b9c78e975e552703d640f1af455cacb8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cea-3.2.0-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