Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/batterysim/equiv-circ-model
An equivalent circuit model (ECM) for a battery cell, module, and pack
https://github.com/batterysim/equiv-circ-model
battery battery-cell electric-vehicles equivalent-circuit-model
Last synced: 3 months ago
JSON representation
An equivalent circuit model (ECM) for a battery cell, module, and pack
- Host: GitHub
- URL: https://github.com/batterysim/equiv-circ-model
- Owner: batterysim
- License: mit
- Created: 2019-05-04T19:02:30.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-08-03T03:48:28.000Z (over 1 year ago)
- Last Synced: 2024-05-15T12:22:05.614Z (6 months ago)
- Topics: battery, battery-cell, electric-vehicles, equivalent-circuit-model
- Language: Python
- Homepage:
- Size: 12.5 MB
- Stars: 84
- Watchers: 9
- Forks: 33
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- open-sustainable-technology - equiv-circ-model - An equivalent circuit model for a battery cell, module, and pack. (Energy Storage / Battery)
README
# Equivalent circuit model
This repository contains Python code for running an equivalent circuit model (ECM) developed for a 2013 Nissan Leaf battery cell and module. The `ecm` package contains source code for the equivalent circuit model while the `examples` folder provides scripts for running the ECM for a battery cell, module, and pack. Model parameters are determined from hybrid pulse power characterization (HPPC) and discharge tests conducted at ORNL. The battery cell and module specifications were provided by NREL.
## Installation
The [Anaconda](https://www.anaconda.com) or [Miniconda](https://conda.io/miniconda.html) distribution of Python 3 is recommended for this project. The `ecm` package requires Matplotlib, NumPy, Pandas, and SciPy.
The simplest way to install the ECM package is with pip. This can be done from within the equiv-circ-model directory:
```bash
# Install the ecm package
pip install -e .
```A requirements file is provided for running the ECM in a virtual environment using pip:
```bash
# Create a new virtual environment
python -m venv env# Activate the environment
source env/bin/activate# Install packages needed for the ECM
pip install -r requirements.txt# From within equiv-circ-model directory, install the ecm package
pip install -e .# Deactivate the environment
deactivate# Remove the environment by deleting the `env` folder
```An environment yaml file is also provided for running the ECM in a conda environment:
```bash
# Create a new conda environment and install packages needed for the ECM
conda env create -f environment.yml# Activate the environment
conda activate ecm# From within equiv-circ-model directory, install the ecm package
pip install -e .# Deactivate the environment
conda deactivate# Remove the environment and its installed packages
conda env remove -n ecm
```## Usage
Examples of using the `ecm` package are provided in the `examples` folder. Examples are organized into subfolders for battery cell and battery module models. From within the subfolder, each script can be run from the command line such as:
```bash
# View plots of the battery cell HPPC data
cd ~/equiv-circ-model/examples/cell
python view_hppc_data.py# Run the ECM for a battery cell and compare to HPPC battery cell data
cd ~/equiv-circ-model/examples/cell
python hppc_vt.py
```## Project structure
**ecm** - Python package containing source code for the equivalent circuit model (ECM).
**examples/cell** - Example scripts for running the battery cell ECM.
**examples/cell-to-module** - Examples of using a cell model to predict a battery module.
**examples/cell-to-pack** - Examples of using a cell model to predict a battery pack.
**examples/data** - Data files from 2013 Nissan Leaf battery cell and module tests. This data is used for developing and validating the ECM.
**examples/module** - Example scripts for running a battery module ECM.
**examples/module-to-pack** - Examples of using a module model to predict a battery pack.
## Contributing
Comments, suggestions, and other feedback can be submitted on the [Issues](https://github.com/batterysim/equiv-circ-model/issues) page.
## License
This code is available under the MIT License - see the [LICENSE](LICENSE) file for more information.