functions.py 649 B

123456789101112131415161718192021222324252627282930
  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 coefficient_Cpm(l, x) -> Array:
  11. return x * sps.kv(l + 1 / 2, x) * sps.iv(l + 1 / 2, x)
  12. def coeff_C_diff(l, x):
  13. return 1 / (x * sps.iv(l + 1 / 2, x) * sps.kv(l + 3 / 2, x))
  14. if __name__ == '__main__':
  15. print(sph_bessel_k(np.array([1, 2, 3])[:, None], np.array([0.1, 0.2, 0.5, 0.6])[None, :]))