functions.py 744 B

12345678910111213141516171819202122232425262728293031323334
  1. import numpy as np
  2. import scipy.special as sps
  3. Array = np.ndarray
  4. def sph_bessel_i(n, x, **kwargs):
  5. return sps.spherical_in(n, x, **kwargs)
  6. def sph_bessel_k(n, x, **kwargs):
  7. return 2 / np.pi * sps.spherical_kn(n, x, **kwargs)
  8. def sph_harm(l, m, theta, phi, **kwargs):
  9. return sps.sph_harm(m, l, phi, theta, **kwargs)
  10. def interaction_coeff_C(l, p, x):
  11. return x * sps.iv(l + 1 / 2, x) * sps.iv(p + 1 / 2, x)
  12. def coefficient_Cpm(l, x) -> Array:
  13. return x * sps.kv(l + 1 / 2, x) * sps.iv(l + 1 / 2, x)
  14. def coeff_C_diff(l, x):
  15. return 1 / (x * sps.iv(l + 1 / 2, x) * sps.kv(l + 3 / 2, x))
  16. if __name__ == '__main__':
  17. print(sph_bessel_k(np.array([1, 2, 3])[:, None], np.array([0.1, 0.2, 0.5, 0.6])[None, :]))