Skip to main content

Python Battery Mathematical Modelling.

Project description

PyBaMM_logo

Build readthedocs codecov Open In Colab DOI release black code style

All Contributors

PyBaMM

PyBaMM (Python Battery Mathematical Modelling) solves physics-based electrochemical DAE models by using state-of-the-art automatic differentiation and numerical solvers. The Doyle-Fuller-Newman model can be solved in under 0.1 seconds, while the reduced-order Single Particle Model and Single Particle Model with electrolyte can be solved in just a few milliseconds. Additional physics can easily be included such as thermal effects, fast particle diffusion, 3D effects, and more. All models are implemented in a flexible manner, and a wide range of models and parameter sets (NCA, NMC, LiCoO2, ...) are available. There is also functionality to simulate any set of experimental instructions, such as CCCV or GITT, or specify drive cycles.

๐Ÿ’ป Using PyBaMM

The easiest way to use PyBaMM is to run a 1C constant-current discharge with a model of your choice with all the default settings:

import pybamm
model = pybamm.lithium_ion.DFN()  # Doyle-Fuller-Newman model
sim = pybamm.Simulation(model)
sim.solve([0, 3600])  # solve for 1 hour
sim.plot()

or simulate an experiment such as CCCV:

import pybamm
experiment = pybamm.Experiment(
    [
        ("Discharge at C/10 for 10 hours or until 3.3 V",
        "Rest for 1 hour",
        "Charge at 1 A until 4.1 V",
        "Hold at 4.1 V until 50 mA",
        "Rest for 1 hour")
    ]
    * 3,
)
model = pybamm.lithium_ion.DFN()
sim = pybamm.Simulation(model, experiment=experiment, solver=pybamm.CasadiSolver())
sim.solve()
sim.plot()

However, much greater customisation is available. It is possible to change the physics, parameter values, geometry, submesh type, number of submesh points, methods for spatial discretisation and solver for integration (see DFN script or notebook).

For new users we recommend the Getting Started guides. These are intended to be very simple step-by-step guides to show the basic functionality of PyBaMM, and can either be downloaded and used locally, or used online through Google Colab.

Further details can be found in a number of detailed examples, hosted here on github. In addition, there is a full API documentation, hosted on Read The Docs. Additional supporting material can be found here.

Note that the examples on the default develop branch are tested on the latest develop commit. This may sometimes cause errors when running the examples on the pybamm pip package, which is synced to the main branch. You can switch to the main branch on github to see the version of the examples that is compatible with the latest pip release.

๐Ÿš€ Installing PyBaMM

PyBaMM is available on GNU/Linux, MacOS and Windows. We strongly recommend to install PyBaMM within a python virtual environment, in order not to alter any distribution python files. For instructions on how to create a virtual environment for PyBaMM, see the documentation.

Using pip

pypi downloads

pip install pybamm

Using conda

PyBaMM is available as a conda package through the conda-forge channel.

conda_forge downloads

conda install -c conda-forge pybamm

Optional solvers

On GNU/Linux and MacOS, an optional scikits.odes-based solver is available, see the documentation.

๐Ÿ“– Citing PyBaMM

If you use PyBaMM in your work, please cite our paper

Sulzer, V., Marquis, S. G., Timms, R., Robinson, M., & Chapman, S. J. (2021). Python Battery Mathematical Modelling (PyBaMM). Journal of Open Research Software, 9(1).

You can use the bibtex

@article{Sulzer2021,
  title = {{Python Battery Mathematical Modelling (PyBaMM)}},
  author = {Sulzer, Valentin and Marquis, Scott G. and Timms, Robert and Robinson, Martin and Chapman, S. Jon},
  doi = {10.5334/jors.309},
  journal = {Journal of Open Research Software},
  publisher = {Software Sustainability Institute},
  volume = {9},
  number = {1},
  pages = {14},
  year = {2021}
}

We would be grateful if you could also cite the relevant papers. These will change depending on what models and solvers you use. To find out which papers you should cite, add the line

pybamm.print_citations()

to the end of your script. This will print bibtex information to the terminal; passing a filename to print_citations will print the bibtex information to the specified file instead. A list of all citations can also be found in the citations file. In particular, PyBaMM relies heavily on CasADi. See CONTRIBUTING.md for information on how to add your own citations when you contribute.

๐Ÿ› ๏ธ Contributing to PyBaMM

If you'd like to help us develop PyBaMM by adding new methods, writing documentation, or fixing embarrassing bugs, please have a look at these guidelines first.

๐Ÿ“ซ Get in touch

