when i process a file using the MPR -> MPT function in the BT-Lab software, i get these columns:
mode ox/red error control changes Ns changes counter inc. Ns I Range time/s control/V/mA Ecell/V I/mA dq/mA.h (Q-Qo)/mA.h |Energy|/W.h freq/Hz |Z|/Ohm Phase(Z)/deg Q charge/discharge/mA.h half cycle Temperature/ C z cycle Energy charge/W.h Energy discharge/W.h Capacitance charge/ F Capacitance discharge/ F step time/s Re(Z)/Ohm -Im(Z)/Ohm Re(Y)/Ohm-1 Im(Y)/Ohm-1 |Y|/Ohm-1 Phase(Y)/deg x Q discharge/mA.h Q charge/mA.h Capacity/mA.h Efficiency/% control/V control/mA cycle number P/W R/Ohm
however when i use the galvani MPRfile.data in the following code
mpr_data = BioLogic.MPRfile(filepath)
df = pd.DataFrame(mpr_data.data).columns
print(df)
the output is:
'flags', 'Ns', 'I Range', 'time/s', 'control/V/mA', 'Ewe/V', 'I/mA',
'dq/mA.h', '(Q-Qo)/mA.h', '|Energy|/W.h', 'freq/Hz', '|Z|/Ohm',
'Phase(Z)/deg', 'Q charge/discharge/mA.h', 'half cycle',
'Temperature/°C', 'z cycle'
i just wanted to know if i was doing something wrong ? or is it just a slight difference between the BT-Lab, EC-Lab versions ?
i can generate most of the columns i need from the data but i just wondered if i didn't need to ?