Skip to content

GilpinLab/dysts

Repository files navigation

dysts

Analyze hundreds of chaotic systems.

Plots of chaotic systems in the collection

Installation

pip install dysts 

See the additional installation guide for more options.

Basic Usage

Import a model and run a simulation with default initial conditions and parameter values

from dysts.flows import Lorenz model = Lorenz() sol = model.make_trajectory(1000) # (1000, 3)

Modify a model's parameter values and re-integrate

model = Lorenz(parameters={"beta": 0.7, "rho": 3, "signma": 0.1}, ic=[0.1, 0.0, 5]) sol = model.make_trajectory(1000) # (1000, 3)

Integrate new trajectories from all 135 chaotic systems with a custom granularity

from dysts.systems import make_trajectory_ensemble all_out = make_trajectory_ensemble(100, resample=True, pts_per_period=75)

Additional functionality and examples can be found in the demonstrations notebook.. The full API documentation can be found here.

A database of precomputed time series from each system is hosted on HuggingFace

Contents

  • Code to generate novel skew-dynamical systems is in the skewgen branch
  • Code to generate benchmark forecasting and training experiments are included in a separate benchmarks repository
  • Metadata for all chaotic systems are included in the database file chaotic_attractors. The are sourced as default parameters for the implementations of differential equations found in the flows module
  • There are also metadata for the discrete maps

Benchmarks

The benchmarks reported in our publications are stored in a separate benchmarks repository. An overview of the contents of the directory can be found in BENCHMARKS.md within that repository, while individual task areas are summarized in corresponding Jupyter Notebooks within the top level of that directory.

Additional Installation Guide

To obtain the latest version, including new features and bug fixes, download and install the project directly from GitHub

pip install git+https://github.com/williamgilpin/dysts 

To install the optional precomputed trajectories and benchmark results (a large, static dataset), install directly from GitHub

pip install git+https://github.com/williamgilpin/dysts_data 

We currently use a simple unittest framework to test the code. To run the tests, use the following command:

python -m unittest discover tests 

Implementation Notes

  • Currently there are 135 continuous time models, including several delay differential equations. There is also a separate module with 10 discrete maps, which is currently being expanded.
  • The right hand side of each dynamical equation is compiled using numba, wherever possible. Ensembles of trajectories are vectorized where needed.
  • Attractor names, default parameter values, references, and other metadata are stored in parseable JSON database files. Parameter values are based on standard or published values, and default initial conditions were generated by running each model until the moments of the autocorrelation function all become stationary.
  • The default integration step is stored in each continuous-time model's dt field. This integration timestep was chosen based on the highest significant frequency observed in the power spectrum, with significance being determined relative to random phase surrogates. The period field contains the timescale associated with the dominant frequency in each system's power spectrum. When using the model.make_trajectory() method with the optional setting resample=True, integration is performed at the default dt. The integrated trajectory is then resampled based on the period. The resulting trajectories will have have consistant dominant timescales across models, despite having different integration timesteps.

Reference

For more information, or if using this code for published work, please consider citing the papers.

William Gilpin. "Chaos as an interpretable benchmark for forecasting and data-driven modelling" Advances in Neural Information Processing Systems (NeurIPS) 2021 https://arxiv.org/abs/2110.05266

William Gilpin. "Model scale versus domain knowledge in statistical forecasting of chaotic systems" Physical Review Research 2023 https://arxiv.org/abs/2303.08011

We are very grateful for any suggestions or contributions. See CONTRIBUTING.md

Acknowledgements

  • Two existing collections of named systems can be found on the webpages of Jürgen Meier and J. C. Sprott. The current version of dysts contains all systems from both collections.
  • Several of the analysis routines (such as calculation of the correlation dimension) use the library nolds. If re-using code that depends on nolds, please be sure to credit that library and heed its license. The Lyapunov exponent calculation is based on the QR factorization approach used by Wolf et al 1985 and Eckmann et al 1986, with implementation details adapted from conventions in the Julia library DynamicalSystems.jl

About

Hundreds of strange attractors

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Languages