For any questions, comments, suggestions or bug reports, please see the contact page.

๐Ÿ“ƒ License

PyBaMM is fully open source. For more information about its license, see LICENSE.

โœจ Contributors

Thanks goes to these wonderful people (emoji key):


Valentin Sulzer

๐Ÿ› ๐Ÿ’ป ๐Ÿ“– ๐Ÿ’ก ๐Ÿค” ๐Ÿšง ๐Ÿ‘€ โš ๏ธ โœ… ๐Ÿ“

Robert Timms

๐Ÿ› ๐Ÿ’ป ๐Ÿ“– ๐Ÿ’ก ๐Ÿค” ๐Ÿšง ๐Ÿ‘€ โš ๏ธ โœ…

Scott Marquis

๐Ÿ› ๐Ÿ’ป ๐Ÿ“– ๐Ÿ’ก ๐Ÿค” ๐Ÿšง ๐Ÿ‘€ โš ๏ธ โœ…

Martin Robinson

๐Ÿ› ๐Ÿ’ป ๐Ÿ“– ๐Ÿ’ก ๐Ÿค” ๐Ÿ‘€ โš ๏ธ โœ…

Ferran Brosa Planella

๐Ÿ‘€ ๐Ÿ› ๐Ÿ’ป ๐Ÿ“– ๐Ÿ’ก ๐Ÿค” ๐Ÿšง โš ๏ธ โœ… ๐Ÿ“

Tom Tranter

๐Ÿ› ๐Ÿ’ป ๐Ÿ“– ๐Ÿ’ก ๐Ÿค” ๐Ÿ‘€ โš ๏ธ โœ…

Thibault Lestang

๐Ÿ› ๐Ÿ’ป ๐Ÿ“– ๐Ÿ’ก ๐Ÿค” ๐Ÿ‘€ โš ๏ธ ๐Ÿš‡

Diego

๐Ÿ› ๐Ÿ‘€ ๐Ÿ’ป ๐Ÿš‡

felipe-salinas

๐Ÿ’ป โš ๏ธ

suhaklee

๐Ÿ’ป โš ๏ธ

viviantran27

๐Ÿ’ป โš ๏ธ

gyouhoc

๐Ÿ› ๐Ÿ’ป โš ๏ธ

Yannick Kuhn

๐Ÿ’ป โš ๏ธ

Jacqueline Edge

๐Ÿค” ๐Ÿ“‹ ๐Ÿ”

Fergus Cooper

๐Ÿ’ป โš ๏ธ

jonchapman1

๐Ÿค” ๐Ÿ”

Colin Please

๐Ÿค” ๐Ÿ”

cwmonroe

๐Ÿค” ๐Ÿ”

Greg

๐Ÿค” ๐Ÿ”

Faraday Institution

๐Ÿ’ต

Alexander Bessman

๐Ÿ› ๐Ÿ’ก

dalbamont

๐Ÿ’ป

Anand Mohan Yadav

๐Ÿ“–

WEILONG AI

๐Ÿ’ป ๐Ÿ’ก โš ๏ธ

lonnbornj

๐Ÿ’ป โš ๏ธ ๐Ÿ’ก

Priyanshu Agarwal

โš ๏ธ ๐Ÿ’ป ๐Ÿ› ๐Ÿ‘€ ๐Ÿšง โœ…

DrSOKane

๐Ÿ’ป ๐Ÿ’ก ๐Ÿ“– โš ๏ธ โœ…

Saransh Chopra

๐Ÿ’ป โš ๏ธ ๐Ÿ“– โœ…

David Straub

๐Ÿ› ๐Ÿ’ป

maurosgroi

๐Ÿค”

Amarjit Singh Gaba

๐Ÿ’ป

KennethNwanoro

๐Ÿ’ป โš ๏ธ

Ali Hussain Umar Bhatti

๐Ÿ’ป โš ๏ธ

Leshinka Molel

๐Ÿ’ป ๐Ÿค”

tobykirk

๐Ÿค” ๐Ÿ’ป โš ๏ธ โœ…

Chuck Liu

๐Ÿ› ๐Ÿ’ป

partben

๐Ÿ“–

Gavin Wiggins

๐Ÿ› ๐Ÿ’ป

This project follows the all-contributors specification. Contributions of any kind welcome!

Project details


Release history Release notifications | RSS feed

This version

21.10

Download files

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

Source Distribution

pybamm-21.10.tar.gz (897.5 kB view details)

Uploaded Source

Built Distributions

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

pybamm-21.10-pp37-pypy37_pp73-win32.whl (1.4 MB view details)

