Skip to main content

Python package for data-driven approximations to the Koopman operator.

Project description

PyKoopman

Build Docs PyPI Codecov JOSS

PyKoopman is a Python package for computing data-driven approximations to the Koopman operator.

Data-driven approximation of Koopman operator

Koopman Operator

Given a nonlinear dynamical system,

$$x'(t) = f(x(t)),$$

the Koopman operator governs the temporal evolution of the measurement function. Unfortunately, it is an infinite-dimensional linear operator. Most of the time, one has to project the Koopman operator onto a finite-dimensional subspace that is spanned by user-defined/data-adaptive functions.

$$z = \Phi(x).$$

If the system state is also contained in such subspace, then effectively, the nonlinear dynamical system is (approximately) linearized in a global sense.

The goal of data-driven approximation of Koopman operator is to find such a set of functions that span such lifted space and the transition matrix associated with the lifted system.

Structure of PyKoopman

PyKoopman Structure

PyKoopman package is centered around the Koopman class and KoopmanContinuous class. It consists of two key components

  • observables: a set of observables functions, which spans the subspace for projection.

  • regressor: the optimization algorithm to find the best fit for the projection of Koopman operator.

After Koopman/KoopmanContinuous object has been created, it must be fit to data, similar to a scikit-learn model. We design PyKoopman such that it is compatible to scikit-learn objects and methods as much as possible.

Features implemented

  • Observable library for lifting the state into the observable space

    • Identity (for DMD/DMDc or in case users want to compute observables themselves): Identity
    • Multivariate polynomials: Polynomial
    • Time delay coordinates: TimeDelay
    • Radial basis functions: RadialBasisFunctions
    • Random Fourier features: RandomFourierFeatures
    • Custom library (defined by user-supplied functions): CustomObservables
    • Concatenation of observables: ConcatObservables
  • System identification method for performing regression

    • Dynamic mode decomposition: PyDMDRegressor
    • Dynamic mode decomposition with control: DMDc
    • Extended dynamic mode decomposition: EDMD
    • Extended dynamic mode decomposition with control: EDMDc
    • Kernel dynamic mode decomposition: KDMD
    • Hankel Alternative View of Koopman Analysis: HAVOK
    • Neural Network DMD: NNDMD
  • Sparse construction of Koopman invariant subspace

    • Multi-task learning based on linearity consistency

Examples

  1. Learning how to create observables

  2. Learning how to compute time derivatives

  3. Dynamic mode decomposition on two mixed spatial signals

  4. Dynamic mode decomposition with control on a 2D linear system

  5. Dynamic mode decomposition with control (DMDc) for a 128D system

  6. Dynamic mode decomposition with control on a high-dimensional linear system

  7. Successful examples of using Dynamic mode decomposition on PDE system

  8. Unsuccessful examples of using Dynamic mode decomposition on PDE system

  9. Extended DMD for Van Der Pol System

  10. Learning Koopman eigenfunctions on Slow manifold

  11. Comparing DMD and KDMD for Slow manifold dynamics

  12. Extended DMD with control for chaotic duffing oscillator

  13. Extended DMD with control for Van der Pol oscillator

  14. Hankel Alternative View of Koopman Operator for Lorenz System

  15. Hankel DMD with control for Van der Pol Oscillator

  16. Neural Network DMD on Slow Manifold

  17. EDMD and NNDMD for a simple linear system

  18. Sparisfying a minimal Koopman invariant subspace from EDMD for a simple linear system

Installation

Language

  • Python >= 3.11

Installing with pip

If you are using Linux or macOS you can install PyKoopman with pip:

pip install pykoopman

Installing from source (recommended)

We recommend using uv for environment management.

First clone this repository:

git clone https://github.com/dynamicslab/pykoopman
cd pykoopman

Create a virtual environment with Python 3.11 and install the package:

uv venv --python 3.11
uv pip install -e .

Alternatively, you can use the traditional venv approach:

python -m venv .venv
source ./.venv/bin/activate   # On Windows: .\.venv\Scripts\activate.ps1
pip install -e .

Installing with GPU support

The default installation uses the CPU-only version of PyTorch. If you need GPU support, please refer to the uv PyTorch integration guide for instructions on installing PyTorch with CUDA support.

Documentation

The documentation for PyKoopman is hosted on Read the Docs.

Community guidelines

Contributing code

We welcome contributions to PyKoopman. To contribute a new feature please submit a pull request. To get started we recommend installing the packages in "developer mode" via

python -m pip install -e .

This will allow you to run unit tests and automatically format your code. To be accepted your code should conform to PEP8 and pass all unit tests. Code can be tested by invoking

pytest

We recommed using pre-commit to format your code. Once you have staged changes to commit

git add path/to/changed/file.py

you can run the following to automatically reformat your staged code

pre-commit -a -v

Note that you will then need to re-stage any changes pre-commit made to your code.

Reporting issues or bugs

If you find a bug in the code or want to request a new feature, please open an issue.

Known issues:

  • Python 3.12 and 3.13 are not officially tested. We recommend Python 3.11.

Citing PyKoopman

@article{Pan2024, doi = {10.21105/joss.05881},
url = {https://doi.org/10.21105/joss.05881},
year = {2024},
publisher = {The Open Journal},
volume = {9},
number = {94},
pages = {5881},
author = {Shaowu Pan and Eurika Kaiser and Brian M. de Silva and J. Nathan Kutz and Steven L. Brunton},
title = {PyKoopman: A Python Package for Data-Driven Approximation of the Koopman Operator},
journal = {Journal of Open Source Software}}

Related packages

  • PySINDy - A Python libray for the Sparse Identification of Nonlinear Dynamical systems (SINDy) method introduced in Brunton et al. (2016a).
  • Deeptime - A Python library for the analysis of time series data with methods for dimension reduction, clustering, and Markov model estimation.
  • PyDMD - A Python package using the Dynamic Mode Decomposition (DMD) for a data-driven model simplification based on spatiotemporal coherent structures. DMD is a great alternative to SINDy.
  • pykoop - a Koopman operator identification library written in Python
  • DLKoopman - a deep learning library for Koopman operator

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

pykoopman-1.2.1.tar.gz (82.0 kB view details)

Uploaded Source

Built Distribution

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

pykoopman-1.2.1-py3-none-any.whl (95.0 kB view details)

Uploaded Python 3

File details

Details for the file pykoopman-1.2.1.tar.gz.

File metadata

  • Download URL: pykoopman-1.2.1.tar.gz
  • Upload date:
  • Size: 82.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pykoopman-1.2.1.tar.gz
Algorithm Hash digest
SHA256 a38defd271639d10a552b0875e75db2c55ac34ea197ae22807a9dab0fe1e71e8
MD5 112b0208e63720018e88de1fc26f158b
BLAKE2b-256 d57aafcf78d9c13f7d1651282df32469cd66a6cd15bd225f802e6b62e5aca353

See more details on using hashes here.

File details

Details for the file pykoopman-1.2.1-py3-none-any.whl.

File metadata

  • Download URL: pykoopman-1.2.1-py3-none-any.whl
  • Upload date:
  • Size: 95.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pykoopman-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ba0c9c0076a2f8d98b42b7e1857c28d555fc9b87e6d5f433087b50ce4a1f3162
MD5 e70b7abc8b77b8ff31920e5d36d3724e
BLAKE2b-256 103720cc2f0122794a0ec162990c18a4c824fecb807d97e76224f7af211fe254

See more details on using hashes here.

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