Hi there,
I know I can plot pin power distribution by following the link here. The pin-power distribution map, shown in the above link, doesn’t have the associated values with them. My question is can we show the fission rate values in the pin-power distribution map as well using python?
Thank you!
@fsabab Use matplotlib.pyplot.colorbar()
to add colorbar legend.
import matplotlib.pyplot as plt
plt.colorbar()
Please have a look at this matplotlib colorbar
Best
pranto
2 Likes
That solved the thing I was looking for. Thank you @Pranto .