#Plotting the Surface Plasmon Center
img=load('Surface Plasmon Center.rpl')
p=img.data
import scipy
import matplotlib.pyplot as plt
from matplotlib import font_manager
img2=plt.imshow(p,extent=(0,400,0,400))
img2.set_cmap('jet')
img2.set_interpolation('none')
#insert a colorbar
b=plt.colorbar()
plt.xlabel('x (nm)',fontsize=20, fontname='Times New Roman')
plt.ylabel('y (nm)',fontsize=20, fontname='Times New Roman')
plt.title('Surface Plasmon Center', fontsize=24,fontname='Times New Roman')
fontProperties = {'family':'serif','serif':['Times New Roman'],
'weight' : 'normal', 'size' : 16}