ODE integrator for JAX
Project description
.. warning::
This version of XAJ
works only with jax
and jaxlib
0.3.
But jaxlib
0.3 is not available on PyPI.
To install this version of XAJ
, please first install jaxlib
with:
.. code-block:: bash
pip install jaxlib==0.3.25 -f https://storage.googleapis.com/jax-releases/jax_releases.html
XAJ
Ordinary differential equation (ODE) integrator compatible with Google's JAX.
XAJ
implements the Runge-Kutta Dormand-Prince 4/5 pair (DP5) with
adaptive step control and dense output according to the
Numerical Recipes.
It provides a fast and efficient way to solve non-stiff ODEs.
The programming interface is designed so it feels similar to the
derivative functions in JAX
.
Specifically, XAJ
provides a single function odeint()
.
Applying it to another function rhs()
and the initial conditions
returns the numerical solution as a callable ns
, which interpolates
the dense output.
from xaj import odeint
from jax import numpy as np
rhs = lambda x, y: y
x0 = 0
y0 = 1
ns = odeint(rhs, x0, y0, 1)
x = np.linspace(0, 5)
y = ns(x)
The numerical integration happens in a "lazy" way, which is triggered
by the extreme values of the argument of ns
.
Alternatively, it is possible to obtain the numerical solutions at the
full steps by
xs = ns.xs
ys = ns.ys
Demos on how to use XAJ
can be found in the demos
directory.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file xaj-0.1.8.tar.gz
.
File metadata
- Download URL: xaj-0.1.8.tar.gz
- Upload date:
- Size: 21.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df1a836c50c2377f0ae728161e9ae1416f8b4aaac73fb72b72f4203cb96c5698 |
|
MD5 | 1e36da9d1710d7f53b035bde8f724b41 |
|
BLAKE2b-256 | 3716990707c0c147b2e486776659cbbb1063acc56daba026529d66b1ddd7bf8b |
File details
Details for the file xaj-0.1.8-py3-none-any.whl
.
File metadata
- Download URL: xaj-0.1.8-py3-none-any.whl
- Upload date:
- Size: 24.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eeba1c786862ca5bbbd631bbb95ac042a0d27984e3de7a04ddbd5c1a486a1c0c |
|
MD5 | 3f71c79c99c0cd342b2a003a538c94d6 |
|
BLAKE2b-256 | 15457b41e57d355179e2145d883cca3ae80cb4471d820fb1fcdc993cc6adccbc |