potential_tests.py 762 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. from interactions import charged_shell_energy
  2. import expansion
  3. from parameters import ModelParams
  4. import numpy as np
  5. import matplotlib.pyplot as plt
  6. def v22_distance_test():
  7. params = ModelParams(R=10, kappaR=3.29)
  8. ex0 = expansion.Expansion24(1, 0, 0)
  9. ex1 = ex0.clone()
  10. ex0.rotate_euler(0, np.array([0, 0, np.pi / 2]), 0)
  11. ex1.rotate_euler(0, np.array([0, np.pi / 2, np.pi / 2]), 0)
  12. dist = np.linspace(2, 3.2, 100)
  13. energy_array = np.zeros((dist.shape[0], 3))
  14. for i, d in enumerate(dist):
  15. energy_array[i, ...] = charged_shell_energy(ex0, ex1, d, params)
  16. print(charged_shell_energy(ex0, ex1, 2., params))
  17. plt.plot(dist, energy_array)
  18. plt.show()
  19. if __name__ == '__main__':
  20. v22_distance_test()