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.1rc0.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.1rc0-cp312-cp312-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.12Windows x86-64

pybamm-24.1rc0-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.1rc0-cp312-cp312-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

pybamm-24.1rc0-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.1rc0-cp311-cp311-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pybamm-24.1rc0-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.1rc0-cp310-cp310-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

pybamm-24.1rc0-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.1rc0-cp39-cp39-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

pybamm-24.1rc0-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.1rc0-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.1rc0.tar.gz.

File metadata

  • Download URL: pybamm-24.1rc0.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.1rc0.tar.gz
Algorithm Hash digest
SHA256 17475a5e5aa0c8527eb3b539db58e54d6f6a532b61984f30a538cf58ac39f30c
MD5 ead2523b3f0c69f2e389956cc259e536
BLAKE2b-256 4909fcb5c13f72b3874109572da1f02fe2da1245f6aae708409dea75359583f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybamm-24.1rc0-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.1rc0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d055166164f93665e076d7f6225277e42d6e420d442a650b316b1dbe129a5cbb
MD5 bd0596c9b36391c1b2dca832500b1502
BLAKE2b-256 c07dc79d85d0e184bdc3bbbce5d66f9544ba7f957344c423079f2e7e84bd1e54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybamm-24.1rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76c4f88f4f1068e91d48602fbee476ed9e6737bc7a32b8e448bf7cc44c8bd157
MD5 05c1838d396cb34b9620fd46df666eb7
BLAKE2b-256 2c11025bfb59e4819e1b3c42b5aa6bec4ffe0f6f1c492e35968c3877f7a3cac6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybamm-24.1rc0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7607c65e22d8089ab28ecc2ce604facd7acea4ee856f68f377f3e913f45d8df
MD5 dad320607d732165895247c8bc4fb7b0
BLAKE2b-256 e0cb1d57ba853a2a8175f61c8f86a079e1527b62c44ad12bf8105275f1776d73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybamm-24.1rc0-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.1rc0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cac41b5700da31045813382ef19bad78eb813303f605d49fd44a0ee9b261aa12
MD5 1c0d0e19cf1f0dee01e98d1eb76ff3a0
BLAKE2b-256 fe8a7c9d52a5c2bcfb988e8336c09fa829da2dae7341b246918e6e02522a7921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybamm-24.1rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9673641135900b0828e158d07c7fd875e95210e8b827b108295e16d22f08aa7f
MD5 cc51c33b36c8911cc416ceb1a085eafe
BLAKE2b-256 49a267a39cec939076ec1c659622618e25cff065212186cd83795346822dd4e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybamm-24.1rc0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c21cc409f8ecd73f2c05f01cba2a52e93ed9a61fc5524ba0cdab86a4fa1f608
MD5 e7dbbb9fcb9b03c60b52cd0e6faa3515
BLAKE2b-256 3b5cda7192a15ec5bb3689a2b368d62a6c43d3678d437131994a43f0d8256f52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybamm-24.1rc0-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.1rc0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 036a215817a087bda8fdaf78cfa3243b26cd558814c8f938565a9dd76e9a2865
MD5 9d1da83db0844b72115c88ff931d1277
BLAKE2b-256 4f2328b5b38e21a1339ec525db02c068673db92633259c412af3e7051e3922b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybamm-24.1rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 195474199467162b1dbb7a85c71fc03fef1fdf84234bd2bf020526e7bd00519f
MD5 b7ada28616264542400659d95917e3a4
BLAKE2b-256 ff5b123a6e64b5fe10acb384552499663f2d5efae5a9759b8188dfb9852af1e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybamm-24.1rc0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b82bb61fc388b4a1bde140f150c79727a79c62295b3225847d4e6817795ea3e9
MD5 0e877e3d614d1a078678676d786c749b
BLAKE2b-256 033f831014adc5437348e3432c830f2b0f76e6c760639411a1e9097e55953b6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybamm-24.1rc0-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.1rc0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3b10feaeca082c11299ecc05cc1d4415257582df9a466c5861cc3c0041cbf00b
MD5 8b44307e061238cdd347a592813ca102
BLAKE2b-256 534c44922e391a5329d3c5270a3957e3c52afe122e2dc3e77c0717eab64c34dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybamm-24.1rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1bf5c663ba1fbfbc08930344c5e8f56d1002660f89b99131e37feef44a56a50
MD5 1fa117049f090c1dd7c259c19285c7f4
BLAKE2b-256 1311f5e69ceee5b193dc658bf7c6139b848209f9c173a4d44d9dc9be6fadb1e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybamm-24.1rc0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f1ac6d28d901294048fe4c0d502223040d5e8589f38965ff038981e26de1f5a
MD5 b0a651671c4efc5c94907d9ed7fe10cf
BLAKE2b-256 24a5ed490e65fffed3ca69447743223804a376dd3e4866c4ddc4c8c12cacd2fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybamm-24.1rc0-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.1rc0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ad3861dbfaad585a541b51bd236f51e51f7467f20afe9138926968cba70b6764
MD5 7f32e01f02fda24717a72d6e2e0ecb04
BLAKE2b-256 16ecf4fdfecab86c568ebb135a090c10e047f570e101ffeee7ba687fdf9894e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybamm-24.1rc0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5db461d292f7d9bdd5cf44ef30d2205c4b495e9b72d873f415942f6897a8904
MD5 bb7fb802f330db9e86847cb876bb17b7
BLAKE2b-256 5c3b8c3ffc6ff281508fb1fae87b0dcd70a025f9e9358021d3a2e4bae243f10c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pybamm-24.1rc0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f81e7fcdd1ad0ad380080582a507f97fa66a0a1ba128173f61d0a9a6ca04b415
MD5 aaa24bf5a80b0336c315ffa2ef673564
BLAKE2b-256 907b703d82eee36ec963f80e3957efe789dfaf42dc1c8457daa5188ed68ce8eb

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