expansion.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. from __future__ import annotations
  2. import numpy as np
  3. from dataclasses import dataclass
  4. from functools import cached_property
  5. import charged_shells.functions as fn
  6. import quaternionic
  7. import spherical
  8. import copy
  9. from scipy.special import eval_legendre
  10. Array = np.ndarray
  11. Quaternion = quaternionic.array
  12. class InvalidExpansion(Exception):
  13. pass
  14. @dataclass
  15. class Expansion:
  16. """Generic class for storing surface charge expansion coefficients."""
  17. l_array: Array
  18. coefs: Array
  19. _starting_coefs: Array = None # initialized with the __post_init__ method
  20. _rotations: Quaternion = Quaternion([1., 0., 0., 0.])
  21. def __post_init__(self):
  22. if self.coefs.shape[-1] != np.sum(2 * self.l_array + 1):
  23. raise InvalidExpansion('Number of expansion coefficients does not match the provided l_array.')
  24. if np.all(np.sort(self.l_array) != self.l_array) or np.all(np.unique(self.l_array) != self.l_array):
  25. raise InvalidExpansion('Array of l values should be unique and sorted.')
  26. self.coefs = self.coefs.astype(np.complex128)
  27. self._starting_coefs = np.copy(self.coefs)
  28. def __getitem__(self, item):
  29. return Expansion(self.l_array, self.coefs[item])
  30. @property
  31. def max_l(self) -> int:
  32. return max(self.l_array)
  33. @property
  34. def shape(self):
  35. return self.coefs.shape[:-1]
  36. def flatten(self) -> Expansion:
  37. new_expansion = self.clone() # np.ndarray.flatten() also copies the array
  38. new_expansion.coefs = new_expansion.coefs.reshape(-1, new_expansion.coefs.shape[-1])
  39. new_expansion._rotations = new_expansion._rotations.reshape(-1, 4)
  40. return new_expansion
  41. def reshape(self, shape: tuple):
  42. self.coefs = self.coefs.reshape(shape + (self.coefs.shape[-1],))
  43. self._rotations = self._rotations.reshape(shape + (4,))
  44. @cached_property
  45. def lm_arrays(self) -> (Array, Array):
  46. """Return l and m arrays containing all (l, m) pairs."""
  47. return full_lm_arrays(self.l_array)
  48. def repeat_over_m(self, arr: Array, axis=0) -> Array:
  49. if not arr.shape[axis] == len(self.l_array):
  50. raise ValueError('Array length should be equal to the number of l in the expansion.')
  51. return np.repeat(arr, 2 * self.l_array + 1, axis=axis)
  52. def rotate(self, rotations: Quaternion, rotate_existing=False):
  53. # TODO: rotations are currently saved wrong if we start form existing coefficients not the og ones
  54. self._rotations = rotations
  55. coefs = self.coefs if rotate_existing else self._starting_coefs
  56. self.coefs = expansion_rotation(rotations, coefs, self.l_array)
  57. def rotate_euler(self, alpha: Array, beta: Array, gamma: Array, rotate_existing=False):
  58. # TODO: additional care required on the convention used to transform euler angles to quaternions
  59. # TODO: might be off for a minus sign for each? angle !!
  60. R_euler = quaternionic.array.from_euler_angles(alpha, beta, gamma)
  61. self.rotate(R_euler, rotate_existing=rotate_existing)
  62. def charge_value(self, theta: Array | float, phi: Array | float):
  63. if not isinstance(theta, Array):
  64. theta = np.array([theta])
  65. if not isinstance(phi, Array):
  66. phi = np.array([phi])
  67. theta, phi = np.broadcast_arrays(theta, phi)
  68. full_l_array, full_m_array = self.lm_arrays
  69. return np.squeeze(np.real(np.sum(self.coefs[..., None] * fn.sph_harm(full_l_array[:, None],
  70. full_m_array[:, None],
  71. theta[None, :], phi[None, :]), axis=-2)))
  72. def clone(self) -> Expansion:
  73. return copy.deepcopy(self)
  74. class Expansion24(Expansion):
  75. def __init__(self, sigma2: float, sigma4: float, sigma0: float = 0.):
  76. l_array = np.array([0, 2, 4])
  77. coefs = rot_sym_expansion(l_array, np.array([sigma0, sigma2, sigma4]))
  78. super().__init__(l_array, coefs)
  79. class MappedExpansionQuad(Expansion):
  80. """Expansion that matches the outside potential of a quadrupolar impermeable particle with point charges inside."""
  81. def __init__(self,
  82. a_bar: Array | float,
  83. kappaR: Array | float,
  84. sigma_tilde: float,
  85. l_max: int = 20,
  86. sigma0: float | Array = 0):
  87. """
  88. :param a_bar: distance between the center and off center charges
  89. :param kappaR: screening parameter
  90. :param sigma_tilde: magnitude of off-center charges / 4pi R^2
  91. :param l_max: maximal ell value for the expansion
  92. :param sigma0: total (mean) charge density
  93. """
  94. a_bar, kappaR = np.broadcast_arrays(a_bar, kappaR)
  95. l_array = np.array([l for l in range(l_max + 1) if l % 2 == 0])
  96. a_bar, kappaR, l_array_expanded = np.broadcast_arrays(a_bar[..., None],
  97. kappaR[..., None],
  98. l_array[None, :])
  99. coefs = (2 * sigma_tilde * fn.coef_C_diff(l_array_expanded, kappaR)
  100. * np.sqrt(4 * np.pi * (2 * l_array_expanded + 1)) * np.power(a_bar, l_array_expanded))
  101. coefs = np.squeeze(rot_sym_expansion(l_array, coefs))
  102. coefs = expansion_total_charge(coefs, sigma0)
  103. super().__init__(l_array, coefs)
  104. class GaussianCharges(Expansion):
  105. """Expansion for a collection of smeared charges on the sphere."""
  106. def __init__(self, omega_k: Array, lambda_k: Array | float, sigma1: float, l_max: int,
  107. sigma0: float | Array = 0, equal_charges: bool = True):
  108. """
  109. :param omega_k: array of positions (theta, phi) of all charges
  110. :param lambda_k: smear parameter for each charge or smear for different cases (if equal_charges = True)
  111. :param sigma1: scaling
  112. :param l_max: maximal ell value for the expansion
  113. :param sigma0: total (mean) charge density
  114. :param equal_charges: if this is False, length of lambda_k should be N. If True, theta0_k array will be treated
  115. as different expansion cases
  116. """
  117. omega_k = omega_k.reshape(-1, 2)
  118. if not isinstance(lambda_k, Array):
  119. lambda_k = np.array([lambda_k])
  120. if equal_charges:
  121. if lambda_k.ndim > 1:
  122. raise ValueError(f'If equal_charges=True, lambda_k should be a 1D array, got shape {lambda_k.shape}')
  123. lambda_k = np.full((omega_k.shape[0], lambda_k.shape[0]), lambda_k).T
  124. if lambda_k.shape[-1] != omega_k.shape[0]:
  125. raise ValueError("Number of charges (length of omega_k) should match the last dimension of lambda_k array.")
  126. lambda_k = lambda_k.reshape(-1, omega_k.shape[0])
  127. l_array = np.arange(l_max + 1)
  128. full_l_array, full_m_array = full_lm_arrays(l_array)
  129. theta_k = omega_k[:, 0]
  130. phi_k = omega_k[:, 1]
  131. summands = (lambda_k[:, None, :] / np.sinh(lambda_k[:, None, :])
  132. * fn.sph_bessel_i(full_l_array[None, :, None], lambda_k[:, None, :])
  133. * np.conj(fn.sph_harm(full_l_array[None, :, None], full_m_array[None, :, None],
  134. theta_k[None, None, :], phi_k[None, None, :])))
  135. coefs = np.squeeze(4 * np.pi * sigma1 * np.sum(summands, axis=-1))
  136. coefs = expansion_total_charge(coefs, sigma0)
  137. l_array, coefs = purge_unneeded_l(l_array, coefs)
  138. super().__init__(l_array, coefs)
  139. class SphericalCap(Expansion):
  140. """Expansion for a collection of spherical caps."""
  141. def __init__(self, omega_k: Array, theta0_k: Array | float, sigma1: float, l_max: int, sigma0: float | Array = 0,
  142. equal_sizes: bool = True):
  143. """
  144. :param omega_k: array of positions (theta, phi) of all spherical caps
  145. :param theta0_k: sizes of each spherical caps or cap sizes for different cases (if equal_sizes = True)
  146. :param sigma1: charge magnitude for the single cap, currently assumes that this is equal for all caps
  147. :param l_max: maximal ell value for the expansion
  148. :param sigma0: total (mean) charge density
  149. :param equal_sizes: if this is False, length of theta0_k should be N. If True, theta0_k array will be treated as
  150. different expansion cases
  151. """
  152. omega_k = omega_k.reshape(-1, 2)
  153. if not isinstance(theta0_k, Array):
  154. theta0_k = np.array(theta0_k)
  155. if equal_sizes:
  156. if theta0_k.ndim == 0:
  157. theta0_k = np.full(omega_k.shape[0], theta0_k)
  158. elif theta0_k.ndim == 1:
  159. theta0_k = np.full((omega_k.shape[0], theta0_k.shape[0]), theta0_k)
  160. else:
  161. raise ValueError(f'If equal_charges=True, theta0_k should be a 1D array, got shape {theta0_k.shape}')
  162. if theta0_k.shape[0] != omega_k.shape[0]:
  163. raise ValueError("Number of charges (length of omega_k) should match the last dimension of theta0_k array.")
  164. rotations = Quaternion(np.stack((np.cos(omega_k[..., 0] / 2),
  165. np.sin(omega_k[..., 1]) * np.sin(omega_k[..., 0] / 2),
  166. np.cos(omega_k[..., 1]) * np.sin(omega_k[..., 0] / 2),
  167. np.zeros_like(omega_k[..., 0]))).T)
  168. l_array = np.arange(l_max + 1)
  169. coefs_l0 = -sigma1 * (np.sqrt(np.pi / (2 * l_array[None, :] + 1)) *
  170. (eval_legendre(l_array[None, :] + 1, np.cos(theta0_k[..., None]))
  171. - eval_legendre(l_array[None, :] - 1, np.cos(theta0_k[..., None]))))
  172. coefs = rot_sym_expansion(l_array, coefs_l0)
  173. coefs_all_single_caps = expansion_rotation(rotations, coefs, l_array)
  174. # Rotating is implemented in such a way that it rotates every patch to every position,
  175. # hence the redundancy of out of diagonal elements.
  176. coefs_all = np.sum(np.diagonal(coefs_all_single_caps), axis=-1)
  177. coefs_all = expansion_total_charge(coefs_all, sigma0)
  178. super().__init__(l_array, np.squeeze(coefs_all))
  179. def full_lm_arrays(l_array: Array) -> (Array, Array):
  180. """From an array of l_values get arrays of ell and m that give you all pairs (ell, m)."""
  181. all_m_list = []
  182. for l in l_array:
  183. for i in range(2 * l + 1):
  184. all_m_list.append(-l + i)
  185. return np.repeat(l_array, 2 * l_array + 1), np.array(all_m_list)
  186. def rot_sym_expansion(l_array: Array, coefs: Array) -> Array:
  187. """Create full expansion array for rotationally symmetric distributions with only m=0 terms different form 0."""
  188. full_coefs = np.zeros(coefs.shape[:-1] + (np.sum(2 * l_array + 1),))
  189. full_coefs[..., np.cumsum(2 * l_array + 1) - l_array - 1] = coefs
  190. return full_coefs
  191. def expansion_total_charge(coefs: Array, sigma0: float | Array):
  192. """Adds a new axis to the expansion coefficients that modifies expansion based on given net charge density."""
  193. if sigma0 is None:
  194. return coefs
  195. if not isinstance(sigma0, Array):
  196. x = copy.deepcopy(coefs)
  197. x[..., 0] = sigma0 / np.sqrt(4 * np.pi)
  198. return x
  199. sigma0 = sigma0.flatten()
  200. x = np.repeat(np.expand_dims(coefs, -2), len(sigma0), axis=-2)
  201. x[..., 0] = sigma0 / np.sqrt(4 * np.pi)
  202. return x
  203. def m_indices_at_l(l_arr: Array, l_idx: int):
  204. """
  205. For a given l_array and index l_idx for some ell in this array, get indices of all (ell, m) coefficients
  206. in coefficients array.
  207. """
  208. return np.arange(np.sum(2 * l_arr[:l_idx] + 1), np.sum(2 * l_arr[:l_idx+1] + 1))
  209. def purge_unneeded_l(l_array: Array, coefs: Array) -> (Array, Array):
  210. """Remove ell values from expansion for which all (ell, m) coefficients are zero."""
  211. def delete_zero_entries(l, l_arr, cfs):
  212. l_idx = np.where(l_arr == l)[0][0]
  213. m_indices = m_indices_at_l(l_arr, l_idx)
  214. if np.all(cfs[..., m_indices] == 0):
  215. return np.delete(l_arr, l_idx), np.delete(cfs, m_indices, axis=-1)
  216. return l_arr, cfs
  217. for l in l_array:
  218. l_array, coefs = delete_zero_entries(l, l_array, coefs)
  219. return l_array, coefs
  220. def coefs_fill_missing_l(expansion: Expansion, target_l_array: Array) -> Expansion:
  221. """Explicitly add missing expansion coefficients so that expansion includes all ell values from the target array."""
  222. missing_l = np.setdiff1d(target_l_array, expansion.l_array, assume_unique=True)
  223. fill = np.zeros(np.sum(2 * missing_l + 1))
  224. full_l_array1, _ = expansion.lm_arrays
  225. # we search for where to place missing coefs with the help of a boolean array and argmax function
  226. comparison_bool = (full_l_array1[:, None] - missing_l[None, :]) > 0
  227. indices = np.where(np.any(comparison_bool, axis=0), np.argmax(comparison_bool, axis=0), full_l_array1.shape[0])
  228. new_coefs = np.insert(expansion.coefs, np.repeat(indices, 2 * missing_l + 1), fill, axis=-1)
  229. return Expansion(target_l_array, new_coefs)
  230. def expansions_to_common_l(ex1: Expansion, ex2: Expansion) -> (Expansion, Expansion):
  231. """Explicitly add zero expansion coefficients so that both expansions include coefficients for the same ell."""
  232. common_l_array = np.union1d(ex1.l_array, ex2.l_array)
  233. return coefs_fill_missing_l(ex1, common_l_array), coefs_fill_missing_l(ex2, common_l_array)
  234. def expansion_rotation(rotations: Quaternion, coefs: Array, l_array: Array):
  235. """
  236. General function for rotations of expansion coefficients using WignerD matrices. Combines all rotations
  237. with each expansion given in coefs array.
  238. :param rotations: Quaternion array, last dimension is 4
  239. :param coefs: array of expansion coefficients
  240. :param l_array: array of all ell values of the expansion
  241. :return rotated coefficients, output shape is rotations.shape[:-1] + coefs.shape
  242. """
  243. rot_arrays = rotations.ndarray.reshape((-1, 4))
  244. coefs_reshaped = coefs.reshape((-1, coefs.shape[-1]))
  245. wigner_matrices = spherical.Wigner(np.max(l_array)).D(rot_arrays)
  246. new_coefs = np.zeros((rot_arrays.shape[0],) + coefs_reshaped.shape, dtype=np.complex128)
  247. for i, l in enumerate(l_array):
  248. Dlmn_slice = np.arange(l * (2 * l - 1) * (2 * l + 1) / 3, (l + 1) * (2 * l + 1) * (2 * l + 3) / 3).astype(int)
  249. all_m_indices = m_indices_at_l(l_array, i)
  250. wm = wigner_matrices[:, Dlmn_slice].reshape((-1, 2*l+1, 2*l+1))
  251. new_coefs[..., all_m_indices] = np.einsum('rnm, qm -> rqn',
  252. wm, coefs_reshaped[:, all_m_indices])
  253. return new_coefs.reshape(rotations.ndarray.shape[:-1] + coefs.shape)