Skip to main content

Python Battery Mathematical Modelling

Project description

PyBaMM_logo

Powered by NumFOCUS Scheduled readthedocs codecov Open In Colab DOI release code style

All Contributors

PyBaMM

PyBaMM (Python Battery Mathematical Modelling) is an open-source battery simulation package written in Python. Our mission is to accelerate battery modelling research by providing open-source tools for multi-institutional, interdisciplinary collaboration. Broadly, PyBaMM consists of (i) a framework for writing and solving systems of differential equations, (ii) a library of battery models and parameters, and (iii) specialized tools for simulating battery-specific experiments and visualizing the results. Together, these enable flexible model definitions and fast battery simulations, allowing users to explore the effect of different battery designs and modeling assumptions under a variety of operating scenarios.

PyBaMM uses an open governance model and is fiscally sponsored by NumFOCUS. Consider making a tax-deductible donation to help the project pay for developer time, professional services, travel, workshops, and a variety of other needs.


๐Ÿ’ป 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 a constant-current discharge followed by a constant-current-constant-voltage charge:

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.

Versioning

PyBaMM makes releases every four months and we use CalVer, which means that the version number is YY.MM. The releases happen, approximately, at the end of January, May and September. There is no difference between releases that increment the year and releases that increment the month; in particular, releases that increment the month may introduce breaking changes. Breaking changes for each release are communicated via the CHANGELOG, and come with deprecation warnings or errors that are kept for at least one year (3 releases). If you find a breaking change that is not documented, or think it should be undone, please open an issue on GitHub.

๐Ÿš€ 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

Following GNU/Linux and macOS solvers are optionally available:

๐Ÿ“– 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
Valentin Sulzer

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

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

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

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

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

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

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

๐Ÿ› ๐Ÿ‘€ ๐Ÿ’ป ๐Ÿš‡
felipe-salinas
felipe-salinas

๐Ÿ’ป โš ๏ธ
suhaklee
suhaklee

๐Ÿ’ป โš ๏ธ
viviantran27
viviantran27

๐Ÿ’ป โš ๏ธ
gyouhoc
gyouhoc

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

๐Ÿ’ป โš ๏ธ
Jacqueline Edge
Jacqueline Edge

๐Ÿค” ๐Ÿ“‹ ๐Ÿ”
Fergus Cooper
Fergus Cooper

๐Ÿ’ป โš ๏ธ
jonchapman1
jonchapman1

๐Ÿค” ๐Ÿ”
Colin Please
Colin Please

๐Ÿค” ๐Ÿ”
cwmonroe
cwmonroe

๐Ÿค” ๐Ÿ”
Greg
Greg

๐Ÿค” ๐Ÿ”
Faraday Institution
Faraday Institution

๐Ÿ’ต
Alexander Bessman
Alexander Bessman

๐Ÿ› ๐Ÿ’ก
dalbamont
dalbamont

๐Ÿ’ป
Anand Mohan Yadav
Anand Mohan Yadav

๐Ÿ“–
WEILONG AI
WEILONG AI

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

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

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

๐Ÿ’ป ๐Ÿ’ก ๐Ÿ“– โš ๏ธ โœ… ๐Ÿ‘€
Saransh Chopra
Saransh Chopra

๐Ÿ’ป โš ๏ธ ๐Ÿ“– โœ… ๐Ÿ‘€ ๐Ÿšง
David Straub
David Straub

๐Ÿ› ๐Ÿ’ป
maurosgroi
maurosgroi

๐Ÿค”
Amarjit Singh Gaba
Amarjit Singh Gaba

๐Ÿ’ป
KennethNwanoro
KennethNwanoro

๐Ÿ’ป โš ๏ธ
Ali Hussain Umar Bhatti
Ali Hussain Umar Bhatti

๐Ÿ’ป โš ๏ธ
Leshinka Molel
Leshinka Molel

๐Ÿ’ป ๐Ÿค”
tobykirk
tobykirk

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

๐Ÿ› ๐Ÿ’ป
partben
partben

๐Ÿ“–
Gavin Wiggins
Gavin Wiggins

๐Ÿ› ๐Ÿ’ป
Dion Wilde
Dion Wilde

๐Ÿ› ๐Ÿ’ป
Elias Hohl
Elias Hohl

๐Ÿ’ป
KAschad
KAschad

๐Ÿ›
Vaibhav-Chopra-GT
Vaibhav-Chopra-GT

๐Ÿ’ป
bardsleypt
bardsleypt

๐Ÿ› ๐Ÿ’ป
ndrewwang
ndrewwang

๐Ÿ› ๐Ÿ’ป
MichaPhilipp
MichaPhilipp

๐Ÿ›
Alec Bills
Alec Bills

๐Ÿ’ป
Agriya Khetarpal
Agriya Khetarpal

๐Ÿš‡ ๐Ÿ’ป ๐Ÿ“– ๐Ÿ‘€
Alex Wadell
Alex Wadell

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

