This framework aims to enable the application of Deep Learning algorithms to battery degradation diagnosis by presenting a new way of representing cell degradation data. Particularly, the representation consists of an image highlighting the differences between the EVS curves of a pristine and aged battery with a DTW approach. The method is explored using a synthetic dataset to train a Convolutional Neural Network (CNN) that predicts the battery health state based on its degradation mechanisms.
The paper associated to this framework is published in Journal of Power Sources and is publicly available at https://www.sciencedirect.com/science/article/pii/S2352152X22015493.
You can also find a Gradio demo of the model in https://huggingface.co/spaces/NahuelCosta/DTW-CNN
The training data used in this study is available for download.
The testing data can be found in \mat folder.
You can convert it to a python format with the save_data function in utils.py.
To execute the python code, it is recommended setting up a new python environment with packages matching the requirements.txt file. It can be easily done with anaconda: conda create --name --file requirements.txt. Another alternative is to run exactly the same environment under which this project was made. A Dockerfile is provided, which contains the set of instructions for creating a container with all the necessary packages and dependencies. The fastest way to set it up is to clone the reposity, open Visual Studio Code, and from the command palette select "Remote-containers: Open folder in Container".