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.2.tar.gz (768.0 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.2-cp314-cp314-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 14.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

cea-3.1.2-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.2-cp311-cp311-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

cea-3.1.2-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.2.tar.gz.

File metadata

  • Download URL: cea-3.1.2.tar.gz
  • Upload date:
  • Size: 768.0 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.2.tar.gz
Algorithm Hash digest
SHA256 74d65043b935be5e4f6ad9f6e7d5aed6e7449b3a62fcba37a9784d77fca59ff5
MD5 e0d8b6d63b4fd253eefd5c6444516919
BLAKE2b-256 58224c6a17617e9d6abe3a0177abef044474d6ef78cc483e38b4a72e430dda7e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cea-3.1.2-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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f5f32f1e933f4766927343996ecd5e239f99d5aef6e3d8f42703dc5006456a39
MD5 7e66096caf2c93ebe1611365a3ef535e
BLAKE2b-256 456ee69b15418f913bbe0118be4a491af17c7cf62c6860d56286319b74eb8c1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cea-3.1.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc47936b69bf4e7da162e3f15d13ea29e17e45d7c1cd8928fbdf6df682a1a1e0
MD5 bffda06653b3ac3bc9efe9c9909c26a0
BLAKE2b-256 7a78d2b1893ed7d8e860acc4c3b88137680173249bd7a2e5a9211c9f1b1ac3c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cea-3.1.2-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 26eb232f0f66a2c1fc34425ca4436edf0f11bac9cf4a609f2afe0ad4ba368015
MD5 3ad995c82c79d487233a46392b22e8f7
BLAKE2b-256 20fc862a75396702df0896e9c211438fa9bd29e374002fb8aa23f84e847a83a2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cea-3.1.2-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.2-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 7ea1e7f0cec24afceec07e5cb2c56e1b7bc15468e6d409948d60d6404a524752
MD5 b703de8fafebbc8e5032fe2c90eaf6ee
BLAKE2b-256 01193d5aad3b5575e64adfe15cc92f2512cc5cb076021a9e440ace081485afd3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cea-3.1.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6eed5d04e8dea7492e8220bc360278ab335b4306758968843b2600329cce4d11
MD5 b4d6481959e2642a05736fbcffb9c16f
BLAKE2b-256 c4c2884c0ecdbe71d7225195d8dafde1284cce06bde0cc504601486ad41efddb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cea-3.1.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cbe231aaaa77cb4afa495a2cf8149b93f62349b4ad2329075f89448891b88a3a
MD5 0c8f75a7c5ff711eb6ed18a1374aa24e
BLAKE2b-256 ced7fe8593fdeb7a098fa87f50c3c6245db9ccd9dfa7d269e975639e23830d14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cea-3.1.2-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 06e90c48d37350b4d811d1ead979d3ba5f7ca26e048ff323b8136441872763a2
MD5 a02ca79b6d4e7648276eb05172683006
BLAKE2b-256 d5c626024b3f95dbaa86ecd19382a99e8dc75227dde9a1a5a8c93118da0a9b51

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cea-3.1.2-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.2-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 fb67100372fc681d83327a433131a6ff265b31080ae45ec61e4c80b457918072
MD5 45501f83f5031e50354a496ea589ad08
BLAKE2b-256 f137cf33e68b1f4654eb61262ba30f9de9f9bd9d969402c59a0b9db398a26de4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cea-3.1.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 273a8f2e58b16b76c8541b0d41573f3d7f3fb3a15b93814a2080c420b2393999
MD5 e6f58fc40cc86ff571af9e4f3daa94f9
BLAKE2b-256 98e202de3df96b02a80ad34c3a0eeb4b4c83c9ffea2a6056a967738543f4e5a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cea-3.1.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 205b05be854226db222a49f088fa73b7f46bcefaefb6ccf665b99799a9ab58fd
MD5 d8e94002aed8b3407c74ee8ff85422b5
BLAKE2b-256 6f3a9ca5b0bddd478d9ec2e1a9a51dd50382ed7309c4f84889decaca3373f7f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cea-3.1.2-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 4038ea57acb140dc9be09b1355a7b34f7bdd434401fa4af865b56dca14f75541
MD5 b3bad68d9861200c4c3dc91f01ca8e3d
BLAKE2b-256 dc14b55586f6c02f7f9446fd25fd89b392ae0921ae386290d2f561806ca9f74f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cea-3.1.2-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.2-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2039e8803f4644946e436dbf6ca529d41893176908b38d08764ab97c3d9576f1
MD5 a71af7e77a5c854c7f291e3908d29995
BLAKE2b-256 390ffb28f210b33330b65bb65e714a5fd8874b71cad9dee1213eb4a677cd3890

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cea-3.1.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 004b971062dbd09452d4f11b70121fba0377b932a620be01ae7d9da9b0469f36
MD5 8b2540fd403bc63677f5efb1820621af
BLAKE2b-256 930d5f5a2580f48e1034681f92935c762b72d9431d75cdbaa2167e5d09234344

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cea-3.1.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4a4d43d44241fef616dcb3d843550e0d2f4d2bff5f7e087ae518bb677c31aed1
MD5 1bea0f4101341e10a7f76aa00b979662
BLAKE2b-256 0af003a242c962b071680b968736ee2feb295c780d36b83a3ec5ef2fea5cc99b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cea-3.1.2-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1d7b2f30b8d9a5e6fafd04dddc48529b4b127aedfb3baefc79979fc37d091327
MD5 ef2f843825042b76199c7032d89967ad
BLAKE2b-256 0d0d940cad1b3f287efd25fb5d4cd699105cd926589c5a2255aa466f72dfe814

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cea-3.1.2-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.2-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9d9223ff15e5076af16b989e89db6733923bfcef8a47dd90f1560b5d2e546cf4
MD5 2e67ae7b610ff30010ec98cae0cb92d5
BLAKE2b-256 d567e0d5d2af5dfbf33a1af771c47b4facd8c206df4d85241d9e273c5a84cfe4

See more details on using hashes here.

Provenance

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