Skip to main content

Python Battery Mathematical Modelling.

Project description

PyBaMM_logo

PyBaMM

Build readthedocs codecov Open In Colab black_code_style

All Contributors

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.

How do I use 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.

For further examples, see the list of repositories that use PyBaMM here

How can I install 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

pip install pybamm

Using conda

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

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. (2020). Python Battery Mathematical Modelling (PyBaMM). ECSarXiv. February, 7.

You can use the bibtex

@article{sulzer2020python,
  title={Python Battery Mathematical Modelling (PyBaMM)},
  author={Sulzer, Valentin and Marquis, Scott G and Timms, Robert and Robinson, Martin and Chapman, S Jon},
  journal={ECSarXiv. February},
  volume={7},
  year={2020}
}

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.

How can I contribute 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.

Licensing

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

๐Ÿค” ๐Ÿ”

Faraday Institution

๐Ÿ’ต

Alexander Bessman

๐Ÿ› ๐Ÿ’ก

dalbamont

๐Ÿ’ป

Anand Mohan Yadav

๐Ÿ“–

WEILONG AI

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

lonnbornj

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

Priyanshu Agarwal

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

DrSOKane

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

Saransh Chopra

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

David Straub

๐Ÿ› ๐Ÿ’ป

maurosgroi

๐Ÿค”

Amarjit Singh Gaba

๐Ÿ’ป

KennethNwanoro

๐Ÿ’ป โš ๏ธ

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

pybamm-0.4.0.post1-pp37-pypy37_pp73-win32.whl (1.1 MB view details)

Uploaded PyPyWindows x86

pybamm-0.4.0.post1-pp37-pypy37_pp73-manylinux2010_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

pybamm-0.4.0.post1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pybamm-0.4.0.post1-pp36-pypy36_pp73-win32.whl (1.1 MB view details)

Uploaded PyPyWindows x86

pybamm-0.4.0.post1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

pybamm-0.4.0.post1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pybamm-0.4.0.post1-cp39-cp39-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86-64

pybamm-0.4.0.post1-cp39-cp39-win32.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86

pybamm-0.4.0.post1-cp39-cp39-manylinux2010_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

pybamm-0.4.0.post1-cp39-cp39-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

pybamm-0.4.0.post1-cp39-cp39-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pybamm-0.4.0.post1-cp38-cp38-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86-64

pybamm-0.4.0.post1-cp38-cp38-win32.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86

pybamm-0.4.0.post1-cp38-cp38-manylinux2010_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

pybamm-0.4.0.post1-cp38-cp38-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

pybamm-0.4.0.post1-cp38-cp38-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pybamm-0.4.0.post1-cp37-cp37m-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.7mWindows x86-64

pybamm-0.4.0.post1-cp37-cp37m-win32.whl (1.1 MB view details)

Uploaded CPython 3.7mWindows x86

pybamm-0.4.0.post1-cp37-cp37m-manylinux2010_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

pybamm-0.4.0.post1-cp37-cp37m-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

pybamm-0.4.0.post1-cp37-cp37m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pybamm-0.4.0.post1-cp36-cp36m-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.6mWindows x86-64

pybamm-0.4.0.post1-cp36-cp36m-win32.whl (1.1 MB view details)

Uploaded CPython 3.6mWindows x86

pybamm-0.4.0.post1-cp36-cp36m-manylinux2010_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

pybamm-0.4.0.post1-cp36-cp36m-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

