Commit 2e1cbd81 by Jigyasa Watwani

plots heatmap for final length, added length, relative change in length in the…

plots heatmap for final length, added length, relative change in length in the controlled phase, fixed minor bugs
parent 74653e91
Showing with 6 additions and 3 deletions
......@@ -79,7 +79,8 @@ def length_heatmap(DIR):
extent = [np.min(retardationtime)-rt_step/2, np.max(retardationtime)+rt_step/2,
np.min(peclet)-peclet_step/2, np.max(peclet)+peclet_step/2],
interpolation ='nearest', origin ='lower')
plt.title('$L_f$ in the controlled growth phase for $L_i = 1$')
plt.colorbar(fig1)
plt.title('$L_f$ in the controlled growth phase for $L_i = %s$' % p['system_size'])
plt.show()
plt.figure()
......@@ -89,7 +90,8 @@ def length_heatmap(DIR):
extent = [np.min(retardationtime)-rt_step/2, np.max(retardationtime)+rt_step/2,
np.min(peclet)-peclet_step/2, np.max(peclet)+peclet_step/2],
interpolation ='nearest', origin ='lower')
plt.title('$\Delta L$ in the controlled growth phase for $L_i = 1$')
plt.colorbar(fig2)
plt.title('$\Delta L$ in the controlled growth phase for $L_i = %s$' % p['system_size'])
plt.show()
plt.figure()
......@@ -99,7 +101,8 @@ def length_heatmap(DIR):
extent = [np.min(retardationtime)-rt_step/2, np.max(retardationtime)+rt_step/2,
np.min(peclet)-peclet_step/2, np.max(peclet)+peclet_step/2],
interpolation ='nearest', origin ='lower')
plt.title('$\Delta L/L_i$ in the controlled growth phase for $L_i = 1$')
plt.colorbar(fig3)
plt.title('$\Delta L/L_i$ in the controlled growth phase for $L_i = %s$' % p['system_size'])
plt.show()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment