Skip to main content

Hyperspherical coordinates in NumPy / PyTorch / JAX.

Project description

ultrasphere

CI Status Documentation Status Test coverage percentage

uv Ruff pre-commit

PyPI Version Supported Python versions License


Documentation: https://ultrasphere.readthedocs.io

Source Code: https://github.com/ultrasphere-dev/ultrasphere


Vilenkin–Kuznetsov–Smorodinsky (VKS) polyspherical (hyperspherical) coordinates in NumPy / PyTorch

Installation

Install this via pip (or your favourite package manager):

pip install ultrasphere[plot]

Usage

Spherical Coordinates ↔ Cartesian Coordinates

First import the module and create a spherical coordinates object.

>>> import ultrasphere as us
>>> from array_api_compat import numpy as np
>>> from array_api_compat import torch
>>> rng = np.random.default_rng(0)
>>> c = us.create_spherical()

Getting spherical coordinates from cartesian coordinates:

>>> spherical = c.from_cartesian(torch.asarray([1.0, 2.0, 3.0]))
>>> spherical
{'r': tensor(3.7417), 'phi': tensor(1.1071), 'theta': tensor(0.6405)}

Getting cartesian coordinates from spherical coordinates:

>>> c.to_cartesian(spherical)
{0: tensor(1.), 1: tensor(2.0000), 2: tensor(3.)}

Using various VKS polyspherical coordinates

>>> us.create_polar()
SphericalCoordinates(a)
>>> us.create_spherical()
SphericalCoordinates(ba)
>>> us.create_standard(3)
SphericalCoordinates(bba)
>>> us.create_standard_prime(4)
SphericalCoordinates(b'b'b'a)
>>> us.create_hopf(3)
SphericalCoordinates(ccaacaa)
>>> us.create_from_branching_types("cbab'a")
SphericalCoordinates(cbab'a)
>>> us.create_random(10, rng=rng)
SphericalCoordinates(cacccaaaba)

One can convert between Cartesian coordinates and VKS polyspherical coordinates in the same way as above.

The name of the spherical nodes and cartesian nodes can be obtained by:

>>> c = us.create_standard(5)
>>> c.s_nodes
['theta0', 'theta1', 'theta2', 'theta3', 'theta4']
>>> c.s_ndim
5
>>> c.c_nodes
[0, 1, 2, 3, 4, 5]
>>> c.c_ndim
6

"r" is a special node which represents the radius and is not included in s_nodes.

The definition and notation of VKS polyspherical coordinates follows [Cohl2012, Appendix B]. Following sections would also help understand the VKS polyspherical coordinates.

  • [Cohl2012] Cohl, H. (2012). Fourier, Gegenbauer and Jacobi Expansions for a Power-Law Fundamental Solution of the Polyharmonic Equation and Polyspherical Addition Theorems. Symmetry, Integrability and Geometry: Methods and Applications (SIGMA), 9. https://doi.org/10.3842/SIGMA.2013.042

Drawing spherical coordinates using rooted trees (Vilenkin's method of trees)

Python

>>> c = us.create_from_branching_types("ccabbab'b'ba")
>>> us.draw(c)
(6.5, 3.5)

CLI

ultrasphere "ccabbab'b'ba"

Output:

ccabbab'b'ba

The image shows how Cartesian coordinates (leaf nodes) are calculated from spherical coordinates (internal nodes).

For example, $x_{10}$, corresponding to node 10, is a leaf node which ancestors are [θ0, θ2, θ7, θ8, θ9]. The edges which connect these nodes are named [sin, cos, cos, sin, sin], respectively. Thus, $x_{10}$ is calculated as:

$$ x_{10} = \sin \theta_0 \cos \theta_2 \cos \theta_7 \sin \theta_8 \sin \theta_9 $$

Integration over sphere using spherical coordinates

>>> c = us.create_spherical()
>>> f = lambda spherical: spherical["theta"] ** 2 * spherical["phi"]
>>> np.round(us.integrate(
...     c,
...     f,
...     False, # does not support separation of variables
...     10, # number of quadrature points
...     xp=np # the array namespace
... ), 5)
np.float64(110.02621)

Random sampling

Sampling random points uniformly from the unit ball:

>>> c = us.create_spherical()
>>> points_ball = us.random_ball(c, shape=(), xp=np, rng=rng)
>>> points_ball
array([0.12504754, 0.45095196, 0.32752147])
>>> np.linalg.vector_norm(points_ball)
np.float64(0.5711960026239531)

Sampling random points uniformly from the sphere (does not include interior points):

>>> points_sphere = us.random_ball(c, shape=(), xp=np, surface=True, rng=rng)
>>> points_sphere
array([-0.89670228, -0.44166441,  0.02928439])
>>> np.linalg.vector_norm(points_sphere)
np.float64(1.0)

References

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!

Credits

Copier

This package was created with Copier and the browniebroke/pypackage-template project template.

The code examples in the documentation and docstrings are automatically tested as doctests using Sybil.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ultrasphere-2.0.4.tar.gz (26.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ultrasphere-2.0.4-py3-none-any.whl (23.8 kB view details)

Uploaded Python 3

File details

Details for the file ultrasphere-2.0.4.tar.gz.

File metadata

  • Download URL: ultrasphere-2.0.4.tar.gz
  • Upload date:
  • Size: 26.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ultrasphere-2.0.4.tar.gz
Algorithm Hash digest
SHA256 2ee55ffd9ee6dbae56c395c9dbb5874bef1fd1b5b5381be31a33be84480e1e26
MD5 e9ec6ea225e1e2afb217b5ce94e66f10
BLAKE2b-256 1ef34de10bb786c0cd06cb2b492128b59218de022d9e85b9da24053181ce5124

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrasphere-2.0.4.tar.gz:

Publisher: ci.yml on ultrasphere-dev/ultrasphere

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrasphere-2.0.4-py3-none-any.whl.

File metadata

  • Download URL: ultrasphere-2.0.4-py3-none-any.whl
  • Upload date:
  • Size: 23.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ultrasphere-2.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 7d6521ec107051498fb2fbf64a29691df0f82dd634c5efaa45946d0c0dbb126b
MD5 f1f91ecc147e69edb327c210dee4beb4
BLAKE2b-256 e01ccdeb8820a6c517c4e757c7b6f91ce3a78d2c81c64243715cf4147e8844b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrasphere-2.0.4-py3-none-any.whl:

Publisher: ci.yml on ultrasphere-dev/ultrasphere

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page