Skip to content
Snippets Groups Projects
Commit dc68403a authored by Pascal Engeler's avatar Pascal Engeler
Browse files

More adaptive in the number

parent d8a87f60
No related branches found
No related tags found
No related merge requests found
......@@ -7,8 +7,8 @@ writepath = "../results/plots/zerostate/"
#eigenvalues
ev = np.loadtxt(readpath+"eigenvalues.txt")
starting_mode = 1115
end_mode = 1174
starting_mode = 1110
end_mode = 1180
plt.plot(np.array(list(range(starting_mode,end_mode))),ev[starting_mode:end_mode],'o', ms=1)
plt.title("Frequency levels under vortex Kekule")
......@@ -35,7 +35,7 @@ pos_y = pos_data[:desired_length,5].astype('float')
plt.figure(figsize=(8,300))
for i in range(starting_mode,end_mode):
plt.subplot(60,1,i-starting_mode+1)
plt.subplot(int(end_mode-starting_mode),1,i-starting_mode+1)
cmax = np.amax(data[i,:])
cmin = np.amin(data[i,:])
if(-cmin > cmax):
......@@ -48,4 +48,4 @@ for i in range(starting_mode,end_mode):
plt.xlabel("x")
plt.ylabel("y")
plt.savefig(writepath + f"Modes.pdf", dpi = 50, bbox_inches='tight', pad_inches=0)
plt.savefig(writepath + f"Modes.pdf", dpi = 40, bbox_inches='tight', pad_inches=0)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment