NahuelCostaCortez / ICFormer

4 stars 1 forks source link

ICFormer

ICFormer is a novel Deep Learning model based on a Transformer encoder that leverages self-attention on the evolution of incremental capacity (IC) curves to accurately identify relevant changes in LIB degradation trajectories. It does not only detects knees, but also anticipates them while also outperforming state-of-the-art approaches in diagnosing degradation modes, making it a powerful tool for predicting battery health. ICFormer can provide valuable knowledge on the factors contributing to capacity loss and offer advanced insights for battery management and predictive maintenance strategies.

You can check our paper here.

[!WARNING] The code related to the model will no longer be mantained here but in the rapidae library.

Files in this Repository

The data used in this study is available for download:

Diagnosis dataset

Prognosis dataset

Once you download the files:

% iterate over duty_cycles for duty_cycle = 1:length(key) duty_data_info = zeros([4,length(cycles)]); % iterate over cycles for index_cycle = 1:length(cycles) try % get the index of the diagnosis dataset that corresponds to this cycle voltage_index = Vi(duty_cycle,find(cyc==cycles(index_cycle))); % store the degradation modes duty_data_info(:,index_cycle) = pathinfo(voltage_index,:); end end path_prognosis(:,:,duty_cycle) = duty_data_info; end