Issue number 127

Get Temperature Data from .res Arbin

By: JohnBolander

How can you parse the temperature data from the .res Arbin file? It does not seem that that data is contained in the output

Possible solution 1


In [ ]:
from pathlib import Path
import os

from cellpy import cellreader

In [ ]:
fdir = Path("../../testdata/data")
fname = fdir / "20160805_test001_45_cc_01.res"
fname.is_file()

In [ ]:
cell = cellreader.CellpyData()
cell.from_raw(fname, mass=1.0)
data = cell.dataset.raw

In [ ]:
print(data.columns)
  • Need file with example of temperature data

In [ ]: