interactions_test.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. from charged_shells import expansion, interactions
  2. from charged_shells.parameters import ModelParams
  3. import time
  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, ...] = interactions.charged_shell_energy(ex0, ex1, params, d)
  16. print(interactions.charged_shell_energy(ex0, ex1, params, dist=2.))
  17. plt.plot(dist, energy_array)
  18. plt.show()
  19. def timing():
  20. params = ModelParams(R=150, kappaR=3)
  21. ex1 = expansion.MappedExpansionQuad(0.44, params.kappaR, 0.001, l_max=20)
  22. ex2 = ex1.clone()
  23. dist = 2.
  24. # ex1, ex2 = expansions_to_common_l(ex1, ex2)
  25. # print(ex1.coeffs)
  26. # print(ex2.coeffs)
  27. t0 = time.perf_counter()
  28. energy = interactions.charged_shell_energy(ex1, ex2, params, dist)
  29. t1 = time.perf_counter()
  30. print('energy: ', energy)
  31. print('time: ', t1 - t0)
  32. # plt.plot(energy)
  33. # plt.show()
  34. if __name__ == '__main__':
  35. v22_distance_test()
  36. timing()