revisit-severson-et-al
revisit-severson-et-al copied to clipboard
Inconsistency found
Thanks for sharing the great work! I found two inconsistency
First one
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)
this is weird.
plt.plot(range(len(Qd)), Qd) # change 't' to 'range(len(Qd))'
then the figure looks like this
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.