This package is a wrapper for the well-known Thevenin equivalent circuit model. The model is comprised of a single series reistor followed by any number of parallel RC pairs. Figure 1 below illustrates a circuit with 2 RC pairs; however, the model can be run with as few as zero, and as many as
Figure 1: 2RC Thevenin circuit.
This system is governed by the evolution of the state of charge (SOC, -), RC overpotentials (
where
where
where
The overall cell voltage is
where
thevenin
is installable via either pip or conda. To install from PyPI use the following command.
pip install thevenin
If you prefer using the conda
package manager, you can install thevenin
from the conda-forge
channel using the command below.
conda install -c conda-forge thevenin
If you run into issues with installation due to the scikit-sundae dependency, please submit an issue here. We also manage this solver package, but distribute it separately since it is not developed in pure Python.
For those interested in setting up a developer and/or editable version of this software please see the directions available in the "Development" section of our documentation.
The API is organized around three main classes that allow you to construct the model, define an experiment, and interact with the solution. A basic example for a constant-current discharge is given below. To learn more about the model and see more detailed examples check out the documentation on Read the Docs.
import thevenin as thev
model = thev.Model()
expr = thev.Experiment()
expr.add_step('current_A', 75., (3600., 1.), limits=('voltage_V', 3.))
soln = model.run(expr)
soln.plot('time_h', 'voltage_V')
Notes:
- If you are new to Python, check out Spyder IDE. Spyder is a powerful interactive development environment (IDE) that can make programming in Python more approachable to new users.
This work was authored by researchers at the National Renewable Energy Laboratory (NREL). If you use use this package in your work, please include the following citation:
Randall, Corey R. "thevenin: Equivalent circuit models in Python [SWR-24-132]." Computer software. url: https://github.com/NREL/thevenin. doi: https://doi.org/10.11578/dc.20241125.2.
For convenience, we also provide the following for your BibTex:
@misc{Randall-2024,
title = {{thevenin: Equivalent circuit models in Python [SWR-24-132]}},
author = {Randall, Corey R.},
doi = {10.11578/dc.20241125.2},
url = {https://github.com/NREL/thevenin},
year = {2024},
}
The motivation and funding for this project came from the Rapid Operational Validation Initiative (ROVI) sponsored by the Office of Electricity. The focus of ROVI is "to greatly reduce time required for emerging energy storage technologies to go from lab to market by developing new tools that will accelerate the testing and validation process needed to ensure commercial success." If interested, you can read more about ROVI here.
If you'd like to contribute to this package, please look through the existing issues. If the bug you've caught or the feature you'd like to add isn't already being worked on, please submit a new issue before getting started. You should also read through the developer guidelines.
This work was authored by the National Renewable Energy Laboratory (NREL), operated by Alliance for Sustainable Energy, LLC, for the U.S. Department of Energy (DOE). The views expressed in the repository do not necessarily represent the views of the DOE or the U.S. Government.