revisit-severson-et-al icon indicating copy to clipboard operation
revisit-severson-et-al copied to clipboard

Inconsistency found

Open myalos opened this issue 1 year ago • 0 comments

Thanks for sharing the great work! I found two inconsistency

First one

image

image

Second one

using script BuildPkl_Batch1.ipynb to load mat file and plot discharge_capacity-time curve

channel = 18 #b1c18
print(f[batch['policy_readable'][channel,0]][:].tobytes()[::2].decode()) # 5.4C(70%)-3C
print(f[batch['cycle_life'][channel,0]][:]) # 691
cycles = f[batch['cycles'][channel,0]]
Qd = np.hstack((f[cycles['Qd'][9,0]][:]))
t = np.hstack((f[cycles['t'][9,0]][:]))
plt.plot(t, Qd)

image this is weird.

plt.plot(range(len(Qd)), Qd) # change 't' to 'range(len(Qd))'

then the figure looks like this image

np.sort(Qd) may make the figure look more normal, but the horizontal line remains which is weird.

It seems there are something wrong in the program about data conversion from csv to mat.

myalos avatar Jul 24 '23 06:07 myalos