Uploaded PyPyWindows x86

pybamm-21.10-pp37-pypy37_pp73-manylinux2010_x86_64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

pybamm-21.10-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pybamm-21.10-cp39-cp39-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86-64

pybamm-21.10-cp39-cp39-win32.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86

pybamm-21.10-cp39-cp39-manylinux2010_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

pybamm-21.10-cp39-cp39-manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

pybamm-21.10-cp39-cp39-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pybamm-21.10-cp38-cp38-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86-64

pybamm-21.10-cp38-cp38-win32.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86

pybamm-21.10-cp38-cp38-manylinux2010_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

pybamm-21.10-cp38-cp38-manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

pybamm-21.10-cp38-cp38-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pybamm-21.10-cp37-cp37m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.7mWindows x86-64

pybamm-21.10-cp37-cp37m-win32.whl (1.4 MB view details)

Uploaded CPython 3.7mWindows x86

pybamm-21.10-cp37-cp37m-manylinux2010_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

pybamm-21.10-cp37-cp37m-manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

pybamm-21.10-cp37-cp37m-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file pybamm-21.10.tar.gz.

File metadata

  • Download URL: pybamm-21.10.tar.gz
  • Upload date:
  • Size: 897.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10.tar.gz
Algorithm Hash digest
SHA256 1236ebefe1f90d3a3edcdae4a5614c3ee6ad7b3ce831004c434a83ae7feae06a
MD5 f748120bcdf7324e325f0aa7194b1cc8
BLAKE2b-256 f7a88d5a3f5096a46df07587b7de7b5191635de79fbecc1dc7f16f673e6add67

See more details on using hashes here.

File details

Details for the file pybamm-21.10-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: pybamm-21.10-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 4e0b085bee316ad81fac003a45ab212183ecb1a76719403f487fc7f8d2ebcb1e
MD5 6b021bb50017c36ca3445e78294b974d
BLAKE2b-256 0e34759e1ce570cbd4930a44f7c5a08e646f0ac73438ebaf47ffeef14a9b6d99

See more details on using hashes here.

File details

Details for the file pybamm-21.10-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pybamm-21.10-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 300647af6a24e4f802ebb833d3be6adfd300664f87cb0806dd89665e6f04845b
MD5 9fdd8d6485518aad08d87ce8b77c982c
BLAKE2b-256 5be0a9fb75b63ea90b9d66427e513cd716676ee8e1844ab0a135b7c0bfd836a5

See more details on using hashes here.

File details

Details for the file pybamm-21.10-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybamm-21.10-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e3d3f4522ab81df64919a2226d9b2b8130c4abbab21a7dfe3a80c627c765cac
MD5 438cf209beec64e41953d5d2d7c5a949
BLAKE2b-256 debd1d3767e5a8b39d5546727dec34b5d8714a78b45460286826504b1df32cd7

See more details on using hashes here.

File details

Details for the file pybamm-21.10-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pybamm-21.10-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4a58d21fde02b69820b43fa0683f44b7a0f564c61cefad6164f56955d2905634
MD5 a5d5993332b9a6aeafc64e9c4e751af5
BLAKE2b-256 98b54c12565473f53e6e74317c9f8cf3c464d205e16234b74ab12cab9434dab7

See more details on using hashes here.

File details

Details for the file pybamm-21.10-cp39-cp39-win32.whl.

File metadata

  • Download URL: pybamm-21.10-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f18751b7a7702abfc3ea40ab4fba783412b803139fa302ce13afd78f9108c6f5
MD5 5a8f81d4ca355c8ecc27784707decd9d
BLAKE2b-256 caea94021687ff2def9f0cf08d768aebc613e45949239d6f975aadf25d51edd6

See more details on using hashes here.

File details

Details for the file pybamm-21.10-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pybamm-21.10-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2183c6c77a3bf026150147309cd0a5002e36024374bd210ccf4121de470631de
MD5 772cc9465231f9ef1ed2f65748795557
BLAKE2b-256 5b1b2acf310d0e24f96cdb634160f9142b733030d153002bf1cc28ae715536f4

See more details on using hashes here.

File details

Details for the file pybamm-21.10-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: pybamm-21.10-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b7f5490fa90b80bc1ad373c08e73446d6578aff501d4147251db87f9d1796d25
MD5 99eed045391e483877bdd02eaec7057b
BLAKE2b-256 a4621ed73b995e58352759e59c1f783c00afaca7c9cab5e239badd77e1917f17

See more details on using hashes here.

File details