๐Ÿ“– ๐Ÿ› ๐Ÿ’ป
Ankit Kumar
Ankit Kumar

๐Ÿ’ป
Aniket Singh Rawat
Aniket Singh Rawat

๐Ÿ’ป ๐Ÿ“–
Jerom Palimattom Tom
Jerom Palimattom Tom

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

๐Ÿ’ก
jsbrittain
jsbrittain

๐Ÿ’ป โš ๏ธ
Arjun
Arjun

๐Ÿš‡ ๐Ÿ’ป ๐Ÿ“– ๐Ÿ‘€
CHEN ZHAO
CHEN ZHAO

๐Ÿ›
darryl-ad
darryl-ad

๐Ÿ’ป ๐Ÿ› ๐Ÿค”
julian-evers
julian-evers

๐Ÿ’ป
Jason Siegel
Jason Siegel

๐Ÿ’ป ๐Ÿค”
Tom Maull
Tom Maull

๐Ÿ’ป โš ๏ธ
ejfdickinson
ejfdickinson

๐Ÿค” ๐Ÿ›
bobonice
bobonice

๐Ÿ› ๐Ÿ’ป
Eric G. Kratz
Eric G. Kratz

๐Ÿ“– ๐Ÿš‡ ๐Ÿ› ๐Ÿ’ป โš ๏ธ
Andrรฉs Ignacio Torres
Andrรฉs Ignacio Torres

๐Ÿš‡
Agnik Bakshi
Agnik Bakshi

๐Ÿ“–
RuiheLi
RuiheLi

๐Ÿ’ป โš ๏ธ
chmabaur
chmabaur

๐Ÿ› ๐Ÿ’ป
Abhishek Chaudhari
Abhishek Chaudhari

๐Ÿ“– ๐Ÿ’ป
Shubham Bhardwaj
Shubham Bhardwaj

๐Ÿš‡
Jonathan Lauber
Jonathan Lauber

๐Ÿš‡
Pradyot Ranjan
Pradyot Ranjan

๐Ÿš‡
XuboGU
XuboGU

๐Ÿ’ป ๐Ÿ›
Ankit Meda
Ankit Meda

๐Ÿ’ป

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 Distribution

pybamm-24.1rc1.tar.gz (6.8 MB view details)

Uploaded Source

Built Distributions

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

pybamm-24.1rc1-cp312-cp312-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.12Windows x86-64

pybamm-24.1rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pybamm-24.1rc1-cp312-cp312-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

pybamm-24.1rc1-cp311-cp311-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.11Windows x86-64

pybamm-24.1rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pybamm-24.1rc1-cp311-cp311-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pybamm-24.1rc1-cp310-cp310-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.10Windows x86-64

pybamm-24.1rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pybamm-24.1rc1-cp310-cp310-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pybamm-24.1rc1-cp39-cp39-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.9Windows x86-64

pybamm-24.1rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pybamm-24.1rc1-cp39-cp39-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pybamm-24.1rc1-cp38-cp38-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.8Windows x86-64

pybamm-24.1rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pybamm-24.1rc1-cp38-cp38-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file pybamm-24.1rc1.tar.gz.

File metadata

  • Download URL: pybamm-24.1rc1.tar.gz
  • Upload date:
  • Size: 6.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pybamm-24.1rc1.tar.gz
Algorithm Hash digest
SHA256 803416b17f078c3ed6ecf4586f71a321a7ecd4d9f70ad07558e267bbc6a284f4
MD5 a762a28f6dd03b274b45a905095bf627
BLAKE2b-256 924022aa25f0ace0260b9beeef43d479e2d15146553bba680558e311bd959356

See more details on using hashes here.

File details

Details for the file pybamm-24.1rc1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pybamm-24.1rc1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pybamm-24.1rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fad6d94316829c257af80c2fe67be706b6229446b87cb1126bcdddc72c24ce6e
MD5 9fd0c9c98da11ce70bf04a3415139af9
BLAKE2b-256 01ab38c2df74611a6e6d0bdddb9c38dc8a33acd13e641f0c438942c7d64dced0

See more details on using hashes here.

File details

Details for the file pybamm-24.1rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybamm-24.1rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18d8a094d46a471a378c9280913a0848b94577fa01b134a28aeac8c6a2fb5319
MD5 c81b8525d2bc875f570d6ba930b1cd92
BLAKE2b-256 297b75a2af772303c9294b3a4d4827a1f24d6e3f3d861f27bef358085b848e82

See more details on using hashes here.

File details

Details for the file pybamm-24.1rc1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybamm-24.1rc1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5bbce13c5215b84684583339858d86f6c21e9abe7f8d7be7568d368ca5235e30
MD5 b432d2940d08fabbec67c897dda77f3e
BLAKE2b-256 facdcb1b0662d209684b006e898533ae7a374cfab58bbed162d68aca74ff3d9d

See more details on using hashes here.

File details

