Hi,
I used the code in an example to plot keff, where the curve above is correct and I want, but why does the curve below appear? The code is as following.
results = openmc.deplete.ResultsList.from_hdf5(“./depletion_results.h5”)
time, k = results.get_eigenvalue()
days = 246060
plt.plot(time/days, k, label=“K-effective”)
plt.xlabel(“Time (days)”)
plt.ylabel(“Keff”)
plt.legend()
plt.show()
And the picture I get