Details for the file pybamm-21.10-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybamm-21.10-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13ba51234b1704529a9f3badf0bf793ab185046d1e2297f09b73bd0fbd7cd290
MD5 d4c48f725231c1bf18ce9969796defab
BLAKE2b-256 564f62c0da05106f4a1bbfe001c881f0383b55445cb28dc828e40b235fe72d65

See more details on using hashes here.

File details

Details for the file pybamm-21.10-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pybamm-21.10-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e87d4f327048d355c485e34aeb5eb99e6176e1a3e2ca5ef52d69f71212dd5b74
MD5 24ab8ea26e6100120c39de9b98f1de7f
BLAKE2b-256 ce0ca4ccfdaf86b7b2d1c2659479e566876a166597456c06fcc201b6de88aa02

See more details on using hashes here.

File details

Details for the file pybamm-21.10-cp38-cp38-win32.whl.

File metadata

  • Download URL: pybamm-21.10-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 866e3526b7952443f90af5dc45f13edd64c91106ee9b84a7c57da779f81477d8
MD5 4903a2e1cda87923c9d699c8c3dbf681
BLAKE2b-256 0496ab1326ee1dbc3c53a6114e660edf418c2075d67b13f27f279c63a4b7e2c7

See more details on using hashes here.

File details

Details for the file pybamm-21.10-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pybamm-21.10-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 17f7c4fd40c130dddfe3afcf95bb491a539a24863c1d04b5bfb6eae2179e8077
MD5 17ad41c25d8cfd2b8bed51e1fd2080da
BLAKE2b-256 2c2ad210fd7ac87f0bc55483142ba0a3d5e92f010d86598a3851a8b5582b41a6

See more details on using hashes here.

File details

Details for the file pybamm-21.10-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: pybamm-21.10-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3c059fba42fa36b3bf27e4eb85bfa1620a195d61b30fed77b178e4b6251352c7
MD5 d3519a7353fe1020cd94544efbf072df
BLAKE2b-256 fb0bcc74284c5580f41c6b1d844c8a6303ead859eb286aead8b0fa09b3c1fffb

See more details on using hashes here.

File details

Details for the file pybamm-21.10-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybamm-21.10-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bb4bdd0be6ab8971f6182ebc806e06adc7cb8dc75d273fcfcf879bec89cd1072
MD5 ef1436fe126d75daff1d85591d795d0a
BLAKE2b-256 f8229ffeea4b2d639540c203d6a144498a5de9ff4cfad40ea6a97ad830379af8

See more details on using hashes here.

File details

Details for the file pybamm-21.10-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pybamm-21.10-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 06f89d482bc3429d8fd9e8833549c30e7add0e0f0a15900fa28018b9623151aa
MD5 a1c13002c787308c28f14050be388b57
BLAKE2b-256 e923eee1d4d66ac6b28181cd2bdaa3981c0fb4d76520896fa0ebb83e199c3d4b

See more details on using hashes here.

File details

Details for the file pybamm-21.10-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pybamm-21.10-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e142e2b5b177dda7fa39b686c29dec82b51103033096f6e7cd05f1b994c45dac
MD5 09bf02fd7ca43354e3efdc5fa398760f
BLAKE2b-256 e2f4fa948c8a2fb8a5c82327b8929661fc01d1c2a2d15ded3a7ecf3828a78d09

See more details on using hashes here.

File details

Details for the file pybamm-21.10-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pybamm-21.10-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f2fa01b72863d7824bc4f2512ccd49baa5ccbed8b934cdebfc630344b6de2811
MD5 80a293d4ff49dce4ac353f02173fbda3
BLAKE2b-256 d63a053d1287f24d0b6b4978c644743f6cba9cfe2897c2d37d5342cac4bdd02e

See more details on using hashes here.

File details

Details for the file pybamm-21.10-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: pybamm-21.10-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 543e6e6db6ab0692847c1755f93b90c92119d496921ff68263f6d2eb0eae7046
MD5 8bebe9c28e19e6554e8e1d74dd3d7ddf
BLAKE2b-256 d8711b4e07d5d873e4711e20f5cfa3d8e4655d89740a335f5c3120dd7241a133

See more details on using hashes here.

File details

Details for the file pybamm-21.10-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybamm-21.10-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for pybamm-21.10-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ec6f89414b2739f8b4cb858eb64a79a2218c6b3161611c9603270fa030a58d9
MD5 a8a8c0a9bcc74ad266a8a13cebb74401
BLAKE2b-256 72a4ffd2d40ba9c147eda851529822e139c9bc3d42c000cb212fa2d51ef2f439

See more details on using hashes here.

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