pybamm-0.4.0.post1-cp36-cp36m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file pybamm-0.4.0.post1-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 5ae69f56282f6c6f4e81ac0ba05866e40f6b5033456d028d512f5ca5410e05c7
MD5 0b518c79dbc17b848d6091e9d106b246
BLAKE2b-256 dfddfc585226e857df8f6a71d01e9b477b6a10535f31a6b990dfa54e506b7e36

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4469c928a5893ae2a3ceece3a50e0643067c5d5b464f9575758930952f3a163d
MD5 b26c4dce0143b260842155b40284cada
BLAKE2b-256 0261626964d8e744f6c2963a332e9dc0e3084f3562228fd47f4c7a4369f50005

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 51a902dcbb0b90dde4c655c52b7d81d19e9023d93760de5f344e5ccd64702676
MD5 4d4f3ebca49df7803f6980b489e85053
BLAKE2b-256 ebbcac7c2561997ed3ecc63d8ccba7abeda8b8696e22d0aee054e9dec4019efa

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 ea99b59aed28c8464c8f27629859afc51736aaab6e4eb5bcc65b8f655fb2dd72
MD5 5ddf7d3e2a8595f927bc425739da2bd6
BLAKE2b-256 f0b3c6e98630868f54da20ad7d11a70d391ebda4368c3581b6cb6c7eab5b0612

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1723d1522c0625988e05170d55d6bccf22dc5e3d542dcf8647ead1822cd3bdb2
MD5 860edff391066026b50cea418d3cbc5d
BLAKE2b-256 e59168b02fca865361aa2d5065955ef8206574ac4c679e2ed7b5af8d01ebd2af

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 094501c16b5241bff2e67cf7a49e2b055e25ad40eb3c6cf364a05d395578ea26
MD5 ba0afa7e2a6b982e3f7b391713a906e3
BLAKE2b-256 6b78d3edc0f29194af59eb71602e363844d58a844d1588dca63319e7474f902e

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1925ae13c9ad1424d086d0f5e9c1cc01113665d9541228b0f290cf4b69d9f9b9
MD5 7d9c67f242e2c099fa9c6db44ee7d0f4
BLAKE2b-256 e78ecf378bae5a074180f3f1da2170d3636a345c534fe808baea8c0b98664cea

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp39-cp39-win32.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 237d3794ba58b73c576087424be21c095de0245e1fa64b4c03995fbab38aafe6
MD5 90a118021346d01ee342c19475da45cd
BLAKE2b-256 386d53d1386d7effd7d3f5689863aef41b91d8c865d4e5c9a77004388f33f26f

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e2a570f19fd6a4ef4a6fe1bfa0b995e54b4697ce268a59eb8104e38b079e39c7
MD5 627fe0180694ae15ff2aa22040e27781
BLAKE2b-256 98e73e6ea17342f1914c09cf5b5342b5c60959099893139737918a71d0866da1

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 30225f250c14e6beba1200008cceb7da05a688a621e42b013af5ea6140840623
MD5 d8fd3eac7e74aacb9acda2fc1d4b5d1c
BLAKE2b-256 e5505ed4f59dec8d570fd6efb74a06cc377777a9ca2efa482e81946d28ee05d7

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bfed585c1c884a2bcb3a4df64790783c1b5b647c18913872f26abb4261e0cbbc
MD5 b022511940a71964591767006a6d5a15
BLAKE2b-256 6fdf8ca001db8562aae2f10604c667b89437bd95267676abed0768d6ae9cc3f6

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4c4fba879d2a5731423fabda02c691f30f81c99d1085e3583c57ef4c2ac6e37a
MD5 fe46e5a532b945e638010ece51413201
BLAKE2b-256 28e0b793f2ef29838b7d5f6733925f5cbf79ecbbb235fd8451ba835e1871c790

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp38-cp38-win32.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0fe97f231d47eb8ee25e089b247e061fe4bb2c7ce0b6c5578d7a51db5bbcfc28
MD5 a92dda640074dae46f4100711c65dd4f
BLAKE2b-256 bc2f166aa56e481e47fc2e0789b20962211715e34dc3d29db9e573becb950032

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 016fdc38ea5fc30cac8bee691fba16e6730e6a8047b4a7de8e2450c12a631a0b
MD5 93fc59804cc3ca3ced731c1d62368ae0
BLAKE2b-256 d2153863e426feeeca298d92c89849ec42a4dfb6c4325d3a367dae3b640aa3e6

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5aabdc05529911ec16063a7d96176d959d9e7701345c67259a4e5a31b6a8370b
MD5 746634d6ee2d632355e88961ed10d4f3
BLAKE2b-256 fef04a59a022889eb829bbd34e5c1262ad9dc4ca1f35e15b006c7bbea8c26c41

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4159b7f19a13b55ba0c3fb77bdcfa65736db1a4b388e0a42bc0760e51a1d6cf1
MD5 657558f97bcd7125e19a6b22a1779866
BLAKE2b-256 30cd496ca89ebc2139cd14e595e1291096c22774779a2980cc1e60d2da64d766

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4b87d459855ee7f4b94958a53dc769f0e710da2f4806d5d5867d27b71df655df
MD5 180dce2560d44b8e50d69a81e5ba745a
BLAKE2b-256 1ebb83f1b1ecb39ac571ef46f89e6773a9c9623ec1821a5c89cd56263cf81aff

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c253d912475122dd31f7fb12c13b31f29250b36d456d77b50e47b8613275a1fd
MD5 09a418f167bd21ed9ef68e16784a5a12
BLAKE2b-256 999e30f6fd72b02df3c044f065a28bc0e2aeb3db5ca5c7a37b9be9b89809f8aa

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e02a86edd77b44257ffee2af055dfb8f328755e008ee91e80a4cbdad663fb07c
MD5 5da241d2abd6523334ac60035ab46c1f
BLAKE2b-256 5d345bd13b7a56c032b719fd01ceabca887d22fbb896727418dc2b6d636750c9

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 014ad3bb08cf2909b1c46152b9e83887c0c3bc26c33433520591e38150b5a1a9
MD5 ddb4dd8121d609d85ddfb63acdef54ae
BLAKE2b-256 9a1550f46da260928d36b5003f00c1cc723a559e50a8815b5c51510679733bc9

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0db337784282c28229f86ee918c3b3fbe37036d8c2cd66c0414c86bff1f9ad24
MD5 2e30f301d71eced507984a0ab797270a
BLAKE2b-256 d8802c40b1de3be78e0f81fa6c9b418225d16c02a9260bad91e5c22ec07fdb47

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 db47f8cde86cd2e905ba1cef58a11603b6b99d8a515d97c108cea9798671289e
MD5 d43317a9f77b303d3c6fc3483d07dd9b
BLAKE2b-256 12619a5667d09d53451c5a22a5510f10da95ac10b7e9b08b065b76257a95490e

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8b9202f342b57b9153ad74a9ff0142910cec0e9c7447bbcf1d1ec65a0f00102c
MD5 d2add395f678893036e264d057c2f31c
BLAKE2b-256 d38cc278c9d201ce1310438d200ffcd053c9b8f4c29b29860f90b491804d2aa3

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 859c0098aed80be260b739251c6b529e5001160b7d759d03ca1f1c9b9ba5f134
MD5 6e92f07c73bc7c273df2f1b2b014e1d3
BLAKE2b-256 9f418f60aba6282218c35ee1d67c1ff40db281c0b8f99ea14ceeb27a0560f47c

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 579952fa2051e5693250f9dce39a56b9dbcd36e4b6f6839522655e6c5c0b2d7e
MD5 89f0babea025d75fffe434a422653057
BLAKE2b-256 d7dfe2e8293cb6dda389ca3849f930f1df497d997eb8a894fc3b85b8a52fbaad

See more details on using hashes here.

File details

Details for the file pybamm-0.4.0.post1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybamm-0.4.0.post1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for pybamm-0.4.0.post1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d097cb8c72a2e8026cb644cbe51ed6c0d28cf9789cc1bf14d8969fffa1ea16e4
MD5 bbe6c36869f3c9c44eccc8a3e72f7c5e
BLAKE2b-256 cd876f83a38c5007ef20cbfe6f041b9be1cd10f958b959c87ba0545ca7081116

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page