Solid-Energy-Systems / NewareNDA

Python module and command line tool for reading and converting Neware nda and ndax battery cycling data files.
BSD 3-Clause "New" or "Revised" License
17 stars 10 forks source link

Is it possible to export "cycle" data only #37

Closed nevergow closed 1 year ago

nevergow commented 1 year ago

When transfer ndax data into excel, there will be several sheets, like "record", "cycle" and so on. So, is it possible to extract "cycle" data, in which only contain data of capacity, energy, start time, end time and any other data ,just like in excel from ndax file by this script?

d-cogswell commented 1 year ago

Hi @nevergow, the data on those extra Excel tabs is not stored in the ndax file itself. Instead it's calculated from the raw data during the export process. The goal of this code is just to extract that data. If you need cycle summary statistics, it's not too hard to generate them yourself using pandas.DataFrame.groupby. Hope that helps!

nevergow commented 1 year ago

oh, I see, thank you!