3 import matplotlib.pyplot
as plt
6 fig = plt.figure(figsize=(5,3))
14 labels=[
"Panov et al. 2001",
"Kodama & Takahashi 1975",
"Mumpower et al. 2020"]
17 for ind,r
in enumerate(runs):
18 path = r+
"/finabsum.dat"
19 A,Y,X = np.loadtxt(path,unpack=
True)
20 plt.plot(A,X,label=labels[ind])
26 plt.legend(loc=
"lower right",framealpha=1)
27 plt.xlabel(
"Mass number")
28 plt.ylabel(
"Mass fraction")
30 plt.savefig(
"different_fission_fragments.pdf",bbox_inches=
"tight")