Introduction
This is a Julia package for evaluating and transforming Wigner's ๐ matrices, and spin-weighted spherical harmonics ${}_{s}Y_{\ell,m}$ (which includes the ordinary scalar spherical harmonics). Because both ๐ and the harmonics are most correctly considered functions on the rotation group $๐๐(3)$ โ or more generally, the spin group $๐๐ฉ๐ข๐ง(3)$ that covers it โ these functions are evaluated directly in terms of quaternions. Concessions are also made for more standard forms of spherical coordinates and Euler angles.[1] Among other applications, those functions permit "synthesis" (evaluation of the spin-weighted spherical functions) of spin-weighted spherical harmonic coefficients on regular or distorted grids. This package also includes functions enabling efficient "analysis" (decomposition into mode coefficients) of functions evaluated on regular grids to high order and accuracy.
These quantities are computed using recursion relations, which makes it possible to compute to very high โ values. Unlike direct evaluation of individual elements, which would generally cause overflow or underflow beyond โโ30 when using double precision, these recursion relations should be valid for far higher โ values. More precisely, when using this package, Inf
values appear starting at โ=128 for Float16
, but I have not yet found any for values up to at least โ=1024 with Float32
, and presumably far higher for Float64
. BigFloat
also works, and presumably will not overflow for any โ value that could reasonably fit into computer memory โ though it is far slower. Also note that DoubleFloats
will work, and achieve significantly greater accuracy (but no greater โ range) than Float64
. In all cases, results are typically accurate to roughly โ times the precision of the input quaternion.
The conventions for this package are mostly inherited from โ and are described in detail by โ its predecessors found here and here.
Note that numerous other packages cover some of these use cases, including FastTransforms.jl
, FastSphericalHarmonics.jl
, WignerSymbols.jl
, and WignerFamilies.jl
. However, I need support for quaternions (via Quaternionic.jl
) and for higher-precision numbers โ even at the cost of a very slight decrease in speed in some cases โ which are what this package provides.
- 1Euler angles are quite generally a very poor choice for computing with rotations. (The only context in which they may be preferred is when analytically integrating some analytically known functions.) Almost universally, it is best to use quaternions when computing with rotations. All the computations done within this package use quaternions; the user interfaces involving Euler angles essentially convert to/from quaternions. While the calculations needed for those conversions would still need to be done if this package used Euler angles internally โ meaning that this approach is as efficient as any โ that work can be avoided entirely if you work with quaternions directly.