Skip to main content

A Python library for interating with the Breathe Design api and analyzing and visualizing Breathe Design data

Project description

Breathe Design

A python based api wrapper for running the breathe design model.

Installation steps

  • Open your terminal or command prompt.

  • Navigate to the directory or create new one where you want to setup.

  • Run the following command to clone our GitHub repository.

    git clone https://github.com/BreatheBatteries/breathe_design.git .
    

To set up everything in one go, just run .\setupEnvironment.ps1

Alternatively, run following command to create the virtual environment:

python -m venv myvenv

Replace myvenv with the desired name for your virtual environment.

  • Activate the virtual environment:

    • On Windows:
      myvenv\Scripts\activate
      
    • On macOS/Linux:
      source myvenv/bin/activate
      

    After activating the virtual environment, you'll see (myenv) in your terminal prompt to indicate that the environment is active.

  • Install the breathe_design package in the virtual environment:

    pip install breathe_design
    

Running the models

The app requires a connection to our server for which you must log in to receive an api key. Once logged in you can fetch the batteies in your library.

from breathe_design import api_interface as api
batteries = api.get_batteries()
print(batteries)

Access the base parameters for your battery

base_params = api.get_design_parameters("Molicel P45B")
print(base_params)

See the equilibrium KPIs and there sensitivities to changes in the base parameters

eqm_kpis, fig = api.get_eqm_kpis("Molicel P45B")
print(eqm_kpis)
fig.show()

Add any number of new designs

designs = [
    {
      "designName": "Lower NP",
      "NPratio": base_params["NPratio"]*0.95
    },
    {
      "designName": "Higher Vmax",
      "Vmax_V": base_params["Vmax_V"]+0.05
    },
    {
      "designName": "Thicker Cathode",
      "cathodeThickness_um": base_params["cathodeThickness_um"]*1.05
    },
    {
      "designName": "Less Porous Anode",
      "anodePorosity": base_params["anodePorosity"]*0.95
    },
    {
      "designName": "Thinner Separator",
      "separatorThickness_um": base_params["separatorThickness_um"]*0.95
    },
  ]

Recompute the KPIs

eqm_kpis, fig = api.get_eqm_kpis("Molicel P45B", designs)
print(eqm_kpis)

Plot the KPIs for all designs relative or delta with the baseline

from breathe_design import plot_kpis
plot_kpis(eqm_kpis, "relative")
plot_kpis(eqm_kpis, "delta")

Perform dynamic analysis for your designs

from breathe_design import Cycler
from breathe_design import plot_dynamic_kpis
from breathe_design import extract_dynamic_kpis

baseline_capacity = eqm_kpis.loc["Capacity [Ah]", "Baseline"]
cycler = Cycler(selected_unit="C", cell_capacity=baseline_capacity)
cycler_input = cycler.cccv(1.0, -1.0, 0.01, 4.2, 2.6, 60.0, 60.0)
output = api.run_sim(
    base_battery="Molicel P45B",
    cycler=cycler.cccv(1.0, -1.0, 0.01, 4.2, 2.6, 60.0, 60.0),
    designs=designs,
    initialSoC=0.5,
    initialTemperature_degC=21.0,
    ambientTemperature_degC=21.0
    )
plot_dynamic_kpis(output["dynamicData"])

Let's now try changing the form factor

base_format = api.get_battery_format("Molicel P45B")
smaller_format = base_format.copy()
smaller_format["name"] = "Smaller Format"
smaller_format["height_mm"] = 0.9 * base_format["height_mm"]
thinner_format = base_format.copy()
thinner_format["name"] = "Thinner Format"
thinner_format["diameter_mm"] = 0.9 * base_format["diameter_mm"]
formats = [smaller_format, thinner_format]
eqm_kpis, fig = api.get_eqm_kpis("Molicel P45B", designs=[], formats=formats)
eqm_kpis

Examples

Check out the python notebooks in docs/examples for how to use the api.

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

breathe_design-1.0.2.tar.gz (9.6 MB view details)

Uploaded Source

Built Distribution

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

breathe_design-1.0.2-py3-none-any.whl (29.5 kB view details)

Uploaded Python 3

File details

Details for the file breathe_design-1.0.2.tar.gz.

File metadata

  • Download URL: breathe_design-1.0.2.tar.gz
  • Upload date:
  • Size: 9.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for breathe_design-1.0.2.tar.gz
Algorithm Hash digest
SHA256 85f497de89ce0801b1ee11edadcf296a43544c5ba9de028650ce1c6bed1fc443
MD5 7864490ad74c772d7784e84381319f9d
BLAKE2b-256 133a8c0ba35dfb0d2292238b81837aac2cc596762f13e81d6fc1450ebec50795

See more details on using hashes here.

File details

Details for the file breathe_design-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: breathe_design-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 29.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for breathe_design-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 7cdfd92edcc5f07070652c5498ce9737dd19eab9d4931ad911207f5d3031a1b6
MD5 d319a96934a16ab0d181ceef5beeeef6
BLAKE2b-256 c1f6cd10d947df63d5031bdae22b1a4d8b42c20bfc604298ea7a86986ce6fe98

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