Details for the file pybamm-24.1rc1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pybamm-24.1rc1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pybamm-24.1rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4ed97069b7b1b60c6683f8ffcadac9ba50a02e149bb06b59e08be16fce8c7c50
MD5 2679f36f13e32fee4289c0fa2bd4defc
BLAKE2b-256 6e99f2d175b3fcf8baf0ac33a66e99d05330a474926b587b950b6c92d08cca33

See more details on using hashes here.

File details

Details for the file pybamm-24.1rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybamm-24.1rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd229975e4ff0b16a19d9be1066792ee381a930e44da1d654a8208982f444af9
MD5 28f1eed26a4c4c790d278f5819ce39af
BLAKE2b-256 0320ab43fae8e7116fa9691e48da264798dab0bf9cd0558666c43e41803af736

See more details on using hashes here.

File details

Details for the file pybamm-24.1rc1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybamm-24.1rc1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0bfacff0179509acfaea521b199c6c55b2c0bbeb85ea79c4748eebf84715ab0e
MD5 7a098325f555e59f53bb8fab7e09ebb7
BLAKE2b-256 c0e732d288a5e6aeb38122bd6c29783467fb42671d0777dfab3503e4cb4a0187

See more details on using hashes here.

File details

Details for the file pybamm-24.1rc1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pybamm-24.1rc1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pybamm-24.1rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4e74bd6a4d1f671cdf27be51ed4bf53d68186baf38efc109488bf1dc86541f87
MD5 2262f108c4f1c73e2026e4932773a9bf
BLAKE2b-256 cca50673d048d24bca4f80f25aac1a9c80cdd16aa12b72f385ed378e306f9ce4

See more details on using hashes here.

File details

Details for the file pybamm-24.1rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybamm-24.1rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7681dccdc3c51f4d17d6f7dfa745ee48eea804c19638ac2874366b67c59b9be
MD5 838e90a97c43ac6a1933b941dee13221
BLAKE2b-256 85b74943ad106e62e104ded0b0ab5b8b5522b3503546240e88e744b32e947176

See more details on using hashes here.

File details

Details for the file pybamm-24.1rc1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybamm-24.1rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 074c3562afae507ab62ae5c97075182eb1fa352ca1268e49d990e179989ceaa7
MD5 daf9d39b8fb20b1bba26e990d759e0db
BLAKE2b-256 ddef34c7f314ae3b76983b4adaf7caa1cf0738821345e723fa58e8c6d2a4d98a

See more details on using hashes here.

File details

Details for the file pybamm-24.1rc1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pybamm-24.1rc1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pybamm-24.1rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 10197e4d43745321f231ebb49e24889d1514edf45280a0eb5e510852c62ab772
MD5 0e2437e11251f3efd6ef50bac47f9f46
BLAKE2b-256 9d5749c7771b3fedef3aac1b385b61f01d9420aaf1bf4b2349402d9ad991c446

See more details on using hashes here.

File details

Details for the file pybamm-24.1rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybamm-24.1rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97fa2e01e7fcaed13fd815bd4a8264e6585e6c59373dfdb616cc1c4cf46db304
MD5 7790a5319a807d01d66cdbb1ff402a0e
BLAKE2b-256 0d7227f7149e64ef2d27f05cd4319d8baf8d9da48e97a6afe93a29cc00d43c85

See more details on using hashes here.

File details

Details for the file pybamm-24.1rc1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybamm-24.1rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a80748aadec603e962ea2fe9902ae434f9385ed383f03f4b98f87a5cb9292586
MD5 5922be93af0945169b62ff1fbae06adb
BLAKE2b-256 4304d026b0277944ebe024e7e2d646f5baa0f9221c76e37ad64a9fea0c4b3f1f

See more details on using hashes here.

File details

Details for the file pybamm-24.1rc1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pybamm-24.1rc1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pybamm-24.1rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 26d78a3fbacf2d706cb0a4f1b2cb40e9a86e4ae6555cdcb45506f48acdecbf9d
MD5 17e6b25fb2ed6026e59c54bfb4f57750
BLAKE2b-256 a801d99ac3ea395e05dbaf5a682cf0b4134d2cc9a9506962d3313bd565a6f6f0

See more details on using hashes here.

File details

Details for the file pybamm-24.1rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybamm-24.1rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4ec38b72f4911b5c2b71f407fe17634ab4189c74c2194679ff855821ae200ad
MD5 908757c566f211278bff6ac945d3fa97
BLAKE2b-256 162917047e195b6dcd0038a944471799a376bf235030f11497c3cbcbbab9a0cb

See more details on using hashes here.

File details

Details for the file pybamm-24.1rc1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybamm-24.1rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b690cc3b017d1ab8db75dc4a87e675828e4e0526f58b12a73a0ef48fe4947c4
MD5 f03e64e574b1297d8c27d17431b53fc5
BLAKE2b-256 eb5258a0356d399f8682c5e1bfa868ce0b8ccc71ea16df6e8f897f631d44c70a

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