Skip to main content

OSS Python toolkit for TOYO battery cycler data (charge/discharge, dQ/dV, cycle stats). Installable from PyPI into Origin's embedded Python.

Project description

toyo-battery

OSS Python toolkit for TOYO battery cycler data.

Reads output from TOYO System battery charge/discharge testers, computes cycle capacity, Coulombic efficiency, dQ/dV curves, and summary statistics. Pure Python, installable from PyPI — including into OriginLab's embedded Python.

Status: pre-alpha (0.0.x). Public API is unstable and may change without deprecation until 0.1.0.

Installation

# Core library only (numpy, pandas, scipy)
pip install toyo-battery

# Pick one or more extras:
pip install "toyo-battery[plot]"    # Matplotlib plotting
pip install "toyo-battery[plotly]"  # Plotly + Kaleido (static image export)
pip install "toyo-battery[cli]"     # toyo-battery CLI (typer + rich)
pip install "toyo-battery[gui]"     # Tk desktop app (matplotlib)

# Everything non-Origin in one shot
pip install "toyo-battery[all]"

The [origin] extra has no runtime deps — the toyo_battery.origin submodule imports originpro lazily, so it only works inside Origin's embedded Python (see below).

Quick start

from toyo_battery import Cell

cell = Cell.from_dir("path/to/cell_dir")

cell.chdis_df.to_csv("chdis.csv")   # charge/discharge V-Q curves per cycle
cell.cap_df.to_csv("cycle.csv")     # per-cycle capacity + Coulombic efficiency
cell.dqdv_df.to_csv("dqdv.csv")     # dQ/dV per cycle

Cell.from_dir() auto-detects three TOYO layouts: 連続データ.csv (native export), 連続データ_py.csv (pre-normalized), or 6-digit raw files with a *.PTN pattern file. Mass is read from the PTN file unless you pass mass=... (grams).

CLI

Install with pip install "toyo-battery[cli]". All subcommands accept one or more cell directories plus the shared options --mass, --encoding, --column-lang.

# {name}_chdis.csv / {name}_cap.csv / {name}_dqdv.csv per cell
toyo-battery process cell_A cell_B --out ./csvs

# chdis / cycle / dqdv PNGs (one figure per kind, one Axes per cell)
toyo-battery plot cell_A cell_B --out ./pngs \
    --kinds chdis,cycle,dqdv --cycles 1,10,50

# Single stat_table CSV spanning all cells at the given target cycles
toyo-battery stats cell_A cell_B --cycles 10,50 --out stats.csv

GUI

Install with pip install "toyo-battery[gui]" and launch:

python -m toyo_battery.gui

Tk app for interactive directory selection, plot-kind toggles, per-axis ranges, and Savitzky–Golay window tuning for dQ/dV.

Plotting from Python

Matplotlib and Plotly backends expose the same three functions — pick by import path:

from toyo_battery import Cell
from toyo_battery.plotting.matplotlib_backend import plot_chdis, plot_cycle, plot_dqdv
# or: from toyo_battery.plotting.plotly_backend import plot_chdis, plot_cycle, plot_dqdv

cells = [Cell.from_dir(p) for p in ("cell_A", "cell_B")]
fig = plot_cycle(cells)
fig.savefig("cycle.png", dpi=150, bbox_inches="tight")  # matplotlib
# fig.write_image("cycle.png")                          # plotly

Installing into Origin's embedded Python

Open Origin, then in the Origin Python console:

import subprocess
import sys

subprocess.check_call(
    [sys.executable, "-m", "pip", "install", "toyo-battery[origin]"]
)

The [origin] extra pulls in matplotlib so the Tk GUI works out of the box; the three .otpu graph templates ship inside the wheel. After install, one line opens the directory picker and pushes results into the active Origin project:

from toyo_battery.origin import launch_gui
launch_gui()

For scripted use, toyo_battery.origin.push_to_origin(cells, ...) populates the current Origin project with per-cell worksheets, template graphs, and a stat sheet. It imports originpro lazily, so the submodule is importable outside Origin (push_to_origin itself raises there).

To run the same Tk GUI outside Origin (matplotlib Toplevel previews, no Origin write-back), install the [gui] extra and call from toyo_battery.gui import launch_gui; launch_gui() instead.

See docs/ORIGIN_SETUP.md for the full workflow.

License

MIT — see LICENSE.

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

toyo_battery-0.0.3.tar.gz (130.4 kB view details)

Uploaded Source

Built Distribution

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

toyo_battery-0.0.3-py3-none-any.whl (106.0 kB view details)

Uploaded Python 3

File details

Details for the file toyo_battery-0.0.3.tar.gz.

File metadata

  • Download URL: toyo_battery-0.0.3.tar.gz
  • Upload date:
  • Size: 130.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for toyo_battery-0.0.3.tar.gz
Algorithm Hash digest
SHA256 51e6b7b27efdbeb31a11422efd5a192805315c30bace4183c72e60b22abf1218
MD5 aa71fb66c7f9de4e179f6dc5fc81971c
BLAKE2b-256 be22f8f6b603b426cbd8a26b405e43880ade94de0eaffa3764b3d51b11cddd1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for toyo_battery-0.0.3.tar.gz:

Publisher: publish.yml on tomooki/toyo-battery

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file toyo_battery-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: toyo_battery-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 106.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for toyo_battery-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 5ce9d24c3fdd77fd46422b698ccd4be51b9dbfbb1734761bfa1c36cbaca847c8
MD5 9f5b7455fa0ce1cd733742a7fc9c407a
BLAKE2b-256 fa293482fd29ecc74b98c172a1ab23e8b59d99e9a143597ccc9b4f366cd559c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for toyo_battery-0.0.3-py3-none-any.whl:

Publisher: publish.yml on tomooki/toyo-battery

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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